In [ ]:
. ./nbs_header.ps1
. ./core.ps1
In [ ]:
{ . "$ScriptDir/../apps/builder/build.ps1" } | Invoke-Block

── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # DibParser (Polyglot)                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"

#r 

@"../../../../../../../.nuget/packages/argu/6.1.5/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"

#r 

@"../../../../../../../.nuget/packages/fparsec/2.0.0-beta2/lib/netstandard2.1/FP

arsec.dll"

#r 

@"../../../../../../../.nuget/packages/fparsec/2.0.0-beta2/lib/netstandard2.1/FP

arsecCS.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs

#!import ../../lib/fsharp/CommonFSharp.fs

#!import ../../lib/fsharp/Async.fs

#!import ../../lib/fsharp/AsyncSeq.fs

#!import ../../lib/fsharp/Runtime.fs

#!import ../../lib/fsharp/FileSystem.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module AsyncSeq =



    open Common



    /// ## subscribeEvent



    let inline subscribeEvent (event: IEvent<'H, 'A>) map =

        let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

        System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

        |> FSharp.Control.AsyncSeq.ofObservableBuffered



    let subscribeToken (token : System.Threading.CancellationToken) =

        let tcs = new System.Threading.Tasks.TaskCompletionSource ()

        System.Action tcs.SetResult |> token.Register |> ignore

        let start = System.DateTime.Now.Ticks

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun (...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module FileSystem =



    open Common



    /// ## Operators



    module Operators =

        let inline (</>) a b =

            System.IO.Path.Combine (a, b)



    open Operators



    /// ## createTempDirectoryName



    let inline createTempDirectoryName () =

        let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name



        System.IO.Path.GetTempPath ()

        </> $"!{root}"

        </> string (newGuidFromDateTime System.DateTime.Now)



    /// ## createTempDirectory



    let inline createTempDirectory () =

        let tempFolder = createTempDirectoryName ()

        let result = System.IO.Directory.CreateDirectory tempFolder



        if not result.Exists then

            let ge...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common

open FParsec



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## escapeCell (test)                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline escapeCell input =

    input

    |> String.split [[| '\n' |]]

    |> Array.map (function

        | line when line |> String.startsWith "\\#!" || line |> 

String.startsWith "\\#r" ->

            System.Text.RegularExpressions.Regex.Replace (line, "^\\\\#", "#")

        | line -> line

    )

    |> String.concat "\n"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



$"a{nl}\\#!magic{nl}b{nl}"

|> escapeCell

|> _equal (

    $"a{nl}#!magic{nl}b{nl}"

)



╭─[ 54.04ms - stdout ]─────────────────────────────────────────────────────────╮

│ a                                                                            │

│ #!magic                                                                      │

│ b                                                                            │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## magicMarker                                                               │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let magicMarker : Parser<string, unit> = pstring "#!"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic"

|> run magicMarker

|> _equal (

    Success ("#!", (), Position ("", 2, 1, 3))

)



╭─[ 81.77ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: #!                                                              │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 2                                                             │

│         Line: 1                                                              │

│         Column: 3                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"##!magic"

|> run magicMarker

|> _equal (

    Failure (

        $"Error in Ln: 1 Col: 1{nl}##!magic{nl}^{nl}Expecting: '#!'{nl}",

        ParserError (

            Position ("", 0, 1, 1),

            (),

            ErrorMessageList (ExpectedString "#!")

        ),

        ()

    )

)



╭─[ 76.19ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: Error in Ln: 1 Col: 1                                           │

│ ##!magic                                                                     │

│ ^                                                                            │

│ Expecting: '#!'                                                              │

│                                                                              │

│       Item2: ParserError                                                     │

│         Position: Position                                                   │

│           Index: 0                                                           │

│           Line: 1                                                            │

│           Column: 1                                                          │

│           StreamName:                                                        │

│         UserState: <null>                                                    │

│         Messages: ErrorMessageList                                           │

│           Head: ExpectedString                                               │

│             String: #!                                                       │

│             Type: ExpectedString                                             │

│           Tail: <null>                                                       │

│       Item3: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## magicCommand                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let magicCommand =

    magicMarker

    >>. manyTill anyChar newline

    |>> (System.String.Concat >> String.trim)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic



a"

|> run magicCommand

|> _equal (

    Success ("magic", (), Position ("", 8, 2, 1))

)



╭─[ 35.13ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: magic                                                           │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 8                                                             │

│         Line: 2                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



" #!magic



a"

|> run magicCommand

|> _equal (

    Failure (

        $"Error in Ln: 1 Col: 1{nl} #!magic{nl}^{nl}Expecting: '#!'{nl}",

        ParserError (

            Position ("", 0, 1, 1),

            (),

            ErrorMessageList (ExpectedString "#!")

        ),

        ()

    )

)



╭─[ 39.33ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: Error in Ln: 1 Col: 1                                           │

│  #!magic                                                                     │

│ ^                                                                            │

│ Expecting: '#!'                                                              │

│                                                                              │

│       Item2: ParserError                                                     │

│         Position: Position                                                   │

│           Index: 0                                                           │

│           Line: 1                                                            │

│           Column: 1                                                          │

│           StreamName:                                                        │

│         UserState: <null>                                                    │

│         Messages: ErrorMessageList                                           │

│           Head: ExpectedString                                               │

│             String: #!                                                       │

│             Type: ExpectedString                                             │

│           Tail: <null>                                                       │

│       Item3: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## content                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let content =

    (newline >>. magicMarker) <|> (eof >>. preturn "")

    |> attempt

    |> lookAhead

    |> manyTill anyChar

    |>> (System.String.Concat >> String.trim)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic





a





"

|> run content

|> _equal (

    Success ("#!magic





a", (), Position ("", 14, 7, 1))

)



╭─[ 36.59ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: #!magic                                                         │

│                                                                              │

│                                                                              │

│ a                                                                            │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 14                                                            │

│         Line: 7                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Block                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type Block =

    {

        magic : string

        content : string

    }



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## block                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let block =

    pipe2

        magicCommand

        content

        (fun magic content ->

            {

                magic = magic

                content = content

            })



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic





a





"

|> run block

|> _equal (

    Success (

        { magic = "magic"; content = "a" },

        (),

        Position ("", 14, 7, 1)

    )

)



╭─[ 43.75ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: Block                                                           │

│         magic: magic                                                         │

│         content: a                                                           │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 14                                                            │

│         Line: 7                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## blocks                                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let blocks =

    skipMany newline

    >>. sepEndBy block (skipMany1 newline)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test





"#!magic1



a



\#!magic2



b



"

|> escapeCell

|> run blocks

|> _equal (

    Success (

        [[

            { magic = "magic1"; content = "a" }

            { magic = "magic2"; content = "b" }

        ]],

        (),

        Position ("", 26, 9, 1)

    )

)



╭─[ 50.85ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: FSharpList<Block>                                               │

│         - magic: magic1                                                      │

│           content: a                                                         │

│         - magic: magic2                                                      │

│           content: b                                                         │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 26                                                            │

│         Line: 9                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Output                                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type Output =

    | Fs

    | Md

    | Spi

    | Spir



let inline kernelOutputs magic =

    match magic with

    | "fsharp" -> [[ Fs ]]

    | "markdown" -> [[ Md ]]

    | "spiral" -> [[ Spi; Spir ]]

    | _ -> [[]]



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## formatBlock                                                               │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline formatBlock output (block : Block) =

    match output, block with

    | output, { magic = "markdown"; content = content } ->

        let markdownComment =

            match output with

            | Spi | Spir -> "// // "

            | Fs -> "/// "

            | _ -> ""

        content

        |> String.split [[| '\n' |]]

        |> Array.map (String.trimEnd [[||]])

        |> Array.filter (String.endsWith " (test)" >> not)

        |> Array.map (function

            | "" -> markdownComment |> String.trim

            | line -> System.Text.RegularExpressions.Regex.Replace (line, 

"^\\s*", $"$&{markdownComment}")

        )

        |> String.concat "\n"

    | Fs, { magic = "fsharp"; content = content } ->

        let trimmedContent = content |> String.trim

        if trimmedContent |> String.startsWith "//// test" || trimmedContent |> 

String.startsWith "//// ignore"

        then ""

        else

            content

            |> String.split [[| '\n' |]]

            |> Array.filter (String.trimStart [[||]] >> String.startsWith "#r" 

>> not)

            |> String.concat "\n"

    | (Spi | Spir), { magic = "spiral"; content = content } ->

        let trimmedContent = content |> String.trim

        if trimmedContent |> String.startsWith "// // test" || trimmedContent |>

String.startsWith "// // ignore"

        then ""

        else content

    | _ -> ""



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!markdown





a



    b



c





\#!markdown





c





\#!fsharp





let a = 1"

|> escapeCell

|> run block

|> function

    | Success (block, _, _) -> formatBlock Fs block

    | Failure (msg, _, _) -> failwith msg

|> _equal "/// a

///

    /// b

///

/// c"



╭─[ 133.96ms - stdout ]────────────────────────────────────────────────────────╮

│ /// a                                                                        │

│ ///                                                                          │

│     /// b                                                                    │

│ ///                                                                          │

│ /// c                                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## formatBlocks                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline formatBlocks output blocks =

    blocks

    |> List.map (formatBlock output)

    |> List.filter ((<>) "")

    |> String.concat "\n\n"

    |> fun s -> s + "\n"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!markdown





a



b





\#!markdown





c





\#!fsharp





let a = 1



\#!markdown



d (test)



\#!fsharp



//// test



let a = 2



\#!markdown



e



\#!fsharp



let a = 3"

|> escapeCell

|> run blocks

|> function

    | Success (blocks, _, _) -> formatBlocks Fs blocks

    | Failure (msg, _, _) -> failwith msg

|> _equal "/// a

///

/// b



/// c



let a = 1



/// e



let a = 3

"



╭─[ 122.82ms - stdout ]────────────────────────────────────────────────────────╮

│ /// a                                                                        │

│ ///                                                                          │

│ /// b                                                                        │

│                                                                              │

│ /// c                                                                        │

│                                                                              │

│ let a = 1                                                                    │

│                                                                              │

│ /// e                                                                        │

│                                                                              │

│ let a = 3                                                                    │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## parse                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parse output input =

    match run blocks input with

    | Success (blocks, _, _) ->

        let blocks =

            blocks

            |> List.filter (fun block ->

                block.magic |> kernelOutputs |> List.contains output || 

block.magic = "markdown"

            )

        

        match blocks with

        | { magic = "markdown"; content = content } :: _

            when output = Fs

            && content |> String.startsWith "# "

            && content |> String.endsWith ")"

            ->

            let inline indentBlock (block : Block) =

                { block with

                    content =

                        block.content

                        |> String.split [[| '\n' |]]

                        |> Array.fold

                            (fun (lines, isMultiline) line ->

                                let trimmedLine = line |> String.trim

                                if trimmedLine = ""

                                then "" :: lines, isMultiline

                                else

                                    let inline singleQuoteLine () =

                                        trimmedLine |> Seq.sumBy ((=) '"' >> 

System.Convert.ToInt32) = 1

                                        && trimmedLine |> String.contains 

@"'""'" |> not

                                        && trimmedLine |> String.endsWith "{" |>

not

                                        && trimmedLine |> String.endsWith "{|" 

|> not

                                        && trimmedLine |> String.startsWith "}" 

|> not

                                        && trimmedLine |> String.startsWith "|}"

|> not



                                    match isMultiline, trimmedLine |> 

String.splitString [[| $"{q}{q}{q}" |]] with

                                    | false, [[| _; _ |]] ->

                                        $"    {line}" :: lines, true



                                    | true, [[| _; _ |]] ->

                                        line :: lines, false



                                    | false, _ when singleQuoteLine () ->

                                        $"    {line}" :: lines, true



                                    | false, _ when line |> String.startsWith 

"#" && block.magic = "fsharp" ->

                                        line :: lines, false



                                    | false, _ ->

                                        $"    {line}" :: lines, false



                                    | true, _ when singleQuoteLine () && line |>

String.startsWith "    " ->

                                        $"    {line}" :: lines, false



                                    | true, _ when singleQuoteLine () ->

                                        line :: lines, false



                                    | true, _ ->

                                        line :: lines, true

                            )

                            ([[]], false)

                        |> fst

                        |> List.rev

                        |> String.concat "\n"

                }



            let moduleName, namespaceName =

                System.Text.RegularExpressions.Regex.Match (content, @"# (.*) 

\((.*)\)$")

                |> fun m -> m.Groups.[[1]].Value, m.Groups.[[2]].Value



            let moduleBlock =

                {

                    magic = "fsharp"

                    content =

                        $"#if !INTERACTIVE

namespace {namespaceName}

#endif



module {moduleName} ="

                }



            blocks

            |> List.indexed

            |> List.fold

                (fun blocks (index, block) ->

                    match index with

                    | 0 -> blocks

                    | 1 -> indentBlock block :: moduleBlock :: blocks

                    | _ -> indentBlock block :: blocks

                )

                [[]]

            |> List.rev

        | _ -> blocks

        |> Result.Ok

    | Failure (errorMsg, _, _) -> Result.Error errorMsg



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let example1 =

    $"""#!meta



{{"kernelInfo":{{"defaultKernelName":"fsharp","items":[[{{"aliases":[[]],"name":

"fsharp"}},{{"aliases":[[]],"name":"fsharp"}}]]}}}}



\#!markdown



# TestModule (TestNamespace)



\#!fsharp



\#!import file.dib



\#!fsharp



\#r "nuget:Expecto"



\#!markdown



## ParserLibrary



\#!fsharp



open System



\#!markdown



## x (test)



\#!fsharp



//// ignore



let x = 1



\#!spiral



// // test



inl x = 0i32



\#!spiral



inl x = 0i32



\#!markdown



### TextInput



\#!fsharp



let str1 = "abc

def"



let str2 =

    "abc\

def"



let str3 =

    $"1{{

        1

    }}1"



let str4 =

    $"1{{({{|

        a = 1

    |}}).a}}1"



let str5 =

    "abc \

        def"



let x =

    match '"' with

    | '"' -> true

    | _ -> false



let long1 = {q}{q}{q}a{q}{q}{q}



let long2 =

    {q}{q}{q}

a

{q}{q}{q}



\#!fsharp



type Position =

    {{

#if INTERACTIVE

        line : string

#else

        line : int

#endif

        column : int

    }}"""

    |> escapeCell



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



example1

|> parse Fs

|> Result.toOption

|> Option.get

|> (formatBlocks Fs)

|> _equal $"""#if !INTERACTIVE

namespace TestNamespace

#endif



module TestModule =



    /// ## ParserLibrary



    open System



    /// ### TextInput



    let str1 = "abc

def"



    let str2 =

        "abc\

def"



    let str3 =

        $"1{{

            1

        }}1"



    let str4 =

        $"1{{({{|

            a = 1

        |}}).a}}1"



    let str5 =

        "abc \

            def"



    let x =

        match '"' with

        | '"' -> true

        | _ -> false



    let long1 = {q}{q}{q}a{q}{q}{q}



    let long2 =

        {q}{q}{q}

a

{q}{q}{q}



    type Position =

        {{

#if INTERACTIVE

            line : string

#else

            line : int

#endif

            column : int

        }}

"""



╭─[ 189.11ms - stdout ]────────────────────────────────────────────────────────╮

│ #if !INTERACTIVE                                                             │

│ namespace TestNamespace                                                      │

│ #endif                                                                       │

│                                                                              │

│ module TestModule =                                                          │

│                                                                              │

│     /// ## ParserLibrary                                                     │

│                                                                              │

│     open System                                                              │

│                                                                              │

│     /// ### TextInput                                                        │

│                                                                              │

│     let str1 = "abc                                                          │

│ def"                                                                         │

│                                                                              │

│     let str2 =                                                               │

│         "abc\                                                                │

│ def"                                                                         │

│                                                                              │

│     let str3 =                                                               │

│         $"1{                                                                 │

│             1                                                                │

│         }1"                                                                  │

│                                                                              │

│     let str4 =                                                               │

│         $"1{({|                                                              │

│             a = 1                                                            │

│         |}).a}1"                                                             │

│                                                                              │

│     let str5 =                                                               │

│         "abc \                                                               │

│             def"                                                             │

│                                                                              │

│     let x =                                                                  │

│         match '"' with                                                       │

│         | '"' -> true                                                        │

│         | _ -> false                                                         │

│                                                                              │

│     let long1 = """a"""                                                      │

│                                                                              │

│     let long2 =                                                              │

│         """                                                                  │

│ a                                                                            │

│ """                                                                          │

│                                                                              │

│     type Position =                                                          │

│         {                                                                    │

│ #if INTERACTIVE                                                              │

│             line : string                                                    │

│ #else                                                                        │

│             line : int                                                       │

│ #endif                                                                       │

│             column : int                                                     │

│         }                                                                    │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



example1

|> parse Md

|> Result.toOption

|> Option.get

|> (formatBlocks Md)

|> _equal "# TestModule (TestNamespace)



## ParserLibrary



### TextInput

"



╭─[ 166.58ms - stdout ]────────────────────────────────────────────────────────╮

│ # TestModule (TestNamespace)                                                 │

│                                                                              │

│ ## ParserLibrary                                                             │

│                                                                              │

│ ### TextInput                                                                │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



example1

|> parse Spi

|> Result.toOption

|> Option.get

|> (formatBlocks Spi)

|> _equal "// // # TestModule (TestNamespace)



// // ## ParserLibrary



inl x = 0i32



// // ### TextInput

"



╭─[ 174.87ms - stdout ]────────────────────────────────────────────────────────╮

│ // // # TestModule (TestNamespace)                                           │

│                                                                              │

│ // // ## ParserLibrary                                                       │

│                                                                              │

│ inl x = 0i32                                                                 │

│                                                                              │

│ // // ### TextInput                                                          │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## parseDibCode                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parseDibCode output file = async {

    let getLocals () = $"output: {output} / file: {file} / {getLocals ()}"

    trace Debug (fun () -> "parseDibCode") getLocals

    let! input = file |> FileSystem.readAllTextAsync

    match parse output input with

    | Result.Ok blocks -> return blocks |> formatBlocks output

    | Result.Error msg -> return failwith msg

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## writeDibCode                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline writeDibCode output path = async {

    let getLocals () = $"output: {output} / path: {path} / {getLocals ()}"

    trace Debug (fun () -> "writeDibCode") getLocals

    let! result = parseDibCode output path

    let outputPath = path |> String.replace ".dib" $".{output |> string |> 

String.toLower}"

    do! result |> FileSystem.writeAllTextAsync outputPath

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Arguments                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

[[<RequireQualifiedAccess>]]

type Arguments =

    | [[<Argu.ArguAttributes.MainCommand; Argu.ArguAttributes.Mandatory>]]

        File of file : string * Output



    interface Argu.IArgParserTemplate with

        member s.Usage =

            match s with

            | File _ -> nameof File



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Argu.ArgumentParser.Create<Arguments>().PrintUsage ()



╭─[ 147.74ms - return value ]──────────────────────────────────────────────────╮

│ USAGE: dotnet.exe [--help] <file> <fs|md|spi|spir>                           │

│                                                                              │

│ FILE:                                                                        │

│                                                                              │

│     <file> <fs|md|spi|spir>                                                  │

│                           File                                               │

│                                                                              │

│ OPTIONS:                                                                     │

│                                                                              │

│     --help                display this list of options.                      │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## main                                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let main args =

    let argsMap = args |> Runtime.parseArgsMap<Arguments>



    let files =

        argsMap.[[nameof Arguments.File]]

        |> List.map (function

            | Arguments.File (path, output) -> path, output

        )



    files

    |> List.map (fun (path, output) -> path |> writeDibCode output)

    |> Async.Parallel

    |> Async.Ignore

    |> Async.runWithTimeout 30000

    |> function

        | Some () -> 0

        | None -> 1



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let args =

    System.Environment.GetEnvironmentVariable "ARGS"

    |> Runtime.splitArgs

    |> Seq.toArray



match args with

| [[||]] -> 0

| args -> if main args = 0 then 0 else failwith "main failed"



╭─[ 176.71ms - return value ]──────────────────────────────────────────────────╮

│ <div class="dni-plaintext"><pre>0</pre></div><style>                         │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 192.31ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] writeDibCode / output: Fs / path: Builder.dib            │

│ 00:00:00 #2 [Debug] parseDibCode / output: Fs / file: Builder.dib            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Builder (Polyglot)                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"

#r 

@"../../../../../../../.nuget/packages/argu/6.1.5/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs

#!import ../../lib/fsharp/CommonFSharp.fs

#!import ../../lib/fsharp/Async.fs

#!import ../../lib/fsharp/AsyncSeq.fs

#!import ../../lib/fsharp/Networking.fs

#!import ../../lib/fsharp/Runtime.fs

#!import ../../lib/fsharp/FileSystem.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module AsyncSeq =



    open Common



    /// ## subscribeEvent



    let inline subscribeEvent (event: IEvent<'H, 'A>) map =

        let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

        System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

        |> FSharp.Control.AsyncSeq.ofObservableBuffered



    let subscribeToken (token : System.Threading.CancellationToken) =

        let tcs = new System.Threading.Tasks.TaskCompletionSource ()

        System.Action tcs.SetResult |> token.Register |> ignore

        let start = System.DateTime.Now.Ticks

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun (...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Networking =



    open Common



    /// ## testPortOpen



    let inline testPortOpen port = async {

        let! ct = Async.CancellationToken

        use client = new System.Net.Sockets.TcpClient ()

        try

            do! client.ConnectAsync ("127.0.0.1", port, ct) |> 

Async.awaitValueTaskUnit

            return true

        with ex ->

            trace Verbose (fun () -> $"testPortOpen / ex: {ex |> 

printException}") getLocals

            return false

    }



    let inline testPortOpenTimeout timeout port = async {

        let! result =

            testPortOpen port

            |> Async.runWithTimeoutAsync timeout

        return

            match result with

            | None -> false

 ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module FileSystem =



    open Common



    /// ## Operators



    module Operators =

        let inline (</>) a b =

            System.IO.Path.Combine (a, b)



    open Operators



    /// ## createTempDirectoryName



    let inline createTempDirectoryName () =

        let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name



        System.IO.Path.GetTempPath ()

        </> $"!{root}"

        </> string (newGuidFromDateTime System.DateTime.Now)



    /// ## createTempDirectory



    let inline createTempDirectory () =

        let tempFolder = createTempDirectoryName ()

        let result = System.IO.Directory.CreateDirectory tempFolder



        if not result.Exists then

            let ge...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common

open FileSystem.Operators



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## buildProject                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline buildProject runtime outputDir path = async {

    let fullPath = path |> System.IO.Path.GetFullPath

    let fileDir = fullPath |> System.IO.Path.GetDirectoryName

    let extension = fullPath |> System.IO.Path.GetExtension



    let getLocals () = $"fullPath: {fullPath} / {getLocals ()}"

    trace Debug (fun () -> "buildProject") getLocals



    match extension with

    | ".fsproj" -> ()

    | _ -> failwith "Invalid project file"



    let runtimes =

        runtime

        |> Option.map List.singleton

        |> Option.defaultValue [[ "linux-x64"; "win-x64" ]]

    

    let outputDir = outputDir |> Option.defaultValue "dist"



    return!

        runtimes

        |> List.map (fun runtime -> async {

            let! exitCode, _result =

                Runtime.executeWithOptionsAsync

                    {

                        Command = $@"dotnet publish ""{path}"" --configuration 

Release --output ""{outputDir}"" --runtime {runtime}"

                        CancellationToken = None

                        OnLine = None

                        WorkingDirectory = Some fileDir

                    }



            return exitCode

        })

        |> Async.Sequential

        |> Async.map Array.sum

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## persistCodeProject                                                        │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline persistCodeProject packages modules name code = async {

    let getLocals () = $"packages: {packages} / modules: {modules} / name: 

{name} / code.Length: {code |> String.length} / {getLocals ()}"

    trace Debug (fun () -> "persistCodeProject") getLocals



    let repositoryRoot = FileSystem.getSourceDirectory () |> 

FileSystem.findParent ".paket" false



    let targetDir = repositoryRoot </> "target/polyglot/builder" </> name

    System.IO.Directory.CreateDirectory targetDir |> ignore



    let filePath = targetDir </> $"{name}.fs" |> System.IO.Path.GetFullPath

    do! code |> FileSystem.writeAllTextExists filePath



    let modulesCode =

        modules

        |> List.map (fun path -> $"""<Compile Include="{repositoryRoot </> 

path}" />""")

        |> String.concat "\n        "



    let fsprojPath = targetDir </> $"{name}.fsproj"

    let fsprojCode = $"""<Project Sdk="Microsoft.NET.Sdk">

    <PropertyGroup>

        <TargetFramework>net8.0</TargetFramework>

        <LangVersion>preview</LangVersion>

        <RollForward>Major</RollForward>

        <TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>

        <PublishAot>false</PublishAot>

        <PublishTrimmed>false</PublishTrimmed>

        <PublishSingleFile>true</PublishSingleFile>

        <SelfContained>true</SelfContained>

        <Version>0.0.1-alpha.1</Version>

        <OutputType>Exe</OutputType>

    </PropertyGroup>



    <ItemGroup>

        {modulesCode}

        <Compile Include="{filePath}" />

    </ItemGroup>



    <Import Project="{repositoryRoot}/.paket/Paket.Restore.targets" />

</Project>

"""

    do! fsprojCode |> FileSystem.writeAllTextExists fsprojPath



    let paketReferencesPath = targetDir </> "paket.references"

    let paketReferencesCode =

        "FSharp.Core" :: packages

        |> String.concat "\n"

    do! paketReferencesCode |> FileSystem.writeAllTextExists paketReferencesPath



    return fsprojPath

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## buildCode                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline buildCode runtime packages modules outputDir name code = async {

    let! fsprojPath = code |> persistCodeProject packages modules name

    return! fsprojPath |> buildProject runtime outputDir

}



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"1 + 1"

|> buildCode None [[]] [[]] None "test1"

|> Async.runWithTimeout 60000

|> _equal (Some 0)



╭─[ 16.24s - stdout ]──────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] persistCodeProject / packages: [] / modules: [] / name:  │

│ test1 / code.Length: 5                                                       │

│ 00:00:00 #2 [Debug] buildProject / fullPath:                                 │

│ C:\home\git\polyglot\target\polyglot\builder\test1\test1.fsproj              │

│ 00:00:00 #3 [Debug] executeAsync / options: { Command =                      │

│    "dotnet publish                                                           │

│ "C:\home\git\polyglot\target/polyglot/builder\test1\test1.fsproj"            │

│ --configuration Release --output "dist" --runtime linux-x64"                 │

│   WorkingDirectory = Some                                                    │

│ "C:\home\git\polyglot\target\polyglot\builder\test1"                         │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:00 #4 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET            │

│ 00:00:01 #5 [Verbose] >   Determining projects to restore...                 │

│ 00:00:05 #6 [Verbose] >   Restored                                           │

│ C:\home\git\polyglot\target\polyglot\builder\test1\test1.fsproj (in 4.03     │

│ sec).                                                                        │

│ 00:00:07 #7 [Verbose] >   test1 ->                                           │

│ C:\home\git\polyglot\target\polyglot\builder\test1\bin\Release\net8.0\linux- │

│ x64\test1.dll                                                                │

│ 00:00:08 #8 [Verbose] >   test1 ->                                           │

│ C:\home\git\polyglot\target\polyglot\builder\test1\dist\                     │

│ 00:00:08 #9 [Debug] executeAsync / exitCode: 0 / output.Length: 337          │

│ 00:00:08 #10 [Debug] executeAsync / options: { Command =                     │

│    "dotnet publish                                                           │

│ "C:\home\git\polyglot\target/polyglot/builder\test1\test1.fsproj"            │

│ --configuration Release --output "dist" --runtime win-x64"                   │

│   WorkingDirectory = Some                                                    │

│ "C:\home\git\polyglot\target\polyglot\builder\test1"                         │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:09 #11 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET           │

│ 00:00:09 #12 [Verbose] >   Determining projects to restore...                │

│ 00:00:10 #13 [Verbose] >   Restored                                          │

│ C:\home\git\polyglot\target\polyglot\builder\test1\test1.fsproj (in 347 ms). │

│ 00:00:11 #14 [Verbose] >   test1 ->                                          │

│ C:\home\git\polyglot\target\polyglot\builder\test1\bin\Release\net8.0\win-x6 │

│ 4\test1.dll                                                                  │

│ 00:00:15 #15 [Verbose] >   test1 ->                                          │

│ C:\home\git\polyglot\target\polyglot\builder\test1\dist\                     │

│ 00:00:15 #16 [Debug] executeAsync / exitCode: 0 / output.Length: 333         │

│ FSharpOption<Int32>                                                          │

│       Value: 0                                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"1 + a"

|> buildCode None [[]] [[]] None "test2"

|> Async.runWithTimeout 60000

|> _equal (Some 2)



╭─[ 11.49s - stdout ]──────────────────────────────────────────────────────────╮

│ 00:00:16 #17 [Debug] persistCodeProject / packages: [] / modules: [] / name: │

│ test2 / code.Length: 5                                                       │

│ 00:00:16 #18 [Debug] buildProject / fullPath:                                │

│ C:\home\git\polyglot\target\polyglot\builder\test2\test2.fsproj              │

│ 00:00:16 #19 [Debug] executeAsync / options: { Command =                     │

│    "dotnet publish                                                           │

│ "C:\home\git\polyglot\target/polyglot/builder\test2\test2.fsproj"            │

│ --configuration Release --output "dist" --runtime linux-x64"                 │

│   WorkingDirectory = Some                                                    │

│ "C:\home\git\polyglot\target\polyglot\builder\test2"                         │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:16 #20 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET           │

│ 00:00:17 #21 [Verbose] >   Determining projects to restore...                │

│ 00:00:18 #22 [Verbose] >   Restored                                          │

│ C:\home\git\polyglot\target\polyglot\builder\test2\test2.fsproj (in 507 ms). │

│ 00:00:21 #23 [Verbose] >                                                     │

│ C:\home\git\polyglot\target\polyglot\builder\test2\test2.fs(1,5): error      │

│ FS0039: The value or constructor 'a' is not defined. [                       │

│ C:\home\git\polyglot\target\polyglot\builder\test2\test2.fsproj]             │

│ 00:00:22 #24 [Debug] executeAsync / exitCode: 1 / output.Length: 357         │

│ 00:00:22 #25 [Debug] executeAsync / options: { Command =                     │

│    "dotnet publish                                                           │

│ "C:\home\git\polyglot\target/polyglot/builder\test2\test2.fsproj"            │

│ --configuration Release --output "dist" --runtime win-x64"                   │

│   WorkingDirectory = Some                                                    │

│ "C:\home\git\polyglot\target\polyglot\builder\test2"                         │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:22 #26 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET           │

│ 00:00:23 #27 [Verbose] >   Determining projects to restore...                │

│ 00:00:24 #28 [Verbose] >   Restored                                          │

│ C:\home\git\polyglot\target\polyglot\builder\test2\test2.fsproj (in 499 ms). │

│ 00:00:27 #29 [Verbose] >                                                     │

│ C:\home\git\polyglot\target\polyglot\builder\test2\test2.fs(1,5): error      │

│ FS0039: The value or constructor 'a' is not defined. [                       │

│ C:\home\git\polyglot\target\polyglot\builder\test2\test2.fsproj]             │

│ 00:00:27 #30 [Debug] executeAsync / exitCode: 1 / output.Length: 357         │

│ FSharpOption<Int32>                                                          │

│       Value: 2                                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## readFile                                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline readFile path = async {

    let! code = path |> FileSystem.readAllTextAsync



    let code = System.Text.RegularExpressions.Regex.Replace (

        code,

        @"( *)(let\s+main\s+.*?\s*=)",

        fun m -> m.Groups.[[1]].Value + "[[<EntryPoint>]]\n" + 

m.Groups.[[1]].Value + m.Groups.[[2]].Value

    )



    let codeTrim = code |> String.trimEnd [[||]]

    return

        if codeTrim |> String.endsWith "\n()"

        then codeTrim |> String.substring 0 ((codeTrim |> String.length) - 2)

        else code

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## buildFile                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline buildFile runtime packages modules path = async {

    let fullPath = path |> System.IO.Path.GetFullPath

    let dir = fullPath |> System.IO.Path.GetDirectoryName

    let name = fullPath |> System.IO.Path.GetFileNameWithoutExtension

    let! code = fullPath |> readFile

    return! code |> buildCode runtime packages modules (dir </> "dist" |> Some) 

name

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## persistFile                                                               │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline persistFile packages modules path = async {

    let fullPath = path |> System.IO.Path.GetFullPath

    let name = fullPath |> System.IO.Path.GetFileNameWithoutExtension

    let! code = fullPath |> readFile

    return! code |> persistCodeProject packages modules name

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Arguments                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

[[<RequireQualifiedAccess>]]

type Arguments =

    | [[<Argu.ArguAttributes.MainCommand; Argu.ArguAttributes.ExactlyOnce>]] 

Path of path : string

    | [[<Argu.ArguAttributes.Unique>]] Packages of packages : string list

    | [[<Argu.ArguAttributes.Unique>]] Modules of modules : string list

    | [[<Argu.ArguAttributes.Unique>]] Runtime of runtime : string

    | [[<Argu.ArguAttributes.Unique>]] Persist_Only



    interface Argu.IArgParserTemplate with

        member s.Usage =

            match s with

            | Path _ -> nameof Path

            | Packages _ -> nameof Packages

            | Modules _ -> nameof Modules

            | Runtime _ -> nameof Runtime

            | Persist_Only -> nameof Persist_Only



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Argu.ArgumentParser.Create<Arguments>().PrintUsage ()



╭─[ 126.01ms - return value ]──────────────────────────────────────────────────╮

│ USAGE: dotnet.exe [--help] [--packages [<packages>...]]                      │

│                   [--modules [<modules>...]] [--runtime <runtime>]           │

│                   [--persist-only] <path>                                    │

│                                                                              │

│ PATH:                                                                        │

│                                                                              │

│     <path>                Path                                               │

│                                                                              │

│ OPTIONS:                                                                     │

│                                                                              │

│     --packages [<packages>...]                                               │

│                           Packages                                           │

│     --modules [<modules>...]                                                 │

│                           Modules                                            │

│     --runtime <runtime>   Runtime                                            │

│     --persist-only        Persist_Only                                       │

│     --help                display this list of options.                      │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## main                                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let main args =

    let argsMap = args |> Runtime.parseArgsMap<Arguments>



    let path =

        match argsMap.[[nameof Arguments.Path]] with

        | [[ Arguments.Path path ]] -> Some path

        | _ -> None

        |> Option.get



    let packages =

        match argsMap |> Map.tryFind (nameof Arguments.Packages) with

        | Some [[ Arguments.Packages packages ]] -> packages

        | _ -> [[]]



    let modules =

        match argsMap |> Map.tryFind (nameof Arguments.Modules) with

        | Some [[ Arguments.Modules modules ]] -> modules

        | _ -> [[]]



    let runtime =

        match argsMap |> Map.tryFind (nameof Arguments.Runtime) with

        | Some [[ Arguments.Runtime runtime ]] -> Some runtime

        | _ -> None



    let persistOnly = argsMap |> Map.containsKey (nameof Arguments.Persist_Only)



    if persistOnly

    then path |> persistFile packages modules |> Async.map (fun _ -> 0)

    else path |> buildFile runtime packages modules

    |> Async.runWithTimeout 60000

    |> function

        | Some exitCode -> exitCode

        | None -> 1



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let args =

    System.Environment.GetEnvironmentVariable "ARGS"

    |> Runtime.splitArgs

    |> Seq.toArray



match args with

| [[||]] -> 0

| args -> if main args = 0 then 0 else failwith "main failed"



╭─[ 26.61s - return value ]────────────────────────────────────────────────────╮

│ <div class="dni-plaintext"><pre>0</pre></div><style>                         │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 26.64s - stdout ]──────────────────────────────────────────────────────────╮

│ 00:00:29 #31 [Debug] persistCodeProject / packages: [Argu;                   │

│ FSharp.Control.AsyncSeq; System.CommandLine; ... ] / modules: [              │

│ lib/fsharp/Common.fs; lib/fsharp/CommonFSharp.fs; lib/fsharp/Async.fs; ... ] │

│ / name: Builder / code.Length: 7079                                          │

│ 00:00:29 #32 [Debug] buildProject / fullPath:                                │

│ C:\home\git\polyglot\target\polyglot\builder\Builder\Builder.fsproj          │

│ 00:00:29 #33 [Debug] executeAsync / options: { Command =                     │

│    "dotnet publish                                                           │

│ "C:\home\git\polyglot\target/polyglot/builder\Builder\Builder.fsproj"        │

│ --configuration Release --output "C:\home\git\polyglot\apps\builder\dist"    │

│ --runtime linux-x64"                                                         │

│   WorkingDirectory = Some                                                    │

│ "C:\home\git\polyglot\target\polyglot\builder\Builder"                       │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:30 #34 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET           │

│ 00:00:30 #35 [Verbose] >   Determining projects to restore...                │

│ 00:00:31 #36 [Verbose] >   Restored                                          │

│ C:\home\git\polyglot\target\polyglot\builder\Builder\Builder.fsproj (in 460  │

│ ms).                                                                         │

│ 00:00:39 #37 [Verbose] >   Builder ->                                        │

│ C:\home\git\polyglot\target\polyglot\builder\Builder\bin\Release\net8.0\linu │

│ x-x64\Builder.dll                                                            │

│ 00:00:41 #38 [Verbose] >   Builder ->                                        │

│ C:\home\git\polyglot\apps\builder\dist\                                      │

│ 00:00:41 #39 [Debug] executeAsync / exitCode: 0 / output.Length: 330         │

│ 00:00:41 #40 [Debug] executeAsync / options: { Command =                     │

│    "dotnet publish                                                           │

│ "C:\home\git\polyglot\target/polyglot/builder\Builder\Builder.fsproj"        │

│ --configuration Release --output "C:\home\git\polyglot\apps\builder\dist"    │

│ --runtime win-x64"                                                           │

│   WorkingDirectory = Some                                                    │

│ "C:\home\git\polyglot\target\polyglot\builder\Builder"                       │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:41 #41 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET           │

│ 00:00:42 #42 [Verbose] >   Determining projects to restore...                │

│ 00:00:43 #43 [Verbose] >   Restored                                          │

│ C:\home\git\polyglot\target\polyglot\builder\Builder\Builder.fsproj (in 429  │

│ ms).                                                                         │

│ 00:00:51 #44 [Verbose] >   Builder ->                                        │

│ C:\home\git\polyglot\target\polyglot\builder\Builder\bin\Release\net8.0\win- │

│ x64\Builder.dll                                                              │

│ 00:00:56 #45 [Verbose] >   Builder ->                                        │

│ C:\home\git\polyglot\apps\builder\dist\                                      │

│ 00:00:56 #46 [Debug] executeAsync / exitCode: 0 / output.Length: 328         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Builder.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 324590 bytes to Builder.dib.html

In [ ]:
{ . "$ScriptDir/../apps/parser/build.ps1" } | Invoke-Block

── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # DibParser (Polyglot)                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"

#r 

@"../../../../../../../.nuget/packages/argu/6.1.5/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"

#r 

@"../../../../../../../.nuget/packages/fparsec/2.0.0-beta2/lib/netstandard2.1/FP

arsec.dll"

#r 

@"../../../../../../../.nuget/packages/fparsec/2.0.0-beta2/lib/netstandard2.1/FP

arsecCS.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs

#!import ../../lib/fsharp/CommonFSharp.fs

#!import ../../lib/fsharp/Async.fs

#!import ../../lib/fsharp/AsyncSeq.fs

#!import ../../lib/fsharp/Runtime.fs

#!import ../../lib/fsharp/FileSystem.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module AsyncSeq =



    open Common



    /// ## subscribeEvent



    let inline subscribeEvent (event: IEvent<'H, 'A>) map =

        let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

        System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

        |> FSharp.Control.AsyncSeq.ofObservableBuffered



    let subscribeToken (token : System.Threading.CancellationToken) =

        let tcs = new System.Threading.Tasks.TaskCompletionSource ()

        System.Action tcs.SetResult |> token.Register |> ignore

        let start = System.DateTime.Now.Ticks

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun (...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module FileSystem =



    open Common



    /// ## Operators



    module Operators =

        let inline (</>) a b =

            System.IO.Path.Combine (a, b)



    open Operators



    /// ## createTempDirectoryName



    let inline createTempDirectoryName () =

        let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name



        System.IO.Path.GetTempPath ()

        </> $"!{root}"

        </> string (newGuidFromDateTime System.DateTime.Now)



    /// ## createTempDirectory



    let inline createTempDirectory () =

        let tempFolder = createTempDirectoryName ()

        let result = System.IO.Directory.CreateDirectory tempFolder



        if not result.Exists then

            let ge...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common

open FParsec



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## escapeCell (test)                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline escapeCell input =

    input

    |> String.split [[| '\n' |]]

    |> Array.map (function

        | line when line |> String.startsWith "\\#!" || line |> 

String.startsWith "\\#r" ->

            System.Text.RegularExpressions.Regex.Replace (line, "^\\\\#", "#")

        | line -> line

    )

    |> String.concat "\n"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



$"a{nl}\\#!magic{nl}b{nl}"

|> escapeCell

|> _equal (

    $"a{nl}#!magic{nl}b{nl}"

)



╭─[ 134.58ms - stdout ]────────────────────────────────────────────────────────╮

│ a                                                                            │

│ #!magic                                                                      │

│ b                                                                            │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## magicMarker                                                               │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let magicMarker : Parser<string, unit> = pstring "#!"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic"

|> run magicMarker

|> _equal (

    Success ("#!", (), Position ("", 2, 1, 3))

)



╭─[ 68.48ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: #!                                                              │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 2                                                             │

│         Line: 1                                                              │

│         Column: 3                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"##!magic"

|> run magicMarker

|> _equal (

    Failure (

        $"Error in Ln: 1 Col: 1{nl}##!magic{nl}^{nl}Expecting: '#!'{nl}",

        ParserError (

            Position ("", 0, 1, 1),

            (),

            ErrorMessageList (ExpectedString "#!")

        ),

        ()

    )

)



╭─[ 78.99ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: Error in Ln: 1 Col: 1                                           │

│ ##!magic                                                                     │

│ ^                                                                            │

│ Expecting: '#!'                                                              │

│                                                                              │

│       Item2: ParserError                                                     │

│         Position: Position                                                   │

│           Index: 0                                                           │

│           Line: 1                                                            │

│           Column: 1                                                          │

│           StreamName:                                                        │

│         UserState: <null>                                                    │

│         Messages: ErrorMessageList                                           │

│           Head: ExpectedString                                               │

│             String: #!                                                       │

│             Type: ExpectedString                                             │

│           Tail: <null>                                                       │

│       Item3: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## magicCommand                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let magicCommand =

    magicMarker

    >>. manyTill anyChar newline

    |>> (System.String.Concat >> String.trim)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic



a"

|> run magicCommand

|> _equal (

    Success ("magic", (), Position ("", 8, 2, 1))

)



╭─[ 38.22ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: magic                                                           │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 8                                                             │

│         Line: 2                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



" #!magic



a"

|> run magicCommand

|> _equal (

    Failure (

        $"Error in Ln: 1 Col: 1{nl} #!magic{nl}^{nl}Expecting: '#!'{nl}",

        ParserError (

            Position ("", 0, 1, 1),

            (),

            ErrorMessageList (ExpectedString "#!")

        ),

        ()

    )

)



╭─[ 43.91ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: Error in Ln: 1 Col: 1                                           │

│  #!magic                                                                     │

│ ^                                                                            │

│ Expecting: '#!'                                                              │

│                                                                              │

│       Item2: ParserError                                                     │

│         Position: Position                                                   │

│           Index: 0                                                           │

│           Line: 1                                                            │

│           Column: 1                                                          │

│           StreamName:                                                        │

│         UserState: <null>                                                    │

│         Messages: ErrorMessageList                                           │

│           Head: ExpectedString                                               │

│             String: #!                                                       │

│             Type: ExpectedString                                             │

│           Tail: <null>                                                       │

│       Item3: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## content                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let content =

    (newline >>. magicMarker) <|> (eof >>. preturn "")

    |> attempt

    |> lookAhead

    |> manyTill anyChar

    |>> (System.String.Concat >> String.trim)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic





a





"

|> run content

|> _equal (

    Success ("#!magic





a", (), Position ("", 14, 7, 1))

)



╭─[ 33.62ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: #!magic                                                         │

│                                                                              │

│                                                                              │

│ a                                                                            │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 14                                                            │

│         Line: 7                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Block                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type Block =

    {

        magic : string

        content : string

    }



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## block                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let block =

    pipe2

        magicCommand

        content

        (fun magic content ->

            {

                magic = magic

                content = content

            })



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!magic





a





"

|> run block

|> _equal (

    Success (

        { magic = "magic"; content = "a" },

        (),

        Position ("", 14, 7, 1)

    )

)



╭─[ 45.60ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: Block                                                           │

│         magic: magic                                                         │

│         content: a                                                           │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 14                                                            │

│         Line: 7                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## blocks                                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let blocks =

    skipMany newline

    >>. sepEndBy block (skipMany1 newline)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test





"#!magic1



a



\#!magic2



b



"

|> escapeCell

|> run blocks

|> _equal (

    Success (

        [[

            { magic = "magic1"; content = "a" }

            { magic = "magic2"; content = "b" }

        ]],

        (),

        Position ("", 26, 9, 1)

    )

)



╭─[ 54.52ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item1: FSharpList<Block>                                               │

│         - magic: magic1                                                      │

│           content: a                                                         │

│         - magic: magic2                                                      │

│           content: b                                                         │

│       Item2: <null>                                                          │

│       Item3: Position                                                        │

│         Index: 26                                                            │

│         Line: 9                                                              │

│         Column: 1                                                            │

│         StreamName:                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Output                                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type Output =

    | Fs

    | Md

    | Spi

    | Spir



let inline kernelOutputs magic =

    match magic with

    | "fsharp" -> [[ Fs ]]

    | "markdown" -> [[ Md ]]

    | "spiral" -> [[ Spi; Spir ]]

    | _ -> [[]]



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## formatBlock                                                               │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline formatBlock output (block : Block) =

    match output, block with

    | output, { magic = "markdown"; content = content } ->

        let markdownComment =

            match output with

            | Spi | Spir -> "// // "

            | Fs -> "/// "

            | _ -> ""

        content

        |> String.split [[| '\n' |]]

        |> Array.map (String.trimEnd [[||]])

        |> Array.filter (String.endsWith " (test)" >> not)

        |> Array.map (function

            | "" -> markdownComment |> String.trim

            | line -> System.Text.RegularExpressions.Regex.Replace (line, 

"^\\s*", $"$&{markdownComment}")

        )

        |> String.concat "\n"

    | Fs, { magic = "fsharp"; content = content } ->

        let trimmedContent = content |> String.trim

        if trimmedContent |> String.startsWith "//// test" || trimmedContent |> 

String.startsWith "//// ignore"

        then ""

        else

            content

            |> String.split [[| '\n' |]]

            |> Array.filter (String.trimStart [[||]] >> String.startsWith "#r" 

>> not)

            |> String.concat "\n"

    | (Spi | Spir), { magic = "spiral"; content = content } ->

        let trimmedContent = content |> String.trim

        if trimmedContent |> String.startsWith "// // test" || trimmedContent |>

String.startsWith "// // ignore"

        then ""

        else content

    | _ -> ""



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!markdown





a



    b



c





\#!markdown





c





\#!fsharp





let a = 1"

|> escapeCell

|> run block

|> function

    | Success (block, _, _) -> formatBlock Fs block

    | Failure (msg, _, _) -> failwith msg

|> _equal "/// a

///

    /// b

///

/// c"



╭─[ 75.86ms - stdout ]─────────────────────────────────────────────────────────╮

│ /// a                                                                        │

│ ///                                                                          │

│     /// b                                                                    │

│ ///                                                                          │

│ /// c                                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## formatBlocks                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline formatBlocks output blocks =

    blocks

    |> List.map (formatBlock output)

    |> List.filter ((<>) "")

    |> String.concat "\n\n"

    |> fun s -> s + "\n"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"#!markdown





a



b





\#!markdown





c





\#!fsharp





let a = 1



\#!markdown



d (test)



\#!fsharp



//// test



let a = 2



\#!markdown



e



\#!fsharp



let a = 3"

|> escapeCell

|> run blocks

|> function

    | Success (blocks, _, _) -> formatBlocks Fs blocks

    | Failure (msg, _, _) -> failwith msg

|> _equal "/// a

///

/// b



/// c



let a = 1



/// e



let a = 3

"



╭─[ 88.03ms - stdout ]─────────────────────────────────────────────────────────╮

│ /// a                                                                        │

│ ///                                                                          │

│ /// b                                                                        │

│                                                                              │

│ /// c                                                                        │

│                                                                              │

│ let a = 1                                                                    │

│                                                                              │

│ /// e                                                                        │

│                                                                              │

│ let a = 3                                                                    │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## parse                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parse output input =

    match run blocks input with

    | Success (blocks, _, _) ->

        let blocks =

            blocks

            |> List.filter (fun block ->

                block.magic |> kernelOutputs |> List.contains output || 

block.magic = "markdown"

            )

        

        match blocks with

        | { magic = "markdown"; content = content } :: _

            when output = Fs

            && content |> String.startsWith "# "

            && content |> String.endsWith ")"

            ->

            let inline indentBlock (block : Block) =

                { block with

                    content =

                        block.content

                        |> String.split [[| '\n' |]]

                        |> Array.fold

                            (fun (lines, isMultiline) line ->

                                let trimmedLine = line |> String.trim

                                if trimmedLine = ""

                                then "" :: lines, isMultiline

                                else

                                    let inline singleQuoteLine () =

                                        trimmedLine |> Seq.sumBy ((=) '"' >> 

System.Convert.ToInt32) = 1

                                        && trimmedLine |> String.contains 

@"'""'" |> not

                                        && trimmedLine |> String.endsWith "{" |>

not

                                        && trimmedLine |> String.endsWith "{|" 

|> not

                                        && trimmedLine |> String.startsWith "}" 

|> not

                                        && trimmedLine |> String.startsWith "|}"

|> not



                                    match isMultiline, trimmedLine |> 

String.splitString [[| $"{q}{q}{q}" |]] with

                                    | false, [[| _; _ |]] ->

                                        $"    {line}" :: lines, true



                                    | true, [[| _; _ |]] ->

                                        line :: lines, false



                                    | false, _ when singleQuoteLine () ->

                                        $"    {line}" :: lines, true



                                    | false, _ when line |> String.startsWith 

"#" && block.magic = "fsharp" ->

                                        line :: lines, false



                                    | false, _ ->

                                        $"    {line}" :: lines, false



                                    | true, _ when singleQuoteLine () && line |>

String.startsWith "    " ->

                                        $"    {line}" :: lines, false



                                    | true, _ when singleQuoteLine () ->

                                        line :: lines, false



                                    | true, _ ->

                                        line :: lines, true

                            )

                            ([[]], false)

                        |> fst

                        |> List.rev

                        |> String.concat "\n"

                }



            let moduleName, namespaceName =

                System.Text.RegularExpressions.Regex.Match (content, @"# (.*) 

\((.*)\)$")

                |> fun m -> m.Groups.[[1]].Value, m.Groups.[[2]].Value



            let moduleBlock =

                {

                    magic = "fsharp"

                    content =

                        $"#if !INTERACTIVE

namespace {namespaceName}

#endif



module {moduleName} ="

                }



            blocks

            |> List.indexed

            |> List.fold

                (fun blocks (index, block) ->

                    match index with

                    | 0 -> blocks

                    | 1 -> indentBlock block :: moduleBlock :: blocks

                    | _ -> indentBlock block :: blocks

                )

                [[]]

            |> List.rev

        | _ -> blocks

        |> Result.Ok

    | Failure (errorMsg, _, _) -> Result.Error errorMsg



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let example1 =

    $"""#!meta



{{"kernelInfo":{{"defaultKernelName":"fsharp","items":[[{{"aliases":[[]],"name":

"fsharp"}},{{"aliases":[[]],"name":"fsharp"}}]]}}}}



\#!markdown



# TestModule (TestNamespace)



\#!fsharp



\#!import file.dib



\#!fsharp



\#r "nuget:Expecto"



\#!markdown



## ParserLibrary



\#!fsharp



open System



\#!markdown



## x (test)



\#!fsharp



//// ignore



let x = 1



\#!spiral



// // test



inl x = 0i32



\#!spiral



inl x = 0i32



\#!markdown



### TextInput



\#!fsharp



let str1 = "abc

def"



let str2 =

    "abc\

def"



let str3 =

    $"1{{

        1

    }}1"



let str4 =

    $"1{{({{|

        a = 1

    |}}).a}}1"



let str5 =

    "abc \

        def"



let x =

    match '"' with

    | '"' -> true

    | _ -> false



let long1 = {q}{q}{q}a{q}{q}{q}



let long2 =

    {q}{q}{q}

a

{q}{q}{q}



\#!fsharp



type Position =

    {{

#if INTERACTIVE

        line : string

#else

        line : int

#endif

        column : int

    }}"""

    |> escapeCell



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



example1

|> parse Fs

|> Result.toOption

|> Option.get

|> (formatBlocks Fs)

|> _equal $"""#if !INTERACTIVE

namespace TestNamespace

#endif



module TestModule =



    /// ## ParserLibrary



    open System



    /// ### TextInput



    let str1 = "abc

def"



    let str2 =

        "abc\

def"



    let str3 =

        $"1{{

            1

        }}1"



    let str4 =

        $"1{{({{|

            a = 1

        |}}).a}}1"



    let str5 =

        "abc \

            def"



    let x =

        match '"' with

        | '"' -> true

        | _ -> false



    let long1 = {q}{q}{q}a{q}{q}{q}



    let long2 =

        {q}{q}{q}

a

{q}{q}{q}



    type Position =

        {{

#if INTERACTIVE

            line : string

#else

            line : int

#endif

            column : int

        }}

"""



╭─[ 200.13ms - stdout ]────────────────────────────────────────────────────────╮

│ #if !INTERACTIVE                                                             │

│ namespace TestNamespace                                                      │

│ #endif                                                                       │

│                                                                              │

│ module TestModule =                                                          │

│                                                                              │

│     /// ## ParserLibrary                                                     │

│                                                                              │

│     open System                                                              │

│                                                                              │

│     /// ### TextInput                                                        │

│                                                                              │

│     let str1 = "abc                                                          │

│ def"                                                                         │

│                                                                              │

│     let str2 =                                                               │

│         "abc\                                                                │

│ def"                                                                         │

│                                                                              │

│     let str3 =                                                               │

│         $"1{                                                                 │

│             1                                                                │

│         }1"                                                                  │

│                                                                              │

│     let str4 =                                                               │

│         $"1{({|                                                              │

│             a = 1                                                            │

│         |}).a}1"                                                             │

│                                                                              │

│     let str5 =                                                               │

│         "abc \                                                               │

│             def"                                                             │

│                                                                              │

│     let x =                                                                  │

│         match '"' with                                                       │

│         | '"' -> true                                                        │

│         | _ -> false                                                         │

│                                                                              │

│     let long1 = """a"""                                                      │

│                                                                              │

│     let long2 =                                                              │

│         """                                                                  │

│ a                                                                            │

│ """                                                                          │

│                                                                              │

│     type Position =                                                          │

│         {                                                                    │

│ #if INTERACTIVE                                                              │

│             line : string                                                    │

│ #else                                                                        │

│             line : int                                                       │

│ #endif                                                                       │

│             column : int                                                     │

│         }                                                                    │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



example1

|> parse Md

|> Result.toOption

|> Option.get

|> (formatBlocks Md)

|> _equal "# TestModule (TestNamespace)



## ParserLibrary



### TextInput

"



╭─[ 329.35ms - stdout ]────────────────────────────────────────────────────────╮

│ # TestModule (TestNamespace)                                                 │

│                                                                              │

│ ## ParserLibrary                                                             │

│                                                                              │

│ ### TextInput                                                                │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



example1

|> parse Spi

|> Result.toOption

|> Option.get

|> (formatBlocks Spi)

|> _equal "// // # TestModule (TestNamespace)



// // ## ParserLibrary



inl x = 0i32



// // ### TextInput

"



╭─[ 297.08ms - stdout ]────────────────────────────────────────────────────────╮

│ // // # TestModule (TestNamespace)                                           │

│                                                                              │

│ // // ## ParserLibrary                                                       │

│                                                                              │

│ inl x = 0i32                                                                 │

│                                                                              │

│ // // ### TextInput                                                          │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## parseDibCode                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parseDibCode output file = async {

    let getLocals () = $"output: {output} / file: {file} / {getLocals ()}"

    trace Debug (fun () -> "parseDibCode") getLocals

    let! input = file |> FileSystem.readAllTextAsync

    match parse output input with

    | Result.Ok blocks -> return blocks |> formatBlocks output

    | Result.Error msg -> return failwith msg

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## writeDibCode                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline writeDibCode output path = async {

    let getLocals () = $"output: {output} / path: {path} / {getLocals ()}"

    trace Debug (fun () -> "writeDibCode") getLocals

    let! result = parseDibCode output path

    let outputPath = path |> String.replace ".dib" $".{output |> string |> 

String.toLower}"

    do! result |> FileSystem.writeAllTextAsync outputPath

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Arguments                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

[[<RequireQualifiedAccess>]]

type Arguments =

    | [[<Argu.ArguAttributes.MainCommand; Argu.ArguAttributes.Mandatory>]]

        File of file : string * Output



    interface Argu.IArgParserTemplate with

        member s.Usage =

            match s with

            | File _ -> nameof File



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Argu.ArgumentParser.Create<Arguments>().PrintUsage ()



╭─[ 140.75ms - return value ]──────────────────────────────────────────────────╮

│ USAGE: dotnet.exe [--help] <file> <fs|md|spi|spir>                           │

│                                                                              │

│ FILE:                                                                        │

│                                                                              │

│     <file> <fs|md|spi|spir>                                                  │

│                           File                                               │

│                                                                              │

│ OPTIONS:                                                                     │

│                                                                              │

│     --help                display this list of options.                      │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## main                                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let main args =

    let argsMap = args |> Runtime.parseArgsMap<Arguments>



    let files =

        argsMap.[[nameof Arguments.File]]

        |> List.map (function

            | Arguments.File (path, output) -> path, output

        )



    files

    |> List.map (fun (path, output) -> path |> writeDibCode output)

    |> Async.Parallel

    |> Async.Ignore

    |> Async.runWithTimeout 30000

    |> function

        | Some () -> 0

        | None -> 1



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let args =

    System.Environment.GetEnvironmentVariable "ARGS"

    |> Runtime.splitArgs

    |> Seq.toArray



match args with

| [[||]] -> 0

| args -> if main args = 0 then 0 else failwith "main failed"



╭─[ 169.01ms - return value ]──────────────────────────────────────────────────╮

│ <div class="dni-plaintext"><pre>0</pre></div><style>                         │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 183.89ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] writeDibCode / output: Fs / path: DibParser.dib          │

│ 00:00:00 #2 [Debug] parseDibCode / output: Fs / file: DibParser.dib          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook DibParser.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 366564 bytes to DibParser.dib.html

00:00:00 #1 [Debug] persistCodeProject / packages: [Argu; FParsec; FSharp.Control.AsyncSeq; ... ] / modules: [lib/fsharp/Common.fs; lib/fsharp/CommonFSharp.fs; lib/fsharp/Async.fs; ... ] / name: DibParser / code.Length: 9066

00:00:00 #2 [Debug] buildProject / fullPath: C:\home\git\polyglot\target\polyglot\builder\DibParser\DibParser.fsproj

00:00:00 #3 [Debug] executeAsync / options: { Command =

   "dotnet publish "C:\home\git\polyglot\target/polyglot/builder\DibParser\DibParser.fsproj" --configuration Release --output "C:\home\git\polyglot\apps\parser\dist" --runtime linux-x64"

  WorkingDirectory =

   Some "C:\home\git\polyglot\target\polyglot\builder\DibParser"

  CancellationToken = None

  OnLine = None }

00:00:00 #4 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET

00:00:01 #5 [Verbose] >   Determining projects to restore...

00:00:02 #6 [Verbose] >   Restored C:\home\git\polyglot\target\polyglot\builder\DibParser\DibParser.fsproj (in 464 ms).

00:00:10 #7 [Verbose] >   DibParser -> C:\home\git\polyglot\target\polyglot\builder\DibParser\bin\Release\net8.0\linux-x64\DibParser.dll

00:00:12 #8 [Verbose] >   DibParser -> C:\home\git\polyglot\apps\parser\dist\

00:00:12 #9 [Debug] executeAsync / exitCode: 0 / output.Length: 341

00:00:12 #10 [Debug] executeAsync / options: { Command =

   "dotnet publish "C:\home\git\polyglot\target/polyglot/builder\DibParser\DibParser.fsproj" --configuration Release --output "C:\home\git\polyglot\apps\parser\dist" --runtime win-x64"

  WorkingDirectory =

   Some "C:\home\git\polyglot\target\polyglot\builder\DibParser"

  CancellationToken = None

  OnLine = None }

00:00:12 #11 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET

00:00:13 #12 [Verbose] >   Determining projects to restore...

00:00:14 #13 [Verbose] >   Restored C:\home\git\polyglot\target\polyglot\builder\DibParser\DibParser.fsproj (in 481 ms).

00:00:22 #14 [Verbose] >   DibParser -> C:\home\git\polyglot\target\polyglot\builder\DibParser\bin\Release\net8.0\win-x64\DibParser.dll

00:00:27 #15 [Verbose] >   DibParser -> C:\home\git\polyglot\apps\parser\dist\

00:00:27 #16 [Debug] executeAsync / exitCode: 0 / output.Length: 339



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # JsonParser (Polyglot)                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs

#!import Parser.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Parser =



    open Common



    /// ### TextInput



    type Position =

        {

            line : int

            column : int

        }



    let initialPos = { line = 0; column = 0 }



    let inline incrCol (pos : Position) =

        { pos with column = pos.column + 1 }



    let inline incrLine pos =

        { line = pos.line + 1; column = 0 }



    type InputState =

        {

            lines : string[[]]

            position : Position

        }



    let inline fromStr str =

        {

            lines =

                if str |> String.IsNullOrEmpty

                then [[||]]

                else str |> String.splitString [[| "\r\n"; "\n" |]]

            position = initialPos

        }



   ...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common

open Parser



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## JsonParser                                                                │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

(*

// --------------------------------

JSON spec from http://www.json.org/

// --------------------------------



The JSON spec is available at [[json.org]](http://www.json.org/). I'll paraphase

it here:



* A `value` can be a `string` or a `number` or a `bool` or `null` or an `object`

or an `array`.

  * These structures can be nested.

* A `string` is a sequence of zero or more Unicode characters, wrapped in double

quotes, using backslash escapes.

* A `number` is very much like a C or Java number, except that the octal and 

hexadecimal formats are not used.

* A `boolean` is the literal `true` or `false`

* A `null` is the literal `null`

* An `object` is an unordered set of name/value pairs.

  * An object begins with { (left brace) and ends with } (right brace).

  * Each name is followed by : (colon) and the name/value pairs are separated by

, (comma).

* An `array` is an ordered collection of values.

  * An array begins with [[ (left bracket) and ends with ]] (right bracket).

  * Values are separated by , (comma).

* Whitespace can be inserted between any pair of tokens.



*)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline parserEqual (expected : ParseResult<'a>) (actual : ParseResult<'a * 

Input>) =

    match actual, expected with

    | Success (_actual, _), Success _expected ->

        printResult actual

        _actual |> _equal _expected

    | Failure (l1, e1, p1), Failure (l2, e2, p2) when l1 = l2 && e1 = e2 && p1 =

p2 ->

        printResult actual

    | _ ->

        printfn $"Actual: {actual}"

        printfn $"Expected: {expected}"

        failwith "Parse failed"

    actual



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### JValue                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type JValue =

    | JString of string

    | JNumber of float

    | JBool   of bool

    | JNull

    | JObject of Map<string, JValue>

    | JArray  of JValue list



── fsharp ──────────────────────────────────────────────────────────────────────

let jValue, jValueRef = createParserForwardedToRef<JValue> ()



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jNull                                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jNull =

    pstring "null"

    >>% JNull

    <?> "null"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



jValueRef <|

    choice

        [[

            jNull

        ]]



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jValue "null"

|> parserEqual (Success JNull)



╭─[ 318.32ms - return value ]──────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNull, { lines = [                      │

│ |&quot;null&quot;|]<br/>                  position = { line = 0<br/>         │

│ column = 4 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNull, { lines = [|&quot;null&quot;|]<br/>      │

│ position = { line = 0<br/>               column = 4 }                        │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNull</code></span></summary><div><table><thead> │

│ <tr></tr></thead><tbody></tbody></table></div></deta...                      │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 332.60ms - stdout ]────────────────────────────────────────────────────────╮

│ JNull                                                                        │

│ JNull                                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNull "nulp"

|> parserEqual (

    Failure (

        "null",

        "Unexpected 'p'",

        { currentLine = "nulp"; line = 0; column = 3 }

    )

)



╭─[ 85.61ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure (&quot;null&quot;, &quot;Unexpected      │

│ &#39;p&#39;&quot;, { currentLine = &quot;nulp&quot;<br/>                     │

│ line = 0<br/>                                     column = 3                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>null</pre></div></td></tr><tr><td>Item2</td><td>< │

│ div class="dni-plaintext"><pre>Unexpected                                    │

│ &#39;p&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;nulp&quot;<br/>  line = 0<br/>  column = 3               │

│ }</code></span></summary><div><table><thead><tr></tr></thead...              │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 94.23ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:3 Error parsing null                                              │

│ nulp                                                                         │

│    ^Unexpected 'p'                                                           │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jBool                                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jBool =

    let jtrue =

        pstring "true"

        >>% JBool true

    let jfalse =

        pstring "false"

        >>% JBool false



    jtrue <|> jfalse

    <?> "bool"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



jValueRef <|

    choice

        [[

            jNull

            jBool

        ]]



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jBool "true"

|> parserEqual (Success (JBool true))



╭─[ 71.24ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JBool true, { lines = [                 │

│ |&quot;true&quot;|]<br/>                       position = { line = 0<br/>    │

│ column = 4 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JBool true, { lines = [|&quot;true&quot;|]<br/> │

│ position = { line = 0<br/>               column = 4 }                        │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JBool                                            │

│ true</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr.. │

│ .                                                                            │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 81.03ms - stdout ]─────────────────────────────────────────────────────────╮

│ JBool true                                                                   │

│ JBool                                                                        │

│       Item: True                                                             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jBool "false"

|> parserEqual (Success (JBool false))



╭─[ 85.76ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JBool false, { lines = [                │

│ |&quot;false&quot;|]<br/>                        position = { line = 0<br/>  │

│ column = 5 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JBool false, { lines = [                        │

│ |&quot;false&quot;|]<br/>  position = { line = 0<br/>               column = │

│ 5 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JBool                                            │

│ false</code></span></summary><div><table><thead><tr></tr></thead><tb...      │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 96.12ms - stdout ]─────────────────────────────────────────────────────────╮

│ JBool false                                                                  │

│ JBool                                                                        │

│       Item: False                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jBool "truX"

|> parserEqual (

    Failure (

        "bool",

        "Unexpected 't'",

        { currentLine = "truX"; line = 0; column = 0 }

    )

)



╭─[ 79.64ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure (&quot;bool&quot;, &quot;Unexpected      │

│ &#39;t&#39;&quot;, { currentLine = &quot;truX&quot;<br/>                     │

│ line = 0<br/>                                     column = 0                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>bool</pre></div></td></tr><tr><td>Item2</td><td>< │

│ div class="dni-plaintext"><pre>Unexpected                                    │

│ &#39;t&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;truX&quot;<br/>  line = 0<br/>  column = 0               │

│ }</code></span></summary><div><table><thead><tr></tr></thead...              │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 89.00ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:0 Error parsing bool                                              │

│ truX                                                                         │

│ ^Unexpected 't'                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jUnescapedChar                                                           │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jUnescapedChar =

    satisfy (fun ch -> ch <> '\\' && ch <> '\"') "char"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jUnescapedChar "a"

|> parserEqual (Success 'a')



╭─[ 68.60ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (&#39;a&#39;, { lines = [                │

│ |&quot;a&quot;|]<br/>                position = { line = 0<br/>              │

│ column = 1 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(a, { lines = [|&quot;a&quot;|]<br/>  position = │

│ { line = 0<br/>               column = 1 }                                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>a</pre></div></td></tr><tr><td>Item2</td><td><det │

│ ails class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines │

│ = [|&quot;a&quot;|]<br/...                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 75.41ms - stdout ]─────────────────────────────────────────────────────────╮

│ 'a'                                                                          │

│ a                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jUnescapedChar "\\"

|> parserEqual (

    Failure (

        "char",

        "Unexpected '\\'",

        { currentLine = "\\"; line = 0; column = 0 }

    )

)



╭─[ 49.88ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure (&quot;char&quot;, &quot;Unexpected      │

│ &#39;\&#39;&quot;, { currentLine = &quot;\&quot;<br/>                        │

│ line = 0<br/>                                     column = 0                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>char</pre></div></td></tr><tr><td>Item2</td><td>< │

│ div class="dni-plaintext"><pre>Unexpected                                    │

│ &#39;\&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;\&quot;<br/>  line = 0<br/>  column = 0                  │

│ }</code></span></summary><div><table><thead><tr></tr></thead><tbod...        │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 59.76ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:0 Error parsing char                                              │

│ \                                                                            │

│ ^Unexpected '\'                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jEscapedChar                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jEscapedChar =

    [[

        ("\\\"",'\"')

        ("\\\\",'\\')

        ("\\/",'/')

        ("\\b",'\b')

        ("\\f",'\f')

        ("\\n",'\n')

        ("\\r",'\r')

        ("\\t",'\t')

    ]]

    |> List.map (fun (toMatch, result) ->

        pstring toMatch >>% result

    )

    |> choice

    <?> "escaped char"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jEscapedChar "\\\\"

|> parserEqual (Success '\\')



╭─[ 39.11ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (&#39;\\&#39;, { lines = [               │

│ |&quot;\\&quot;|]<br/>                 position = { line = 0<br/>            │

│ column = 2 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(\, { lines = [|&quot;\\&quot;|]<br/>  position  │

│ = { line = 0<br/>               column = 2 }                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>\</pre></div></td></tr><tr><td>Item2</td><td><det │

│ ails class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines │

│ = [|&quot;\\&quot;...                                                        │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 50.76ms - stdout ]─────────────────────────────────────────────────────────╮

│ '\\'                                                                         │

│ \                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jEscapedChar "\\t"

|> parserEqual (Success '\t')



╭─[ 45.51ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (&#39;\009&#39;, { lines = [             │

│ |&quot;\t&quot;|]<br/>                   position = { line = 0<br/>          │

│ column = 2 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(	, { lines = [|&quot;\t&quot;|]<br/>  position =  │

│ { line = 0<br/>               column = 2 }                                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div class="dni-plaintext"><pre>	                               │

│ </pre></div></td></tr><tr><td>Item2</td><td><details                         │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines = [  │

│ |&quot;\t...                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 54.83ms - stdout ]─────────────────────────────────────────────────────────╮

│ '\009'                                                                       │

│ 	                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jEscapedChar @"\\"

|> parserEqual (Success '\\')



╭─[ 34.83ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (&#39;\\&#39;, { lines = [               │

│ |&quot;\\&quot;|]<br/>                 position = { line = 0<br/>            │

│ column = 2 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(\, { lines = [|&quot;\\&quot;|]<br/>  position  │

│ = { line = 0<br/>               column = 2 }                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>\</pre></div></td></tr><tr><td>Item2</td><td><det │

│ ails class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines │

│ = [|&quot;\\&quot;...                                                        │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 42.19ms - stdout ]─────────────────────────────────────────────────────────╮

│ '\\'                                                                         │

│ \                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jEscapedChar @"\n"

|> parserEqual (Success '\n')



╭─[ 34.65ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (&#39;\010&#39;, { lines = [             │

│ |&quot;<br/>&quot;|]<br/>                   position = { line = 0<br/>       │

│ column = 2 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(<br/>, { lines = [|&quot;<br/>&quot;|]<br/>     │

│ position = { line = 0<br/>               column = 2 }                        │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div class="dni-plaintext"><pre>                              │

│ </pre></div></td></tr><tr><td>Item2</td><td><details                         │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines =    │

│ ...                                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 43.51ms - stdout ]─────────────────────────────────────────────────────────╮

│ '\010'                                                                       │

│                                                                              │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jEscapedChar "a"

|> parserEqual (

    Failure (

        "escaped char",

        "Unexpected 'a'",

        { currentLine = "a"; line = 0; column = 0 }

    )

)



╭─[ 43.01ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure (&quot;escaped char&quot;,               │

│ &quot;Unexpected &#39;a&#39;&quot;, { currentLine = &quot;a&quot;<br/>       │

│ line = 0<br/>                                             column = 0         │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div class="dni-plaintext"><pre>escaped                       │

│ char</pre></div></td></tr><tr><td>Item2</td><td><div                         │

│ class="dni-plaintext"><pre>Unexpected                                        │

│ &#39;a&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;a&quot;<br/>  line = 0<br/>  column = 0                  │

│ }</code></span></summary><div><tab...                                        │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 51.69ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:0 Error parsing escaped char                                      │

│ a                                                                            │

│ ^Unexpected 'a'                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jUnicodeChar                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jUnicodeChar =

    let backslash = pchar '\\'

    let uChar = pchar 'u'

    let hexdigit = anyOf ([[ '0' .. '9' ]] @ [[ 'A' .. 'F' ]] @ [[ 'a' .. 'f' 

]])

    let fourHexDigits = hexdigit .>>. hexdigit .>>. hexdigit .>>. hexdigit



    let inline convertToChar (((h1, h2), h3), h4) =

        let str = $"%c{h1}%c{h2}%c{h3}%c{h4}"

        Int32.Parse (str, Globalization.NumberStyles.HexNumber) |> char



    backslash >>. uChar >>. fourHexDigits

    |>> convertToChar



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jUnicodeChar "\\u263A"

|> parserEqual (Success '☺')



╭─[ 64.85ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (&#39;☺&#39;, { lines = [                │

│ |&quot;\u263A&quot;|]<br/>                position = { line = 0<br/>         │

│ column = 6 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(☺, { lines = [|&quot;\u263A&quot;|]<br/>        │

│ position = { line = 0<br/>               column = 6 }                        │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>☺</pre></div></td></tr><tr><td>Item2</td><td><det │

│ ails class="dni-treeview"><summary><span class="dni-code-hint"><code>{ lines │

│ = [|&quot;\u2...                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 72.75ms - stdout ]─────────────────────────────────────────────────────────╮

│ '☺'                                                                          │

│ ☺                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jString                                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let quotedString =

    let quote = pchar '\"' <?> "quote"

    let jchar = jUnescapedChar <|> jEscapedChar <|> jUnicodeChar



    quote >>. manyChars jchar .>> quote



── fsharp ──────────────────────────────────────────────────────────────────────

let jString =

    quotedString

    |>> JString

    <?> "quoted string"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



jValueRef <|

    choice

        [[

            jNull

            jBool

            jString

        ]]



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jString "\"\""

|> parserEqual (Success (JString ""))



╭─[ 56.18ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JString &quot;&quot;, { lines = [       │

│ |&quot;&quot;&quot;&quot;|]<br/>                       position = { line =   │

│ 0<br/>                                    column = 2 }                       │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JString &quot;&quot;, { lines = [               │

│ |&quot;&quot;&quot;&quot;|]<br/>  position = { line = 0<br/>                 │

│ column = 2 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JString &quot;&quot;</code></span></summary>...  │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 65.93ms - stdout ]─────────────────────────────────────────────────────────╮

│ JString ""                                                                   │

│ JString                                                                      │

│       Item:                                                                  │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jString "\"a\""

|> parserEqual (Success (JString "a"))



╭─[ 56.04ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JString &quot;a&quot;, { lines = [      │

│ |&quot;&quot;a&quot;&quot;|]<br/>                        position = { line = │

│ 0<br/>                                     column = 3 }                      │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JString &quot;a&quot;, { lines = [              │

│ |&quot;&quot;a&quot;&quot;|]<br/>  position = { line = 0<br/>                │

│ column = 3 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JString &quot;a&quot;</code></span></s...        │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 65.64ms - stdout ]─────────────────────────────────────────────────────────╮

│ JString "a"                                                                  │

│ JString                                                                      │

│       Item: a                                                                │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jString "\"ab\""

|> parserEqual (Success (JString "ab"))



╭─[ 45.47ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JString &quot;ab&quot;, { lines = [     │

│ |&quot;&quot;ab&quot;&quot;|]<br/>                         position = { line │

│ = 0<br/>                                      column = 4 }                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JString &quot;ab&quot;, { lines = [             │

│ |&quot;&quot;ab&quot;&quot;|]<br/>  position = { line = 0<br/>               │

│ column = 4 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JString &quot;ab&quot;</code></s...              │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 54.31ms - stdout ]─────────────────────────────────────────────────────────╮

│ JString "ab"                                                                 │

│ JString                                                                      │

│       Item: ab                                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jString "\"ab\\tde\""

|> parserEqual (Success (JString "ab\tde"))



╭─[ 54.74ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JString &quot;ab	de&quot;, { lines = [    │

│ |&quot;&quot;ab\tde&quot;&quot;|]<br/>                            position = │

│ { line = 0<br/>                                         column = 8 }         │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JString &quot;ab	de&quot;, { lines = [            │

│ |&quot;&quot;ab\tde&quot;&quot;|]<br/>  position = { line = 0<br/>           │

│ column = 8 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JString &quo...                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 64.63ms - stdout ]─────────────────────────────────────────────────────────╮

│ JString "ab	de"                                                                │

│ JString                                                                      │

│       Item: ab	de                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jString "\"ab\\u263Ade\""

|> parserEqual (Success (JString "ab☺de"))



╭─[ 44.80ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JString &quot;ab☺de&quot;, { lines = [  │

│ |&quot;&quot;ab\u263Ade&quot;&quot;|]<br/>                                   │

│ position = { line = 0<br/>                                         column =  │

│ 12 }                                                                         │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JString &quot;ab☺de&quot;, { lines = [          │

│ |&quot;&quot;ab\u263Ade&quot;&quot;|]<br/>  position = { line = 0<br/>       │

│ column = 12 }                                                                │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JS...                                            │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 52.26ms - stdout ]─────────────────────────────────────────────────────────╮

│ JString "ab☺de"                                                              │

│ JString                                                                      │

│       Item: ab☺de                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jNumber                                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jNumber =

    let optSign = opt (pchar '-')



    let zero = pstring "0"



    let digitOneNine =

        satisfy (fun ch -> Char.IsDigit ch && ch <> '0') "1-9"



    let digit =

        satisfy Char.IsDigit "digit"



    let point = pchar '.'



    let e = pchar 'e' <|> pchar 'E'



    let optPlusMinus = opt (pchar '-' <|> pchar '+')



    let nonZeroInt =

        digitOneNine .>>. manyChars digit

        |>> fun (first, rest) -> string first + rest



    let intPart = zero <|> nonZeroInt



    let fractionPart = point >>. manyChars1 digit



    let exponentPart = e >>. optPlusMinus .>>. manyChars1 digit



    let inline (|>?) opt f =

        match opt with

        | None -> ""

        | Some x -> f x



    let inline convertToJNumber (((optSign, intPart), fractionPart), expPart) =

        let signStr =

            optSign

            |>? string



        let fractionPartStr =

            fractionPart

            |>? (fun digits -> "." + digits)



        let expPartStr =

            expPart

            |>? fun (optSign, digits) ->

                let sign = optSign |>? string

                "e" + sign + digits



        (signStr + intPart + fractionPartStr + expPartStr)

        |> float

        |> JNumber



    optSign .>>. intPart .>>. opt fractionPart .>>. opt exponentPart

    |>> convertToJNumber

    <?> "number"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



jValueRef <|

    choice

        [[

            jNull

            jBool

            jString

            jNumber

        ]]



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber "123"

|> parserEqual (Success (JNumber 123.0))



╭─[ 92.14ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 123.0, { lines = [              │

│ |&quot;123&quot;|]<br/>                          position = { line = 0<br/>  │

│ column = 3 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 123.0, { lines = [                      │

│ |&quot;123&quot;|]<br/>  position = { line = 0<br/>               column = 3 │

│ }                                                                            │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 123.0</code></span></summary><div><table><thead><tr></tr></the...            │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 103.08ms - stdout ]────────────────────────────────────────────────────────╮

│ JNumber 123.0                                                                │

│ JNumber                                                                      │

│       Item: 123                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber "-123"

|> parserEqual (Success (JNumber -123.0))



╭─[ 65.31ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber -123.0, { lines = [             │

│ |&quot;-123&quot;|]<br/>                           position = { line =       │

│ 0<br/>                                        column = 4 }                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber -123.0, { lines = [                     │

│ |&quot;-123&quot;|]<br/>  position = { line = 0<br/>               column =  │

│ 4 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ -123.0</code></span></summary><div><table><thead><tr></t...                  │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 77.18ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber -123.0                                                               │

│ JNumber                                                                      │

│       Item: -123                                                             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber "123.4"

|> parserEqual (Success (JNumber 123.4))



╭─[ 47.02ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 123.4, { lines = [              │

│ |&quot;123.4&quot;|]<br/>                          position = { line =       │

│ 0<br/>                                       column = 5 }                    │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 123.4, { lines = [                      │

│ |&quot;123.4&quot;|]<br/>  position = { line = 0<br/>               column = │

│ 5 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 123.4</code></span></summary><div><table><thead><tr></tr><...                │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 54.96ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber 123.4                                                                │

│ JNumber                                                                      │

│       Item: 123.4                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber "-123."

|> parserEqual (Success (JNumber -123.0))



╭─[ 43.75ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber -123.0, { lines = [             │

│ |&quot;-123.&quot;|]<br/>                           position = { line =      │

│ 0<br/>                                        column = 4 }                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber -123.0, { lines = [                     │

│ |&quot;-123.&quot;|]<br/>  position = { line = 0<br/>               column = │

│ 4 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ -123.0</code></span></summary><div><table><thead><tr><...                    │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 53.13ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber -123.0                                                               │

│ JNumber                                                                      │

│       Item: -123                                                             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber "00.1"

|> parserEqual (Success (JNumber 0.0))



╭─[ 44.90ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 0.0, { lines = [                │

│ |&quot;00.1&quot;|]<br/>                        position = { line = 0<br/>   │

│ column = 1 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 0.0, { lines = [                        │

│ |&quot;00.1&quot;|]<br/>  position = { line = 0<br/>               column =  │

│ 1 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 0.0</code></span></summary><div><table><thead><tr></tr></thead><tbod...      │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 53.92ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber 0.0                                                                  │

│ JNumber                                                                      │

│       Item: 0                                                                │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let jNumber_ = jNumber .>> spaces1



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "123"

|> parserEqual (Success (JNumber 123.0))



╭─[ 49.77ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 123.0, { lines = [              │

│ |&quot;123&quot;|]<br/>                          position = { line = 1<br/>  │

│ column = 0 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 123.0, { lines = [                      │

│ |&quot;123&quot;|]<br/>  position = { line = 1<br/>               column = 0 │

│ }                                                                            │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 123.0</code></span></summary><div><table><thead><tr></tr></the...            │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 59.64ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber 123.0                                                                │

│ JNumber                                                                      │

│       Item: 123                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "-123"

|> parserEqual (Success (JNumber -123.0))



╭─[ 61.85ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber -123.0, { lines = [             │

│ |&quot;-123&quot;|]<br/>                           position = { line =       │

│ 1<br/>                                        column = 0 }                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber -123.0, { lines = [                     │

│ |&quot;-123&quot;|]<br/>  position = { line = 1<br/>               column =  │

│ 0 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ -123.0</code></span></summary><div><table><thead><tr></t...                  │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 72.35ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber -123.0                                                               │

│ JNumber                                                                      │

│       Item: -123                                                             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "-123."

|> parserEqual (

    Failure (

        "number andThen many1 whitespace",

        "Unexpected '.'",

        { currentLine = "-123."; line = 0; column = 4 }

    )

)



╭─[ 85.67ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure<br/>  (&quot;number andThen many1        │

│ whitespace&quot;, &quot;Unexpected &#39;.&#39;&quot;, { currentLine =        │

│ &quot;-123.&quot;<br/>                                                       │

│ line = 0<br/>                                                                │

│ column = 4                                                                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div class="dni-plaintext"><pre>number andThen many1          │

│ whitespace</pre></div></td></tr><tr><td>Item2</td><td><div                   │

│ class="dni-plaintext"><pre>Unexpected                                        │

│ &#39;.&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;...                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 94.69ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:4 Error parsing number andThen many1 whitespace                   │

│ -123.                                                                        │

│     ^Unexpected '.'                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "123.4"

|> parserEqual (Success (JNumber 123.4))



╭─[ 47.46ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 123.4, { lines = [              │

│ |&quot;123.4&quot;|]<br/>                          position = { line =       │

│ 1<br/>                                       column = 0 }                    │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 123.4, { lines = [                      │

│ |&quot;123.4&quot;|]<br/>  position = { line = 1<br/>               column = │

│ 0 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 123.4</code></span></summary><div><table><thead><tr></tr><...                │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 55.57ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber 123.4                                                                │

│ JNumber                                                                      │

│       Item: 123.4                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "00.4"

|> parserEqual (

    Failure (

        "number andThen many1 whitespace",

        "Unexpected '0'",

        { currentLine = "00.4"; line = 0; column = 1 }

    )

)



╭─[ 41.05ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure<br/>  (&quot;number andThen many1        │

│ whitespace&quot;, &quot;Unexpected &#39;0&#39;&quot;, { currentLine =        │

│ &quot;00.4&quot;<br/>                                                        │

│ line = 0<br/>                                                                │

│ column = 1                                                                   │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div class="dni-plaintext"><pre>number andThen many1          │

│ whitespace</pre></div></td></tr><tr><td>Item2</td><td><div                   │

│ class="dni-plaintext"><pre>Unexpected                                        │

│ &#39;0&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;0...                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 47.87ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:1 Error parsing number andThen many1 whitespace                   │

│ 00.4                                                                         │

│  ^Unexpected '0'                                                             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "123e4"

|> parserEqual (Success (JNumber 1230000.0))



╭─[ 48.87ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 1230000.0, { lines = [          │

│ |&quot;123e4&quot;|]<br/>                              position = { line =   │

│ 1<br/>                                           column = 0 }                │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 1230000.0, { lines = [                  │

│ |&quot;123e4&quot;|]<br/>  position = { line = 1<br/>               column = │

│ 0 }                                                                          │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 1230000.0</code></span></summary><div><tab...                                │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 59.73ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber 1230000.0                                                            │

│ JNumber                                                                      │

│       Item: 1230000                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "123.4e5"

|> parserEqual (Success (JNumber 12340000.0))



╭─[ 48.59ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 12340000.0, { lines = [         │

│ |&quot;123.4e5&quot;|]<br/>                               position = { line  │

│ = 1<br/>                                            column = 0 }             │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 12340000.0, { lines = [                 │

│ |&quot;123.4e5&quot;|]<br/>  position = { line = 1<br/>               column │

│ = 0 }                                                                        │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber 12340000.0</code></span></summary>...    │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 56.25ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber 12340000.0                                                           │

│ JNumber                                                                      │

│       Item: 12340000                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jNumber_ "123.4e-5"

|> parserEqual (Success (JNumber 0.001234))



╭─[ 44.45ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JNumber 0.001234, { lines = [           │

│ |&quot;123.4e-5&quot;|]<br/>                             position = { line = │

│ 1<br/>                                          column = 0 }                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JNumber 0.001234, { lines = [                   │

│ |&quot;123.4e-5&quot;|]<br/>  position = { line = 1<br/>                     │

│ column = 0 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>JNumber                                          │

│ 0.001234</code></span></summary><div><ta...                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 51.31ms - stdout ]─────────────────────────────────────────────────────────╮

│ JNumber 0.001234                                                             │

│ JNumber                                                                      │

│       Item: 0.001234                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jArray                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jArray =

    let left = pchar '[[' .>> spaces

    let right = pchar ']]' .>> spaces

    let comma = pchar ',' .>> spaces

    let value = jValue .>> spaces



    let values = sepBy value comma



    between left values right

    |>> JArray

    <?> "array"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



jValueRef <|

    choice

        [[

            jNull

            jBool

            jString

            jNumber

            jArray

        ]]



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jArray "[[ 1, 2 ]]"

|> parserEqual (Success (JArray [[ JNumber 1.0; JNumber 2.0 ]]))



╭─[ 108.59ms - return value ]──────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success (JArray [JNumber 1.0; JNumber 2.0], {    │

│ lines = [|&quot;[ 1, 2 ]&quot;|]<br/>                                        │

│ position = { line = 1<br/>                                                   │

│ column = 0 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JArray [JNumber 1.0; JNumber 2.0], { lines = [  │

│ |&quot;[ 1, 2 ]&quot;|]<br/>  position = { line = 1<br/>                     │

│ column = 0 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><details class="dni-treeview"><summary><span class="d...      │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 117.14ms - stdout ]────────────────────────────────────────────────────────╮

│ JArray [JNumber 1.0; JNumber 2.0]                                            │

│ JArray                                                                       │

│       Item: FSharpList<JValue>                                               │

│         - Item: 1                                                            │

│         - Item: 2                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jArray "[[ 1, 2, ]]"

|> parserEqual (

    Failure (

        "array",

        "Unexpected ','",

        { currentLine = "[[ 1, 2, ]]"; line = 0; column = 6 }

    )

)



╭─[ 37.35ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure (&quot;array&quot;, &quot;Unexpected     │

│ &#39;,&#39;&quot;, { currentLine = &quot;[ 1, 2, ]&quot;<br/>                │

│ line = 0<br/>                                      column = 6                │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>array</pre></div></td></tr><tr><td>Item2</td><td> │

│ <div class="dni-plaintext"><pre>Unexpected                                   │

│ &#39;,&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;[ 1, 2, ]&quot;<br/>  line = 0<br/>  column = 6          │

│ }</code></span></summary><div><table><thead><t...                            │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 44.21ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:6 Error parsing array                                             │

│ [ 1, 2, ]                                                                    │

│       ^Unexpected ','                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jObject                                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let jObject =

    let left = spaces >>. pchar '{' .>> spaces

    let right = pchar '}' .>> spaces

    let colon = pchar ':' .>> spaces

    let comma = pchar ',' .>> spaces

    let key = quotedString .>> spaces

    let value = jValue .>> spaces



    let keyValue = (key .>> colon) .>>. value

    let keyValues = sepBy keyValue comma



    between left keyValues right

    |>> Map.ofList

    |>> JObject

    <?> "object"



── fsharp ──────────────────────────────────────────────────────────────────────

jValueRef <|

    choice

        [[

            jNull

            jBool

            jString

            jNumber

            jArray

            jObject

        ]]



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jObject """{ "a":1, "b"  :  2 }"""

|> parserEqual (

    Success (

        JObject (

            Map.ofList [[

                "a", JNumber 1.0

                "b", JNumber 2.0

            ]]

        )

    )

)



╭─[ 118.04ms - return value ]──────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success<br/>  (JObject (map [(&quot;a&quot;,     │

│ JNumber 1.0); (&quot;b&quot;, JNumber 2.0)]),<br/>   { lines = [|&quot;{     │

│ &quot;a&quot;:1, &quot;b&quot;  :  2 }&quot;|]<br/>     position = { line =  │

│ 1<br/>                  column = 0 }                                         │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item</td><td><details class="dni-treeview"><summary><span                   │

│ class="dni-code-hint"><code>(JObject (map [(&quot;a&quot;, JNumber 1.0);     │

│ (&quot;b&quot;, JNumber 2.0)]), { lines = [|&quot;{ &quot;a&quot;:1,         │

│ &quot;b&quot;  :  2 }&quot;|]<br/>  position = { line = 1<br/>               │

│ column = 0 }                                                                 │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbod...       │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 125.93ms - stdout ]────────────────────────────────────────────────────────╮

│ JObject (map [("a", JNumber 1.0); ("b", JNumber 2.0)])                       │

│ JObject                                                                      │

│       Item: FSharpMap<String,JValue>                                         │

│         - Key: a                                                             │

│           Value: JNumber                                                     │

│             Item: 1                                                          │

│         - Key: b                                                             │

│           Value: JNumber                                                     │

│             Item: 2                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run jObject """{ "a":1, "b"  :  2, }"""

|> parserEqual (

    Failure (

        "object",

        "Unexpected ','",

        { currentLine = """{ "a":1, "b"  :  2, }"""; line = 0; column = 18 }

    )

)



╭─[ 69.56ms - return value ]───────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Failure (&quot;object&quot;, &quot;Unexpected    │

│ &#39;,&#39;&quot;, { currentLine = &quot;{ &quot;a&quot;:1, &quot;b&quot;  : │

│ 2, }&quot;<br/>                                       line = 0<br/>          │

│ column = 18                                                                  │

│ })</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

│ >Item1</td><td><div                                                          │

│ class="dni-plaintext"><pre>object</pre></div></td></tr><tr><td>Item2</td><td │

│ ><div class="dni-plaintext"><pre>Unexpected                                  │

│ &#39;,&#39;</pre></div></td></tr><tr><td>Item3</td><td><details              │

│ class="dni-treeview"><summary><span class="dni-code-hint"><code>{            │

│ currentLine = &quot;{ &quot;a&quot;:1, &quot;b&quot;  :  2, }&quot;<br/>     │

│ lin...                                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 80.44ms - stdout ]─────────────────────────────────────────────────────────╮

│ Line:0 Col:18 Error parsing object                                           │

│ { "a":1, "b"  :  2, }                                                        │

│                   ^Unexpected ','                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### jValue                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let example1 = """{

    "name" : "Scott",

    "isMale" : true,

    "bday" : {"year":2001, "month":12, "day":25 },

    "favouriteColors" : [["blue", "green"]],

    "emptyArray" : [[]],

    "emptyObject" : {}

}"""

run jValue example1

|> parserEqual (

    Success (

        JObject (

            Map.ofList [[

                "name", JString "Scott"

                "isMale", JBool true

                "bday", JObject (

                    Map.ofList [[

                        "year", JNumber 2001.0

                        "month", JNumber 12.0

                        "day", JNumber 25.0

                    ]]

                )

                "favouriteColors", JArray [[ JString "blue"; JString "green" ]]

                "emptyArray", JArray [[]]

                "emptyObject", JObject Map.empty

            ]]

        )

    )

)



╭─[ 242.14ms - return value ]──────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success<br/>  (JObject<br/>     (map<br/>        │

│ [(&quot;bday&quot;,<br/>          JObject<br/>            (map<br/>          │

│ [(&quot;day&quot;, JNumber 25.0); (&quot;month&quot;, JNumber 12.0);<br/>    │

│ (&quot;year&quot;, JNumber 2001.0)])); (&quot;emptyArray&quot;, JArray [     │

│ ]);<br/>         (&quot;emptyObject&quot;, JObject (map []));<br/>           │

│ (&quot;favouriteColors&quot;,                                                │

│ ...</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><t │

│ d>Item</td><td><details class="dni-treeview"><summary><span                  │

│ class="dni-code-hint"><code>(JObject<br/>  (map<br/>     [                   │

│ (&quot;bday&quot;,<br/>       JObject<br/>         (map<br/>            [    │

│ (...                                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 254.05ms - stdout ]────────────────────────────────────────────────────────╮

│ JObject                                                                      │

│   (map                                                                       │

│      [("bday",                                                               │

│        JObject                                                               │

│          (map                                                                │

│             [("day", JNumber 25.0); ("month", JNumber 12.0);                 │

│              ("year", JNumber 2001.0)])); ("emptyArray", JArray []);         │

│       ("emptyObject", JObject (map []));                                     │

│       ("favouriteColors", JArray [JString "blue"; JString "green"]);         │

│       ("isMale", JBool true); ("name", JString "Scott")])                    │

│ JObject                                                                      │

│       Item: FSharpMap<String,JValue>                                         │

│         - Key: bday                                                          │

│           Value: JObject                                                     │

│             Item: FSharpMap<String,JValue>                                   │

│               - Key: day                                                     │

│                 Value: JNumber 25.0                                          │

│               - Key: month                                                   │

│                 Value: JNumber 12.0                                          │

│               - Key: year                                                    │

│                 Value: JNumber 2001.0                                        │

│         - Key: emptyArray                                                    │

│           Value: JArray                                                      │

│             Item: FSharpList<JValue>                                         │

│                                                                              │

│         - Key: emptyObject                                                   │

│           Value: JObject                                                     │

│             Item: FSharpMap<String,JValue>                                   │

│                                                                              │

│         - Key: favouriteColors                                               │

│           Value: JArray                                                      │

│             Item: FSharpList<JValue>                                         │

│               - Item: blue                                                   │

│               - Item: green                                                  │

│         - Key: isMale                                                        │

│           Value: JBool                                                       │

│             Item: True                                                       │

│         - Key: name                                                          │

│           Value: JString                                                     │

│             Item: Scott                                                      │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let example2 = """{"widget": {

    "debug": "on",

    "window": {

        "title": "Sample Konfabulator Widget",

        "name": "main_window",

        "width": 500,

        "height": 500

    },

    "image": {

        "src": "Images/Sun.png",

        "name": "sun1",

        "hOffset": 250,

        "vOffset": 250,

        "alignment": "center"

    },

    "text": {

        "data": "Click Here",

        "size": 36,

        "style": "bold",

        "name": "text1",

        "hOffset": 250,

        "vOffset": 100,

        "alignment": "center",

        "onMouseUp": "sun1.opacity = (sun1.opacity / 100) * 90;"

    }

}}"""



run jValue example2

|> parserEqual (

    Success (

        JObject (

            Map.ofList [[

                "widget", JObject (

                    Map.ofList [[

                        "debug", JString "on"

                        "window", JObject (

                            Map.ofList [[

                                "title", JString "Sample Konfabulator Widget"

                                "name", JString "main_window"

                                "width", JNumber 500.0

                                "height", JNumber 500.0

                            ]]

                        )

                        "image", JObject (

                            Map.ofList [[

                                "src", JString "Images/Sun.png"

                                "name", JString "sun1"

                                "hOffset", JNumber 250.0

                                "vOffset", JNumber 250.0

                                "alignment", JString "center"

                            ]]

                        )

                        "text", JObject (

                            Map.ofList [[

                                "data", JString "Click Here"

                                "size", JNumber 36.0

                                "style", JString "bold"

                                "name", JString "text1"

                                "hOffset", JNumber 250.0

                                "vOffset", JNumber 100.0

                                "alignment", JString "center"

                                "onMouseUp", JString "sun1.opacity = 

(sun1.opacity / 100) * 90;"

                            ]]

                        )

                    ]]

                )

            ]]

        )

    )

)



╭─[ 484.01ms - return value ]──────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success<br/>  (JObject<br/>     (map<br/>        │

│ [(&quot;widget&quot;,<br/>          JObject<br/>            (map<br/>        │

│ [(&quot;debug&quot;, JString &quot;on&quot;);<br/>                           │

│ (&quot;image&quot;,<br/>                 JObject<br/>                        │

│ (map<br/>                      [(&quot;alignment&quot;, JString              │

│ &quot;center&quot;);<br/>                                                    │

│ (&quot;hOffset&quot;...</code></span></summary><div><table><thead><tr></tr>< │

│ /thead><tbody><tr><td>Item</td><td><details                                  │

│ class="dni-treeview"><summary><span                                          │

│ class="dni-code-hint"><code>(JObject<br/>  (map<br/>     [                   │

│ (&quot;widget&quot;,<br/>       JObject<br/>         (map<br/>      ...      │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 493.81ms - stdout ]────────────────────────────────────────────────────────╮

│ JObject                                                                      │

│   (map                                                                       │

│      [("widget",                                                             │

│        JObject                                                               │

│          (map                                                                │

│             [("debug", JString "on");                                        │

│              ("image",                                                       │

│               JObject                                                        │

│                 (map                                                         │

│                    [("alignment", JString "center"); ("hOffset", JNumber     │

│ 250.0);                                                                      │

│                     ("name", JString "sun1"); ("src", JString                │

│ "Images/Sun.png");                                                           │

│                     ("vOffset", JNumber 250.0)]));                           │

│              ("text",                                                        │

│               JObject                                                        │

│                 (map                                                         │

│                    [("alignment", JString "center");                         │

│                     ("data", JString "Click Here"); ("hOffset", JNumber      │

│ 250.0);                                                                      │

│                     ("name", JString "text1");                               │

│                     ("onMouseUp",                                            │

│                      JString "sun1.opacity = (sun1.opacity / 100) * 90;");   │

│                     ("size", JNumber 36.0); ("style", JString "bold");       │

│                     ("vOffset", JNumber 100.0)]));                           │

│              ("window",                                                      │

│               JObject                                                        │

│                 (map                                                         │

│                    [("height", JNumber 500.0); ("name", JString              │

│ "main_window");                                                              │

│                     ("title", JString "Sample Konfabulator Widget");         │

│                     ("width", JNumber 500.0)]))]))])                         │

│ JObject                                                                      │

│       Item: FSharpMap<String,JValue>                                         │

│         - Key: widget                                                        │

│           Value: JObject                                                     │

│             Item: FSharpMap<String,JValue>                                   │

│               - Key: debug                                                   │

│                 Value: JString "on"                                          │

│               - Key: image                                                   │

│                 Value: JObject                                               │

│   (map                                                                       │

│      [("alignment", JString "center"); ("hOffset", JNumber 250.0);           │

│       ("name", JString "sun1"); ("src", JString "Images/Sun.png");           │

│       ("vOffset", JNumber 250.0)])                                           │

│               - Key: text                                                    │

│                 Value: JObject                                               │

│   (map                                                                       │

│      [("alignment", JString "center"); ("data", JString "Click Here");       │

│       ("hOffset", JNumber 250.0); ("name", JString "text1");                 │

│       ("onMouseUp", JString "sun1.opacity = (sun1.opacity / 100) * 90;");    │

│       ("size", JNumber 36.0); ("style", JString "bold");                     │

│       ("vOffset", JNumber 100.0)])                                           │

│               - Key: window                                                  │

│                 Value: JObject                                               │

│   (map                                                                       │

│      [("height", JNumber 500.0); ("name", JString "main_window");            │

│       ("title", JString "Sample Konfabulator Widget"); ("width", JNumber     │

│ 500.0)])                                                                     │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let example3 = """{

  "string": "Hello, \"World\"!",

  "escapedString": "This string contains \\/\\\\\\b\\f\\n\\r\\t\\\"\\'",

  "number": 42,

  "scientificNumber": 3.14e-10,

  "boolean": true,

  "nullValue": null,

  "array": [[1, 2, 3, 4, 5]],

  "unicodeString1": "프리마",

  "unicodeString2": "\u0048\u0065\u006C\u006C\u006F, 

\u0022\u0057\u006F\u0072\u006C\u0064\u0022!",

  "specialCharacters": "!@#$%^&*()",

  "emptyArray": [[]],

  "emptyObject": {},

  "nestedArrays": [[[[1, 2, 3]], [[4, 5, 6]]]],

  "object": {

    "nestedString": "Nested Value",

    "nestedNumber": 3.14,

    "nestedBoolean": false,

    "nestedNull": null,

    "nestedArray": [["a", "b", "c"]],

    "nestedObject": {

      "nestedProperty": "Nested Object Value"

    }

  },

  "nestedObjects": [[

    {"name": "Alice", "age": 25},

    {"name": "Bob", "age": 30}

  ]]

}"""

run jValue example3

|> parserEqual (

    Success (

        JObject (

            Map.ofList [[

                "string", JString @"Hello, ""World""!"

                "escapedString", JString @"This string contains 

\/\\\b\f\n\r\t\""\'"

                "number", JNumber 42.0

                "scientificNumber", JNumber 3.14e-10

                "boolean", JBool true

                "nullValue", JNull

                "array", JArray [[

                    JNumber 1.0; JNumber 2.0; JNumber 3.0; JNumber 4.0; JNumber 

5.0

                ]]

                "unicodeString1", JString "프리마"

                "unicodeString2", JString @"Hello, ""World""!"

                "specialCharacters", JString "!@#$%^&*()"

                "emptyArray", JArray [[]]

                "emptyObject", JObject Map.empty

                "nestedArrays", JArray [[

                    JArray [[ JNumber 1.0; JNumber 2.0; JNumber 3.0 ]]

                    JArray [[ JNumber 4.0; JNumber 5.0; JNumber 6.0 ]]

                ]]

                "object", JObject (

                    Map.ofList [[

                        "nestedString", JString "Nested Value"

                        "nestedNumber", JNumber 3.14

                        "nestedBoolean", JBool false

                        "nestedNull", JNull

                        "nestedArray", JArray [[JString "a"; JString "b"; 

JString "c"]]

                        "nestedObject", JObject (

                            Map.ofList [[

                                "nestedProperty", JString "Nested Object Value"

                            ]]

                        )

                    ]]

                )

                "nestedObjects", JArray [[

                  JObject (Map.ofList [[ "name", JString "Alice"; "age", JNumber

25.0 ]])

                  JObject (Map.ofList [[ "name", JString "Bob"; "age", JNumber 

30.0 ]])

                ]]

            ]]

        )

    )

)



╭─[ 685.14ms - return value ]──────────────────────────────────────────────────╮

│ <details open="open" class="dni-treeview"><summary><span                     │

│ class="dni-code-hint"><code>Success<br/>  (JObject<br/>     (map<br/>        │

│ [(&quot;array&quot;,<br/>          JArray<br/>            [JNumber 1.0;      │

│ JNumber 2.0; JNumber 3.0; JNumber 4.0; JNumber 5.0]);<br/>                   │

│ (&quot;boolean&quot;, JBool true); (&quot;emptyArray&quot;, JArray []);<br/> │

│ (&quot;emptyObject&quot;, JObject (map []));<br/>                            │

│ (&quot;escapedString&quot;, JString &quot;This                               │

│ s...</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr>< │

│ td>Item</td><td><details class="dni-treeview"><summary><span                 │

│ class="dni-code-hint"><code>(JObject<br/>  (map<br/>     [                   │

│ (&quot;array&quot;,<br/>       JArray [JNumber 1.0; JNumber 2.0; JNumber     │

│ 3.0; JNumber 4.0; J...                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 695.71ms - stdout ]────────────────────────────────────────────────────────╮

│ JObject                                                                      │

│   (map                                                                       │

│      [("array",                                                              │

│        JArray [JNumber 1.0; JNumber 2.0; JNumber 3.0; JNumber 4.0; JNumber   │

│ 5.0]);                                                                       │

│       ("boolean", JBool true); ("emptyArray", JArray []);                    │

│       ("emptyObject", JObject (map []));                                     │

│       ("escapedString", JString "This string contains \/\\\b\f\n\r\t\"\'");  │

│       ("nestedArrays",                                                       │

│        JArray                                                                │

│          [JArray [JNumber 1.0; JNumber 2.0; JNumber 3.0];                    │

│           JArray [JNumber 4.0; JNumber 5.0; JNumber 6.0]]);                  │

│       ("nestedObjects",                                                      │

│        JArray                                                                │

│          [JObject (map [("age", JNumber 25.0); ("name", JString "Alice")]);  │

│           JObject (map [("age", JNumber 30.0); ("name", JString "Bob")])]);  │

│       ("nullValue", JNull); ("number", JNumber 42.0); ...])                  │

│ JObject                                                                      │

│       Item: FSharpMap<String,JValue>                                         │

│         - Key: array                                                         │

│           Value: JArray                                                      │

│             Item: FSharpList<JValue>                                         │

│               - Item: 1                                                      │

│               - Item: 2                                                      │

│               - Item: 3                                                      │

│               - Item: 4                                                      │

│               - Item: 5                                                      │

│         - Key: boolean                                                       │

│           Value: JBool                                                       │

│             Item: True                                                       │

│         - Key: emptyArray                                                    │

│           Value: JArray                                                      │

│             Item: FSharpList<JValue>                                         │

│                                                                              │

│         - Key: emptyObject                                                   │

│           Value: JObject                                                     │

│             Item: FSharpMap<String,JValue>                                   │

│                                                                              │

│         - Key: escapedString                                                 │

│           Value: JString                                                     │

│             Item: This string contains \/\\\b\f\n\r\t\"\'                    │

│         - Key: nestedArrays                                                  │

│           Value: JArray                                                      │

│             Item: FSharpList<JValue>                                         │

│               - Item: [ JNumber 1.0, JNumber 2.0, JNumber 3.0 ]              │

│               - Item: [ JNumber 4.0, JNumber 5.0, JNumber 6.0 ]              │

│         - Key: nestedObjects                                                 │

│           Value: JArray                                                      │

│             Item: FSharpList<JValue>                                         │

│               - Item: [ [age, JNumber 25.0], [name, JString "Alice"] ]       │

│               - Item: [ [age, JNumber 30.0], [name, JString "Bob"] ]         │

│         - Key: nullValue                                                     │

│           Value: JNull                                                       │

│         - Key: number                                                        │

│           Value: JNumber                                                     │

│             Item: 42                                                         │

│         - Key: object                                                        │

│           Value: JObject                                                     │

│             Item: FSharpMap<String,JValue>                                   │

│               - Key: nestedArray                                             │

│                 Value: JArray [JString "a"; JString "b"; JString "c"]        │

│               - Key: nestedBoolean                                           │

│                 Value: JBool false                                           │

│               - Key: nestedNull                                              │

│                 Value: JNull                                                 │

│               - Key: nestedNumber                                            │

│                 Value: JNumber 3.14                                          │

│               - Key: nestedObject                                            │

│                 Value: JObject (map [("nestedProperty", JString "Nested      │

│ Object Value")])                                                             │

│               - Key: nestedString                                            │

│                 Value: JString "Nested Value"                                │

│         - Key: scientificNumber                                              │

│           Value: JNumber                                                     │

│             Item: 3.14E-10                                                   │

│         - Key: specialCharacters                                             │

│           Value: JString                                                     │

│             Item: !@#$%^&*()                                                 │

│         - Key: string                                                        │

│           Value: JString                                                     │

│             Item: Hello, "World"!                                            │

│         - Key: unicodeString1                                                │

│           Value: JString                                                     │

│             Item: 프리마                                                     │

│         - Key: unicodeString2                                                │

│           Value: JString                                                     │

│             Item: Hello, "World"!                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook JsonParser.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 503769 bytes to JsonParser.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Parser (Polyglot)                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### TextInput                                                                │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type Position =

    {

        line : int

        column : int

    }



── fsharp ──────────────────────────────────────────────────────────────────────

let initialPos = { line = 0; column = 0 }



── fsharp ──────────────────────────────────────────────────────────────────────

let inline incrCol (pos : Position) =

    { pos with column = pos.column + 1 }



── fsharp ──────────────────────────────────────────────────────────────────────

let inline incrLine pos =

    { line = pos.line + 1; column = 0 }



── fsharp ──────────────────────────────────────────────────────────────────────

type InputState =

    {

        lines : string[[]]

        position : Position

    }



── fsharp ──────────────────────────────────────────────────────────────────────

let inline fromStr str =

    {

        lines =

            if str |> String.IsNullOrEmpty

            then [[||]]

            else str |> String.splitString [[| "\r\n"; "\n" |]]

        position = initialPos

    }



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



fromStr "" |> _equal {

    lines = [[||]]

    position = { line = 0; column = 0 }

}



╭─[ 58.48ms - stdout ]─────────────────────────────────────────────────────────╮

│ InputState                                                                   │

│       lines: [  ]                                                            │

│       position: Position                                                     │

│         line: 0                                                              │

│         column: 0                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



fromStr "Hello \n World" |> _equal {

    lines = [[| "Hello "; " World" |]]

    position = { line = 0; column = 0 }

}



╭─[ 32.45ms - stdout ]─────────────────────────────────────────────────────────╮

│ InputState                                                                   │

│       lines: [ Hello ,  World ]                                              │

│       position: Position                                                     │

│         line: 0                                                              │

│         column: 0                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline currentLine inputState =

    let linePos = inputState.position.line

    if linePos < inputState.lines.Length

    then inputState.lines.[[linePos]]

    else "end of file"



── fsharp ──────────────────────────────────────────────────────────────────────

let inline nextChar input =

    let linePos = input.position.line

    let colPos = input.position.column



    if linePos >= input.lines.Length

    then input, None

    else

        let currentLine = currentLine input

        if colPos < currentLine.Length then

            let char = currentLine.[[colPos]]

            let newPos = incrCol input.position

            let newState = { input with position = newPos }

            newState, Some char

        else

            let char = '\n'

            let newPos = incrLine input.position

            let newState = { input with position = newPos }

            newState, Some char



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let newInput, charOpt = fromStr "Hello World" |> nextChar



newInput |> _equal {

    lines = [[| "Hello World" |]]

    position = { line = 0; column = 1 }

}

charOpt |> _equal (Some 'H')



╭─[ 49.22ms - stdout ]─────────────────────────────────────────────────────────╮

│ InputState                                                                   │

│       lines: [ Hello World ]                                                 │

│       position: Position                                                     │

│         line: 0                                                              │

│         column: 1                                                            │

│ FSharpOption<Char>                                                           │

│       Value: H                                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let newInput, charOpt = fromStr "Hello\n\nWorld" |> nextChar



newInput |> _equal {

    lines = [[| "Hello"; ""; "World" |]]

    position = { line = 0; column = 1 }

}

charOpt |> _equal (Some 'H')



╭─[ 33.08ms - stdout ]─────────────────────────────────────────────────────────╮

│ InputState                                                                   │

│       lines: [ Hello, , World ]                                              │

│       position: Position                                                     │

│         line: 0                                                              │

│         column: 1                                                            │

│ FSharpOption<Char>                                                           │

│       Value: H                                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### Parser                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type Input = InputState

type ParserLabel = string

type ParserError = string



type ParserPosition =

    {

        currentLine : string

        line : int

        column : int

    }



type ParseResult<'a> =

    | Success of 'a

    | Failure of ParserLabel * ParserError * ParserPosition



type Parser<'a> =

    {

        label : ParserLabel

        parseFn : Input -> ParseResult<'a * Input>

    }



── fsharp ──────────────────────────────────────────────────────────────────────

let inline printResult result =

    match result with

    | Success (value, input) ->

        printfn $"%A{value}"

    | Failure (label, error, parserPos) ->

        let errorLine = parserPos.currentLine

        let colPos = parserPos.column

        let linePos = parserPos.line

        let failureCaret = $"{' ' |> string |> String.replicate colPos}^{error}"

        printfn $"Line:%i{linePos} Col:%i{colPos} Error parsing 

%s{label}\n%s{errorLine}\n%s{failureCaret}"



── fsharp ──────────────────────────────────────────────────────────────────────

let inline runOnInput parser input =

    parser.parseFn input



── fsharp ──────────────────────────────────────────────────────────────────────

let inline run parser inputStr =

    runOnInput parser (fromStr inputStr)



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parserPositionFromInputState (inputState : Input) =

    {

        currentLine = currentLine inputState

        line = inputState.position.line

        column = inputState.position.column

    }



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getLabel parser =

    parser.label



── fsharp ──────────────────────────────────────────────────────────────────────

let inline setLabel parser newLabel =

    {

        label = newLabel

        parseFn = fun input ->

            match parser.parseFn input with

            | Success s -> Success s

            | Failure (oldLabel, err, pos) -> Failure (newLabel, err, pos)

    }



── fsharp ──────────────────────────────────────────────────────────────────────

let (<?>) = setLabel



── fsharp ──────────────────────────────────────────────────────────────────────

let inline satisfy predicate label =

    {

        label = label

        parseFn = fun input ->

            let remainingInput, charOpt = nextChar input

            match charOpt with

            | None ->

                let err = "No more input"

                let pos = parserPositionFromInputState input

                Failure (label, err, pos)

            | Some first ->

                if predicate first

                then Success (first, remainingInput)

                else

                    let err = $"Unexpected '%c{first}'"

                    let pos = parserPositionFromInputState input

                    Failure (label, err, pos)

    }



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = satisfy (fun c -> c = 'H') "H"

runOnInput parser input |> _equal (

    Success (

        'H',

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 1 }

        }

    )

)



╭─[ 35.81ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - H                                                        │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 1                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "World"

let parser = satisfy (fun c -> c = 'H') "H"

runOnInput parser input |> _equal (

    Failure (

        "H",

        "Unexpected 'W'",

        {

            currentLine = "World"

            line = 0

            column = 0

        }

    )

)



╭─[ 28.56ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: H                                                               │

│       Item2: Unexpected 'W'                                                  │

│       Item3: ParserPosition                                                  │

│         currentLine: World                                                   │

│         line: 0                                                              │

│         column: 0                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline bindP f p =

    {

        label = "unknown"

        parseFn = fun input ->

            match runOnInput p input with

            | Failure (label, err, pos) -> Failure (label, err, pos)

            | Success (value1, remainingInput) -> runOnInput (f value1) 

remainingInput

    }



── fsharp ──────────────────────────────────────────────────────────────────────

let inline (>>=) p f = bindP f p



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = parser >>= fun c -> satisfy (fun c -> c = 'e') "e"

runOnInput parser2 input |> _equal (

    Success (

        'e',

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 2 }

        }

    )

)



╭─[ 46.07ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - e                                                        │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 2                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "World"

let parser = satisfy (fun c -> c = 'W') "W"

let parser2 = parser >>= fun c -> satisfy (fun c -> c = 'e') "e"

runOnInput parser2 input |> _equal (

    Failure (

        "e",

        "Unexpected 'o'",

        {

            currentLine = "World"

            line = 0

            column = 1

        }

    )

)



╭─[ 43.79ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: e                                                               │

│       Item2: Unexpected 'o'                                                  │

│       Item3: ParserPosition                                                  │

│         currentLine: World                                                   │

│         line: 0                                                              │

│         column: 1                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline returnP x =

    {

        label = $"%A{x}"

        parseFn = fun input -> Success (x, input)

    }



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = returnP "Hello"

runOnInput parser input |> _equal (

    Success (

        "Hello",

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 0 }

        }

    )

)



╭─[ 44.00ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - Hello                                                    │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 0                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline mapP f =

    bindP (f >> returnP)



── fsharp ──────────────────────────────────────────────────────────────────────

let (<!>) = mapP



── fsharp ──────────────────────────────────────────────────────────────────────

let inline (|>>) x f = f <!> x



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = parser |>> string

runOnInput parser2 input |> _equal (

    Success (

        "H",

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 1 }

        }

    )

)



╭─[ 54.87ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - H                                                        │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 1                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline applyP fP xP =

    fP >>=

        fun f ->

            xP >>=

                fun x ->

                    returnP (f x)



── fsharp ──────────────────────────────────────────────────────────────────────

let (<*>) = applyP



── fsharp ──────────────────────────────────────────────────────────────────────

let inline lift2 f xP yP =

    returnP f <*> xP <*> yP



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = satisfy (fun c -> c = 'e') "e"

let parser3 = lift2 (fun c1 c2 -> string c1 + string c2) parser parser2

runOnInput parser3 input |> _equal (

    Success (

        "He",

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 2 }

        }

    )

)



╭─[ 64.52ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - He                                                       │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 2                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline andThen p1 p2 =

    p1 >>=

        fun p1Result ->

            p2 >>=

                fun p2Result ->

                    returnP (p1Result, p2Result)

    <?> $"{getLabel p1} andThen {getLabel p2}"



── fsharp ──────────────────────────────────────────────────────────────────────

let (.>>.) = andThen



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = satisfy (fun c -> c = 'e') "e"

let parser3 = parser .>>. parser2

runOnInput parser3 input |> _equal (

    Success (

        ('H', 'e'),

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 2 }

        }

    )

)



╭─[ 69.95ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - ( H, e )                                                 │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 2                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline orElse p1 p2 =

    {

        label = $"{getLabel p1} orElse {getLabel p2}"

        parseFn = fun input ->

            match runOnInput p1 input with

            | Success _ as result -> result

            | Failure _ -> runOnInput p2 input

    }



── fsharp ──────────────────────────────────────────────────────────────────────

let (<|>) = orElse



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = satisfy (fun c -> c = 'h') "h"

let parser3 = parser <|> parser2

runOnInput parser3 input |> _equal (

    Success (

        'h',

        {

            lines = [[| "hello" |]]

            position = { line = 0; column = 1 }

        }

    )

)



╭─[ 51.15ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - h                                                        │

│       - InputState                                                           │

│           lines: [ hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 1                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline choice listOfParsers =

    listOfParsers |> List.reduce (<|>)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = satisfy (fun c -> c = 'h') "h"

let parser3 = choice [[ parser; parser2 ]]

runOnInput parser3 input |> _equal (

    Success (

        'h',

        {

            lines = [[| "hello" |]]

            position = { line = 0; column = 1 }

        }

    )

)



╭─[ 47.05ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - h                                                        │

│       - InputState                                                           │

│           lines: [ hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 1                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let rec sequence parserList =

    match parserList with

    | [[]] -> returnP [[]]

    | head :: tail -> (lift2 cons) head (sequence tail)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = satisfy (fun c -> c = 'e') "e"

let parser3 = sequence [[ parser; parser2 ]]

runOnInput parser3 input |> _equal (

    Success (

        [[ 'H'; 'e' ]],

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 2 }

        }

    )

)



╭─[ 73.27ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - [ H, e ]                                                 │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 2                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let rec parseZeroOrMore parser input =

    match runOnInput parser input with

    | Failure (_, _, _) ->

        [[]], input

    | Success (firstValue, inputAfterFirstParse) ->

        let subsequentValues, remainingInput = parseZeroOrMore parser 

inputAfterFirstParse

        firstValue :: subsequentValues, remainingInput



── fsharp ──────────────────────────────────────────────────────────────────────

let inline many parser =

    {

        label = $"many {getLabel parser}"

        parseFn = fun input -> Success (parseZeroOrMore parser input)

    }



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = many parser

runOnInput parser2 input |> _equal (

    Success (

        [[]],

        {

            lines = [[| "hello" |]]

            position = { line = 0; column = 0 }

        }

    )

)



╭─[ 36.93ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - [  ]                                                     │

│       - InputState                                                           │

│           lines: [ hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 0                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline many1 p =

    p >>=

        fun head ->

            many p >>=

                fun tail ->

                    returnP (head :: tail)

    <?> $"many1 {getLabel p}"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = many1 parser

runOnInput parser2 input |> _equal (

    Failure (

        "many1 H",

        "Unexpected 'h'",

        {

            currentLine = "hello"

            line = 0

            column = 0

        }

    )

)



╭─[ 45.45ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: many1 H                                                         │

│       Item2: Unexpected 'h'                                                  │

│       Item3: ParserPosition                                                  │

│         currentLine: hello                                                   │

│         line: 0                                                              │

│         column: 0                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline opt p =

    let some = p |>> Some

    let none = returnP None

    (some <|> none)

    <?> $"opt {getLabel p}"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "hello"

let parser = satisfy (fun c -> c = 'H') "H"

let parser2 = opt parser

runOnInput parser2 input |> _equal (

    Success (

        None,

        {

            lines = [[| "hello" |]]

            position = { line = 0; column = 0 }

        }

    )

)



╭─[ 57.78ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - <null>                                                   │

│       - InputState                                                           │

│           lines: [ hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 0                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline (.>>) p1 p2 =

    p1 .>>. p2

    |> mapP fst



── fsharp ──────────────────────────────────────────────────────────────────────

let inline (>>.) p1 p2 =

    p1 .>>. p2

    |> mapP snd



── fsharp ──────────────────────────────────────────────────────────────────────

let inline between p1 p2 p3 =

    p1 >>. p2 .>> p3



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "[[Hello]]"

let parser =

    between

        (satisfy (fun c -> c = '[[') "[[")

        (many (satisfy (fun c -> [[ 'a' .. 'z' ]] @ [[ 'A' .. 'Z' ]] |> 

List.contains c) "letter"))

        (satisfy (fun c -> c = ']]') "]]")

runOnInput parser input |> _equal (

    Success (

        [[ 'H'; 'e'; 'l'; 'l'; 'o' ]],

        {

            lines = [[| "[[Hello]]" |]]

            position = { line = 0; column = 7 }

        }

    )

)



╭─[ 131.88ms - stdout ]────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - [ H, e, l, l, o ]                                        │

│       - InputState                                                           │

│           lines: [ [Hello] ]                                                 │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 7                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline sepBy1 p sep =

    let sepThenP = sep >>. p

    p .>>. many sepThenP

    |>> fun (p, pList) -> p :: pList



── fsharp ──────────────────────────────────────────────────────────────────────

let inline sepBy p sep =

    sepBy1 p sep <|> returnP [[]]



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello,World"

let parser = sepBy (many (satisfy (fun c -> c <> ',') "not comma")) (satisfy 

(fun c -> c = ',') "comma")

runOnInput parser input |> _equal (

    Success (

        [[ [[ 'H'; 'e'; 'l'; 'l'; 'o' ]]; [[ 'W'; 'o'; 'r'; 'l'; 'd'; '\n' ]] 

]],

        {

            lines = [[| "Hello,World" |]]

            position = { line = 1; column = 0 }

        }

    )

)



╭─[ 134.52ms - stdout ]────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - FSharpList<FSharpList<Char>>                             │

│ [ H, e, l, l, o ]                                                            │

│ [ W, o, r, l, d,                                                             │

│  ]                                                                           │

│       - InputState                                                           │

│           lines: [ Hello,World ]                                             │

│           position: Position                                                 │

│             line: 1                                                          │

│             column: 0                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline pchar charToMatch =

    satisfy ((=) charToMatch) $"%c{charToMatch}"



── fsharp ──────────────────────────────────────────────────────────────────────

let inline anyOf listOfChars =

    listOfChars

    |> List.map pchar

    |> choice

    <?> $"anyOf %A{listOfChars}"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = anyOf [[ 'H'; 'e'; 'l'; 'o' ]] |> many

runOnInput parser input |> _equal (

    Success (

        [[ 'H'; 'e'; 'l'; 'l'; 'o' ]],

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 5 }

        }

    )

)



╭─[ 78.13ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - [ H, e, l, l, o ]                                        │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 5                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline charListToStr charList =

    charList |> List.toArray |> String



── fsharp ──────────────────────────────────────────────────────────────────────

let inline manyChars cp =

    many cp

    |>> charListToStr



── fsharp ──────────────────────────────────────────────────────────────────────

let inline manyChars1 cp =

    many1 cp

    |>> charListToStr



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = manyChars1 (anyOf [[ 'H'; 'e'; 'l'; 'o' ]])

runOnInput parser input |> _equal (

    Success (

        "Hello",

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 5 }

        }

    )

)



╭─[ 78.21ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - Hello                                                    │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 5                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline pstring str =

    str

    |> List.ofSeq

    |> List.map pchar

    |> sequence

    |> mapP charListToStr

    <?> str



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = pstring "Hello"

runOnInput parser input |> _equal (

    Success (

        "Hello",

        {

            lines = [[| "Hello" |]]

            position = { line = 0; column = 5 }

        }

    )

)



╭─[ 50.41ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - Hello                                                    │

│       - InputState                                                           │

│           lines: [ Hello ]                                                   │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 5                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let whitespaceChar =

    satisfy Char.IsWhiteSpace "whitespace"



── fsharp ──────────────────────────────────────────────────────────────────────

let spaces = many whitespaceChar



── fsharp ──────────────────────────────────────────────────────────────────────

let spaces1 = many1 whitespaceChar



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "  Hello"

let parser = spaces1 .>>. pstring "Hello"

runOnInput parser input |> _equal (

    Success (

        ([[ ' '; ' ' ]], "Hello"),

        {

            lines = [[| "  Hello" |]]

            position = { line = 0; column = 7 }

        }

    )

)



╭─[ 84.28ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       -         - [  ,   ]                                       │

│         - Hello                                                              │

│       - InputState                                                           │

│           lines: [   Hello ]                                                 │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 7                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let digitChar =

    satisfy Char.IsDigit "digit"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let input = fromStr "Hello"

let parser = digitChar

runOnInput parser input |> _equal (

    Failure (

        "digit",

        "Unexpected 'H'",

        {

            currentLine = "Hello"

            line = 0

            column = 0

        }

    )

)



╭─[ 36.22ms - stdout ]─────────────────────────────────────────────────────────╮

│ Failure                                                                      │

│       Item1: digit                                                           │

│       Item2: Unexpected 'H'                                                  │

│       Item3: ParserPosition                                                  │

│         currentLine: Hello                                                   │

│         line: 0                                                              │

│         column: 0                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let pint =

    let inline resultToInt (sign, digits) =

        let i = int digits

        match sign with

        | Some ch -> -i

        | None -> i



    let digits = manyChars1 digitChar



    opt (pchar '-') .>>. digits

    |> mapP resultToInt

    <?> "integer"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run pint "-123"

|> _equal (

    Success (

        -123,

        {

            lines = [[| "-123" |]]

            position = { line = 0; column = 4 }

        }

    )

)



╭─[ 58.14ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - -123                                                     │

│       - InputState                                                           │

│           lines: [ -123 ]                                                    │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 4                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let pfloat =

    let inline resultToFloat (((sign, digits1), point), digits2) =

        let fl = float $"{digits1}.{digits2}"

        match sign with

        | Some ch -> -fl

        | None -> fl



    let digits = manyChars1 digitChar



    opt (pchar '-') .>>. digits .>>. pchar '.' .>>. digits

    |> mapP resultToFloat

    <?> "float"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



run pfloat "-123.45"

|> _equal (

    Success (

        -123.45,

        {

            lines = [[| "-123.45" |]]

            position = { line = 0; column = 7 }

        }

    )

)



╭─[ 48.18ms - stdout ]─────────────────────────────────────────────────────────╮

│ Success                                                                      │

│       Item:       - -123.45                                                  │

│       - InputState                                                           │

│           lines: [ -123.45 ]                                                 │

│           position: Position                                                 │

│             line: 0                                                          │

│             column: 7                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline createParserForwardedToRef<'a> () =

    let mutable parserRef : Parser<'a> =

        {

            label = "unknown"

            parseFn = fun _ -> failwith "unfixed forwarded parser"

        }



    let wrapperParser =

        { parserRef with

            parseFn = fun input -> runOnInput parserRef input

        }



    wrapperParser, (fun v -> parserRef <- v)



── fsharp ──────────────────────────────────────────────────────────────────────

let inline (>>%) p x =

    p

    |>> fun _ -> x

[NbConvertApp] Converting notebook Parser.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 413951 bytes to Parser.dib.html

00:00:00 #1 [Debug] writeDibCode / output: Fs / path: JsonParser.dib

00:00:00 #1 [Debug] writeDibCode / output: Fs / path: Parser.dib

00:00:00 #3 [Debug] parseDibCode / output: Fs / file: Parser.dib

00:00:00 #3 [Debug] parseDibCode / output: Fs / file: JsonParser.dib

In [ ]:
{ . "$ScriptDir/../lib/fsharp/build.ps1" } | Invoke-Block

── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Async (Polyglot)                                                           │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## choice                                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline choice asyncs = async {

    let e = Event<_> ()

    use cts = new System.Threading.CancellationTokenSource ()

    let fn =

        asyncs

        |> Seq.map (fun a -> async {

            let! x = a

            e.Trigger x

        })

        |> Async.Parallel

        |> Async.Ignore

    Async.Start (fn, cts.Token)

    let! result = Async.AwaitEvent e.Publish

    cts.Cancel ()

    return result

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## map                                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline map fn a = async {

    let! x = a

    return fn x

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## catch                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline catch a =

    a

    |> Async.Catch

    |> map (function

        | Choice1Of2 result -> Ok result

        | Choice2Of2 ex -> Error ex

    )



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## runWithTimeoutAsync                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline runWithTimeoutAsync (timeout : int) fn =

    let getLocals () = $"timeout: {timeout} / {getLocals ()}"



    let timeoutTask = async {

        do! Async.Sleep timeout

        trace Debug (fun () -> "runWithTimeoutAsync") getLocals

        return None

    }



    let task = async {

        try

            let! result = fn

            return Some result

        with

        | :? System.AggregateException as ex when

            ex.InnerExceptions

            |> Seq.exists (function :? 

System.Threading.Tasks.TaskCanceledException -> true | _ -> false)

            ->

            let getLocals () = $"ex: {ex |> printException} / {getLocals ()}"

            trace Warning (fun () -> "runWithTimeoutAsync") getLocals

            return None

        | ex ->

            trace Critical (fun () -> $"runWithTimeoutAsync** / ex: {ex |> 

printException}") getLocals

            return None

    }



    [[ timeoutTask; task ]]

    |> choice



── fsharp ──────────────────────────────────────────────────────────────────────

let inline runWithTimeout timeout fn =

    fn

    |> runWithTimeoutAsync timeout

    |> Async.RunSynchronously



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Async.Sleep 60

|> runWithTimeout 10

|> _equal None



╭─[ 155.43ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 10                        │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Async.Sleep 10

|> runWithTimeout 60

|> _equal (Some ())



╭─[ 136.96ms - stdout ]────────────────────────────────────────────────────────╮

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



async {

    raise (exn "error")

}

|> runWithTimeout 60

|> _equal None



╭─[ 115.74ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #2 [Critical] runWithTimeoutAsync** / ex: System.Exception: error / │

│ timeout: 60                                                                  │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## runWithTimeoutChildAsync                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline runWithTimeoutChildAsync (timeout : int) fn = async {

    let getLocals () = $"timeout: {timeout} / {getLocals ()}"

    let! child = Async.StartChild (fn, timeout)

    return!

        child

        |> catch

        |> map (function

            | Ok result -> Some result

            | Error (:? System.TimeoutException as ex) ->

                trace Debug (fun () -> $"runWithTimeoutChildAsync") getLocals

                None

            | Error ex ->

                trace Critical (fun () -> $"runWithTimeoutChildAsync** / ex: {ex

|> printException}") getLocals

                None

        )

}



── fsharp ──────────────────────────────────────────────────────────────────────

let inline runWithTimeoutChild timeout fn =

    fn

    |> runWithTimeoutChildAsync timeout

    |> Async.RunSynchronously



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Async.Sleep 60

|> runWithTimeoutChild 10

|> _equal None



╭─[ 100.75ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #3 [Debug] runWithTimeoutChildAsync / timeout: 10                   │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Async.Sleep 10

|> runWithTimeoutChild 60

|> _equal (Some ())



╭─[ 85.89ms - stdout ]─────────────────────────────────────────────────────────╮

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



async {

    raise (exn "error")

}

|> runWithTimeoutChild 60

|> _equal None



╭─[ 92.70ms - stdout ]─────────────────────────────────────────────────────────╮

│ 00:00:00 #4 [Critical] runWithTimeoutChildAsync** / ex: System.Exception:    │

│ error / timeout: 60                                                          │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## runWithTimeoutStrict                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline runWithTimeoutStrict (timeout : int) fn =

    let getLocals () = $"timeout: {timeout} / {getLocals ()}"



    let timeoutTask = async {

        do! Async.Sleep timeout

        return None, getLocals

    }

    

    let task = async {

        try

            return Async.RunSynchronously (fn, timeout) |> Some, getLocals

        with

        | :? System.TimeoutException as ex ->

            let getLocals () = $"ex: {ex |> printException} / {getLocals ()}"

            return None, getLocals

        | ex ->

            trace Critical (fun () -> $"runWithTimeoutStrict / ex: {ex |> 

printException}") getLocals

            return raise ex

    }



    try

        [[| timeoutTask; task |]]

        |> Array.map Async.StartAsTask

        |> System.Threading.Tasks.Task.WhenAny

        |> fun task ->

            match task.Result.Result with

            | None, getLocals ->

                trace Debug (fun () -> "runWithTimeoutStrict") getLocals

                None

            | result, _ -> result

    with

    | :? System.AggregateException as ex when

        ex.InnerExceptions

        |> Seq.exists (function :? System.Threading.Tasks.TaskCanceledException 

-> true | _ -> false)

        ->

        let getLocals () = $"ex: {ex |> printException} / {getLocals ()}"

        trace Warning (fun () -> "runWithTimeoutStrict") getLocals

        None

    | ex ->

        let getLocals () = $"ex: {ex |> printException} / {getLocals ()}"

        trace Critical (fun () -> "runWithTimeoutStrict**") getLocals

        None



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Async.Sleep 60

|> runWithTimeoutStrict 10

|> _equal None



╭─[ 171.59ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:01 #5 [Debug] runWithTimeoutStrict / timeout: 10                       │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Async.Sleep 10

|> runWithTimeoutStrict 60

|> _equal (Some ())



╭─[ 122.51ms - stdout ]────────────────────────────────────────────────────────╮

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



async {

    raise (exn "error")

}

|> runWithTimeoutStrict 60

|> _equal None



╭─[ 100.63ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:01 #6 [Critical] runWithTimeoutStrict / ex: System.Exception: error /  │

│ timeout: 60                                                                  │

│ 00:00:01 #7 [Critical] runWithTimeoutStrict** / ex:                          │

│ System.AggregateException: One or more errors occurred. (error) / timeout:   │

│ 60                                                                           │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## awaitValueTask                                                            │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline awaitValueTaskUnit (task : System.Threading.Tasks.ValueTask) =

    task.AsTask () |> Async.AwaitTask



let inline awaitValueTask (task : System.Threading.Tasks.ValueTask<_>) =

    task.AsTask () |> Async.AwaitTask



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## init                                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline init x = async {

    return x

}



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



init 1

|> Async.RunSynchronously

|> _equal 1



╭─[ 35.75ms - stdout ]─────────────────────────────────────────────────────────╮

│ 1                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## mergeCancellationTokenWithDefaultAsync                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline mergeCancellationTokenWithDefaultAsync (token : 

System.Threading.CancellationToken) = async {

    let! ct = Async.CancellationToken

    let dct = Async.DefaultCancellationToken

    let cts = System.Threading.CancellationTokenSource.CreateLinkedTokenSource 

[[| ct; dct; token |]]

    return cts.Token

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## withCancellationToken                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline withCancellationToken (ct : System.Threading.CancellationToken) fn =

    Async.StartImmediateAsTask (fn, ct)

    |> Async.AwaitTask



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let cts = new System.Threading.CancellationTokenSource ()



async {

    let run = async {

        do! Async.Sleep 100

        return 1

    }



    let! child =

        run

        |> withCancellationToken cts.Token

        |> catch

        |> Async.StartChild



    do! Async.Sleep 50

    cts.Cancel ()

    return! child

}

|> Async.RunSynchronously

|> Result.mapError (fun x -> x.Message)

|> _equal (Error ("A task was canceled."))



╭─[ 178.62ms - stdout ]────────────────────────────────────────────────────────╮

│ FSharpResult<Int32,String>                                                   │

│       ResultValue: 0                                                         │

│       ErrorValue: A task was canceled.                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## withTraceLevel                                                            │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline withTraceLevel level fn = async {

    let oldTraceLevel = traceLevel

    try

        traceLevel <- level

        return! fn

    finally

        traceLevel <- oldTraceLevel

}

[NbConvertApp] Converting notebook Async.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 324709 bytes to Async.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # AsyncSeq (Polyglot)                                                        │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs

#!import ../../lib/fsharp/Async.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## subscribeEvent                                                            │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline subscribeEvent (event: IEvent<'H, 'A>) map =

    let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

    System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

    |> FSharp.Control.AsyncSeq.ofObservableBuffered



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



type TestEvent () as self =

    member val Calls = [[]] with get, set

    member val Event = Event<ErrorEventHandler, ErrorEventArgs> () with get



    member _.AddCall text =

        self.Calls <- self.Calls @ [[ text ]]



    member _.EventInterface =

        { new IEvent<ErrorEventHandler, ErrorEventArgs> with

            member _.AddHandler handler =

                self.AddCall "AddHandler"

                self.Event.Publish.AddHandler handler



            member _.RemoveHandler handler =

                self.AddCall "RemoveHandler"

                self.Event.Publish.RemoveHandler handler



            member _.Subscribe observer =

                self.AddCall "IObservable.Subscribe"

                let disposable = self.Event.Publish.Subscribe observer

                newDisposable (fun () ->

                    self.AddCall "IObservable.Dispose"

                    disposable.Dispose ()

                )

        }



    member _.Subscribe () =

        subscribeEvent

            self.EventInterface

            (fun args ->

                let result = args.GetException () |> printException

                self.AddCall $"TestEvent.Subscribe({result})"

                result

            )



    member _.Iter subscription =

        subscription

        |> FSharp.Control.AsyncSeq.iteriAsync (fun i error -> async {

            self.AddCall $"TestEvent.Iter({i}: {error})"

        })



    member _.WaitCall text = async {

        while self.Calls |> List.last <> text do

            do! Async.SwitchToThreadPool ()

    }



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let testEvent = TestEvent ()



async {

    testEvent.AddCall "1"

    let! child = testEvent.Subscribe () |> testEvent.Iter |> Async.StartChild

    do! testEvent.WaitCall "AddHandler"

    testEvent.AddCall "2"

    do! child

    testEvent.AddCall "3"

}

|> Async.runWithTimeout 300

|> _equal None



testEvent.Calls

|> Seq.toList

|> _equal [[ "1"; "AddHandler"; "2"; "RemoveHandler" ]]



╭─[ 532.25ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 300                       │

│ <null>                                                                       │

│ [ 1, AddHandler, 2, RemoveHandler ]                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let testEvent = TestEvent ()



async {

    testEvent.AddCall "1"

    let! child = testEvent.Subscribe () |> testEvent.Iter |> Async.StartChild

    do! testEvent.WaitCall "AddHandler"

    testEvent.AddCall "2"

    use _ = testEvent.EventInterface.Subscribe (fun args ->

        testEvent.AddCall $"testEvent.EventInterface.Subscribe({args})"

    )

    testEvent.AddCall "3"

    do! child

    testEvent.AddCall "4"

}

|> Async.runWithTimeout 300

|> _equal None



testEvent.Calls

|> _equal [[ "1"; "AddHandler"; "2"; "IObservable.Subscribe"; "3"; 

"RemoveHandler"; "IObservable.Dispose" ]]



╭─[ 474.92ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #2 [Debug] runWithTimeoutAsync / timeout: 300                       │

│ <null>                                                                       │

│ [ 1, AddHandler, 2, IObservable.Subscribe, 3, RemoveHandler,                 │

│ IObservable.Dispose ]                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let testEvent = TestEvent ()



async {

    testEvent.AddCall "1"

    let! child = testEvent.Subscribe () |> testEvent.Iter |> Async.StartChild

    do! testEvent.WaitCall "AddHandler"

    testEvent.AddCall "2"

    use _ = testEvent.EventInterface.Subscribe (fun args ->

        async {

            do! testEvent.WaitCall "TestEvent.Iter(0: System.Exception: error)"

            testEvent.AddCall 

$"testEvent.EventInterface.Subscribe({args.GetException () |> printException})"

        }

        |> Async.RunSynchronously

    )

    testEvent.AddCall "3"

    testEvent.Event.Trigger (null, ErrorEventArgs (Exception "error"))

    testEvent.AddCall "4"

    do! child

    testEvent.AddCall "5"

}

|> Async.runWithTimeout 300

|> _equal None



testEvent.Calls

|> _equal [[

    "1"

    "AddHandler"

    "2"

    "IObservable.Subscribe"

    "3"

    "TestEvent.Subscribe(System.Exception: error)"

    "TestEvent.Iter(0: System.Exception: error)"

    "testEvent.EventInterface.Subscribe(System.Exception: error)"

    "4"

    "RemoveHandler"

    "IObservable.Dispose"

]]



╭─[ 515.39ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:01 #3 [Debug] runWithTimeoutAsync / timeout: 300                       │

│ <null>                                                                       │

│ [ 1, AddHandler, 2, IObservable.Subscribe, 3,                                │

│ TestEvent.Subscribe(System.Exception: error), TestEvent.Iter(0:              │

│ System.Exception: error),                                                    │

│ testEvent.EventInterface.Subscribe(System.Exception: error), 4,              │

│ RemoveHandler, IObservable.Dispose ]                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let subscribeToken (token : System.Threading.CancellationToken) =

    let tcs = new System.Threading.Tasks.TaskCompletionSource ()

    System.Action tcs.SetResult |> token.Register |> ignore

    let start = System.DateTime.Now.Ticks

    FSharp.Control.AsyncSeq.unfoldAsync

        (fun () -> async {

            do! tcs.Task |> Async.AwaitTask

            return Some (System.DateTime.Now.Ticks - start, ())

        })

        ()



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let cts = new System.Threading.CancellationTokenSource ()



async {

    let! child =

        cts.Token

        |> subscribeToken

        |> FSharp.Control.AsyncSeq.tryFirst

        |> Async.StartChild



    do! Async.Sleep 100

    cts.Cancel ()

    return! child

}

|> Async.RunSynchronously

|> Option.get

|> _isGreaterThan 900000



╭─[ 180.78ms - stdout ]────────────────────────────────────────────────────────╮

│ 1155838                                                                      │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook AsyncSeq.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 301399 bytes to AsyncSeq.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Common (Polyglot)                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

let nl = System.Environment.NewLine

let q = @""""



── fsharp ──────────────────────────────────────────────────────────────────────

let inline cons head tail = head :: tail



── fsharp ──────────────────────────────────────────────────────────────────────

module String =

    let inline contains (value : string) (input : string) =

        input.Contains value



    let inline endsWith (value : string) (input : string) =

        input.EndsWith value



    let inline padLeft totalWidth paddingChar (input : string) =

        input.PadLeft (totalWidth, paddingChar)



    let inline replace (oldValue : string) (newValue : string) (input : string) 

=

        input.Replace (oldValue, newValue)



    let inline split separator (input : string) =

        input.Split separator



    let inline splitString (separator : string array) (input : string) =

        input.Split (separator, System.StringSplitOptions.None)



    let inline startsWith (value : string) (input : string) =

        input.StartsWith value



    let inline substring startIndex length (input : string) =

        input.Substring (startIndex, length)



    let inline toLower (input : string) =

        input.ToLower ()



    let inline toUpper (input : string) =

        input.ToUpper ()



    let inline trim (input : string) =

        input.Trim ()

    

    let inline trimEnd (trimChars : char array) (input : string) =

        input.TrimEnd trimChars



    let inline trimStart (trimChars : char array) (input : string) =

        input.TrimStart trimChars





    let ellipsis max value =

        if value |> String.length <= max

        then value

        else $"{value |> substring 0 max}..."



── fsharp ──────────────────────────────────────────────────────────────────────

type TicksGuid = System.Guid

type DateTimeGuid = System.Guid



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let testGuid = Guid "FEDCBA98-7654-3210-FEDC-BA9876543210"



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## dateTimeGuidFromDateTime                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline dateTimeGuidFromDateTime (guid: System.Guid) (dateTime: 

System.DateTime) =

    let guid = guid |> string

    let prefix = dateTime.ToString "yyyyMMdd-HHmm-ssff-ffff-f"

    DateTimeGuid $"{prefix}{guid.[[prefix.Length..]]}"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



dateTimeGuidFromDateTime testGuid DateTime.MinValue

|> _equal (DateTimeGuid "00010101-0000-0000-0000-0a9876543210")



╭─[ 86.30ms - stdout ]─────────────────────────────────────────────────────────╮

│ 00010101-0000-0000-0000-0a9876543210                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



dateTimeGuidFromDateTime testGuid DateTime.MaxValue

|> _equal (DateTimeGuid $"99991231-2359-5999-9999-9{(testGuid |> 

string).[[^10..]]}")



╭─[ 47.59ms - stdout ]─────────────────────────────────────────────────────────╮

│ 99991231-2359-5999-9999-9a9876543210                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



dateTimeGuidFromDateTime testGuid DateTime.UnixEpoch

|> _equal (DateTimeGuid $"19700101-0000-0000-0000-0{(testGuid |> 

string).[[^10..]]}")



╭─[ 46.65ms - stdout ]─────────────────────────────────────────────────────────╮

│ 19700101-0000-0000-0000-0a9876543210                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## dateTimeFromGuid                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline dateTimeFromGuid (dateTimeGuid: DateTimeGuid) =

    let dateTimeGuid = dateTimeGuid |> string

    System.DateTime.ParseExact (dateTimeGuid.[[..24]] |> String.replace "-" "", 

"yyyyMMddHHmmssfffffff", null)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



dateTimeFromGuid (DateTimeGuid "00010101-0000-0000-0000-0a9876543210")

|> _equal DateTime.MinValue



╭─[ 40.10ms - stdout ]─────────────────────────────────────────────────────────╮

│ 0001-01-01 00:00:00Z                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



dateTimeFromGuid (DateTimeGuid $"99991231-2359-5999-9999-9{(testGuid |> 

string).[[^10..]]}")

|> _equal DateTime.MaxValue



╭─[ 46.69ms - stdout ]─────────────────────────────────────────────────────────╮

│ 9999-12-31 23:59:59Z                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



dateTimeFromGuid (DateTimeGuid $"19700101-0000-0000-0000-0{(testGuid |> 

string).[[^10..]]}")

|> _equal DateTime.UnixEpoch



╭─[ 39.52ms - stdout ]─────────────────────────────────────────────────────────╮

│ 1970-01-01 00:00:00Z                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## ticksGuidFromTicks                                                        │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline ticksGuidFromTicks (guid: System.Guid) (ticks: int64) =

    let guid = guid |> string

    let ticks = ticks |> string |> String.padLeft 18 '0'

    TicksGuid 

$"{ticks.[[0..7]]}-{ticks.[[8..11]]}-{ticks.[[12..15]]}-{ticks.[[16..17]]}{guid.

[[21..]]}"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



ticksGuidFromTicks testGuid 0L

|> _equal (TicksGuid "00000000-0000-0000-00dc-ba9876543210")



╭─[ 42.26ms - stdout ]─────────────────────────────────────────────────────────╮

│ 00000000-0000-0000-00dc-ba9876543210                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



ticksGuidFromTicks testGuid 999999999999999999L

|> _equal (TicksGuid $"99999999-9999-9999-99dc-b{(testGuid |> 

string).[[^10..]]}")



╭─[ 57.67ms - stdout ]─────────────────────────────────────────────────────────╮

│ 99999999-9999-9999-99dc-ba9876543210                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## ticksFromGuid                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline ticksFromGuid (ticksGuid: DateTimeGuid) =

    let ticks = ticksGuid |> string

    int64 

$"{ticks.[[0..7]]}{ticks.[[9..12]]}{ticks.[[14..17]]}{ticks.[[19..20]]}"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



ticksFromGuid (TicksGuid "00000000-0000-0000-00dc-ba9876543210")

|> _equal 0L



╭─[ 45.81ms - stdout ]─────────────────────────────────────────────────────────╮

│ 0                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



ticksFromGuid (TicksGuid $"99999999-9999-9999-99{(testGuid |> 

string).[[^14..]]}")

|> _equal 999999999999999999L



╭─[ 62.05ms - stdout ]─────────────────────────────────────────────────────────╮

│ 999999999999999999                                                           │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## newGuidFromDateTime                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline newGuidFromDateTime (dateTime: System.DateTime) =

    let guid = System.Guid.NewGuid ()

    dateTimeGuidFromDateTime guid dateTime



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



newGuidFromDateTime System.DateTime.UtcNow

|> dateTimeFromGuid

|> fun dateTime -> (dateTime - System.DateTime.UtcNow).TotalSeconds |> int

|> _equal 0



╭─[ 64.64ms - stdout ]─────────────────────────────────────────────────────────╮

│ 0                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## newGuidFromTicks                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline newGuidFromTicks (ticks: int64) =

    let guid = System.Guid.NewGuid ()

    ticksGuidFromTicks guid ticks



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



newGuidFromTicks System.DateTime.UtcNow.Ticks

|> ticksFromGuid

|> fun ticks -> (ticks - System.DateTime.UtcNow.Ticks) / 100000L

|> _equal 0L



╭─[ 62.47ms - stdout ]─────────────────────────────────────────────────────────╮

│ 0                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## memoize                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline memoize fn =

    let result = lazy fn ()

    fun () -> result.Value



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable count = 0

let add =

    fun () -> count <- count + 1

    |> memoize



add ()

add ()

add ()



count

|> _equal 1



╭─[ 28.24ms - stdout ]─────────────────────────────────────────────────────────╮

│ 1                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## printException                                                            │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline printException (ex : System.Exception) =

    $"{ex.GetType ()}: {ex.Message}"



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



fun () -> failwith "test"

|> _throwsC (fun ex _ ->

    printException ex

    |> _equal "System.Exception: test"

)



╭─[ 67.04ms - stdout ]─────────────────────────────────────────────────────────╮

│ FSI_0034+it@3-1                                                              │

│ System.Exception: test                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## TraceLevel                                                                │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type TraceLevel =

    | Verbose

    | Debug

    | Info

    | Warning

    | Critical



let inline getLocals () = ""



let mutable traceEnabled = true

let mutable traceCount = 0

let mutable traceLevel = Verbose

let mutable traceDump = false



── fsharp ──────────────────────────────────────────────────────────────────────

let testTraceLevel level =

    traceEnabled && level >= traceLevel



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## traceRaw                                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let rec traceRaw level fn =

    if level |> testTraceLevel then

        traceCount <- traceCount + 1



        let text = $"%s{fn ()}"



        System.Console.WriteLine text

#if !WASM && !FABLE_COMPILER

        if traceDump then

            try

                let tmpPath = System.IO.Path.GetTempPath ()

                let logDir = System.IO.Path.Combine (tmpPath, "!polyglot")

                System.IO.Directory.CreateDirectory logDir |> ignore

                let logFile = System.IO.Path.Combine (logDir, 

$"{newGuidFromDateTime System.DateTime.Now}.txt")

                System.IO.File.WriteAllTextAsync (logFile, text) |> 

Async.AwaitTask |> Async.RunSynchronously

            with ex ->

                traceRaw Critical (fun () -> $"trace / ex: {ex |> 

printException}")

#endif



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



traceRaw Debug (fun () -> "test")



╭─[ 11.97ms - stdout ]─────────────────────────────────────────────────────────╮

│ test                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## trace                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let private replStart =

#if INTERACTIVE || !FABLE_COMPILER

    fun () ->

        if System.Reflection.Assembly.GetEntryAssembly().GetName().Name <> 

"Microsoft.DotNet.Interactive.App"

        then Some System.DateTime.Now.Ticks

        else None

    |> memoize

#else

    fun () -> None : int64 option

#endif



let trace level fn getLocals =

    fun () ->

        let time =

#if WASM

            ""

#else

            match replStart () with

            | Some replStart ->

                let t = System.DateTime.Now.Ticks - replStart |> System.TimeSpan

                System.DateTime (1, 1, 1, t.Hours, t.Minutes, t.Seconds, 

t.Milliseconds, t.Microseconds)

            | None -> System.DateTime.Now

            |> fun dateTime ->

#if FABLE_COMPILER_RUST

                "hh:mm:ss"

#else

                "HH:mm:ss"

#endif

                |> dateTime.ToString

#endif

        $"{time} #{traceCount} [[%A{level}]] %s{fn ()} / %s{getLocals ()}"

        |> String.trimStart [[||]]

        |> String.trimEnd [[| ' '; '/' |]]

    |> traceRaw level



let inline withTrace enabled fn =

    let oldTraceEnabled = traceEnabled

    try

        traceEnabled <- enabled

        fn ()

    finally

        traceEnabled <- oldTraceEnabled



let inline withTraceEnabled fn =

    withTrace true fn



let inline withTraceDisabled fn =

    withTrace false fn



let inline withTraceLevel level fn =

    let oldTraceLevel = traceLevel

    try

        traceLevel <- level

        fn ()

    finally

        traceLevel <- oldTraceLevel



let inline withTraceDump dump fn =

    let oldTraceDump = traceDump

    try

        traceDump <- dump

        fn ()

    finally

        traceDump <- oldTraceDump



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



trace Debug (fun () -> "test") getLocals



╭─[ 37.05ms - stdout ]─────────────────────────────────────────────────────────╮

│ 00:00:00 #2 [Debug] test                                                     │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## newDisposable                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline newDisposable fn =

    { new System.IDisposable with

        member _.Dispose () = fn ()

    }



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable newDisposableTest = 0

newDisposable (fun () -> newDisposableTest <- newDisposableTest + 1)

|> fun x -> x.Dispose ()

newDisposableTest |> _equal 1



╭─[ 24.75ms - stdout ]─────────────────────────────────────────────────────────╮

│ 1                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable newDisposableTest = 0

fun () -> task {

    use x = newDisposable (fun () -> newDisposableTest <- newDisposableTest + 1)

    ()

}

|> fun x -> x () |> Async.AwaitTask |> Async.RunSynchronously

newDisposableTest |> _equal 1



╭─[ 144.17ms - stdout ]────────────────────────────────────────────────────────╮

│ 1                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable newDisposableTest = 0

async {

    use x = newDisposable (fun () -> newDisposableTest <- newDisposableTest + 1)

    ()

}

|> Async.RunSynchronously

newDisposableTest |> _equal 1



╭─[ 45.17ms - stdout ]─────────────────────────────────────────────────────────╮

│ 1                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable newDisposableTest = 0

async {

    let x = newDisposable (fun () -> newDisposableTest <- newDisposableTest + 1)

    ()

}

|> Async.RunSynchronously

newDisposableTest |> _equal 0



╭─[ 37.33ms - stdout ]─────────────────────────────────────────────────────────╮

│ 0                                                                            │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## retryFn                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline retryFn retries fn =

    let rec loop retry =

        try

            if retry < retries

            then fn () |> Some

            else None

        with ex ->

            let getLocals () = $"retry: {retry} / ex: {ex |> printException} / 

{getLocals ()}"

            trace Warning (fun () -> "retryFn") getLocals

            System.Threading.Thread.Sleep 1

            loop (retry + 1)

    loop 0



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable retryFnTest = 0

fun () ->

    retryFnTest <- retryFnTest + 1

    retryFnTest

|> retryFn 3

|> _equal (Some 1)



╭─[ 35.94ms - stdout ]─────────────────────────────────────────────────────────╮

│ FSharpOption<Int32>                                                          │

│       Value: 1                                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



fun () -> failwith "test"

|> retryFn 3

|> _equal None



╭─[ 69.72ms - stdout ]─────────────────────────────────────────────────────────╮

│ 00:00:00 #3 [Warning] retryFn / retry: 0 / ex: System.Exception: test        │

│ 00:00:00 #4 [Warning] retryFn / retry: 1 / ex: System.Exception: test        │

│ 00:00:00 #5 [Warning] retryFn / retry: 2 / ex: System.Exception: test        │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable retryFnTest = 0

fun () ->

    if retryFnTest >= 2

    then retryFnTest

    else

        retryFnTest <- retryFnTest + 1

        failwith "test"

|> retryFn 3

|> _equal (Some 2)



╭─[ 60.08ms - stdout ]─────────────────────────────────────────────────────────╮

│ 00:00:00 #6 [Warning] retryFn / retry: 0 / ex: System.Exception: test        │

│ 00:00:00 #7 [Warning] retryFn / retry: 1 / ex: System.Exception: test        │

│ FSharpOption<Int32>                                                          │

│       Value: 2                                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Common.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 353475 bytes to Common.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # CommonFSharp (Polyglot)                                                    │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## getUnionCaseName                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getUnionCaseName<'T> (x: 'T) =

    match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

    | case, _ -> case.Name



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



TraceLevel.Critical

|> getUnionCaseName

|> _equal (nameof TraceLevel.Critical)



╭─[ 69.72ms - stdout ]─────────────────────────────────────────────────────────╮

│ Critical                                                                     │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook CommonFSharp.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 275518 bytes to CommonFSharp.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Threading (Polyglot)                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## newDisposableToken                                                        │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline newDisposableToken (mergeToken: System.Threading.CancellationToken 

option) =

    let cts = new System.Threading.CancellationTokenSource ()

    let cts =

        match mergeToken with

        | None -> cts

        | Some mergeToken ->

            System.Threading.CancellationTokenSource.CreateLinkedTokenSource [[|

cts.Token; mergeToken |]]

    let disposable = newDisposable cts.Cancel

    cts.Token, disposable



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let mutable counter = 0



let inline run fn =

    let token, disposable = newDisposableToken None

    use _ = disposable

    fn token

    async {

        fn token

    }

    |> Async.Start



let inline fn (token : System.Threading.CancellationToken) =

    counter <- counter + (if token.IsCancellationRequested then 10 else 1)



async {

    run fn

    do! Async.Sleep 10

    return counter

}

|> Async.RunSynchronously

|> _equal 11



╭─[ 183.13ms - stdout ]────────────────────────────────────────────────────────╮

│ 11                                                                           │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Threading.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 278535 bytes to Threading.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Crypto (Polyglot)                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## hashText                                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let hashText (input : string) =

    use sha256 = System.Security.Cryptography.SHA256.Create ()

    input

    |> System.Text.Encoding.UTF8.GetBytes

    |> sha256.ComputeHash

    |> Array.map (fun b -> b.ToString "x2")

    |> String.concat ""



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



""

|> hashText

|> _equal "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"



╭─[ 64.86ms - stdout ]─────────────────────────────────────────────────────────╮

│ e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



" "

|> hashText

|> _equal "36a9e7f1c95b82ffb99743e0c5c4ce95d83c9a430aac59f84ef3cbfab6145068"



╭─[ 20.65ms - stdout ]─────────────────────────────────────────────────────────╮

│ 36a9e7f1c95b82ffb99743e0c5c4ce95d83c9a430aac59f84ef3cbfab6145068             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Crypto.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 277352 bytes to Crypto.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # FileSystem (Polyglot)                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"

#r 

@"../../../../../../../.nuget/packages/argu/6.1.5/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs

#!import ../../lib/fsharp/CommonFSharp.fs

#!import ../../lib/fsharp/Async.fs

#!import ../../lib/fsharp/AsyncSeq.fs

#!import ../../lib/fsharp/Runtime.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module AsyncSeq =



    open Common



    /// ## subscribeEvent



    let inline subscribeEvent (event: IEvent<'H, 'A>) map =

        let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

        System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

        |> FSharp.Control.AsyncSeq.ofObservableBuffered



    let subscribeToken (token : System.Threading.CancellationToken) =

        let tcs = new System.Threading.Tasks.TaskCompletionSource ()

        System.Action tcs.SetResult |> token.Register |> ignore

        let start = System.DateTime.Now.Ticks

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun (...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Operators                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

module Operators =

    let inline (</>) a b =

        System.IO.Path.Combine (a, b)



── fsharp ──────────────────────────────────────────────────────────────────────

open Operators



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## createTempDirectoryName                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline createTempDirectoryName () =

    let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name



    System.IO.Path.GetTempPath ()

    </> $"!{root}"

    </> string (newGuidFromDateTime System.DateTime.Now)



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



createTempDirectoryName ()

|> _contains System.IO.Path.DirectorySeparatorChar



╭─[ 49.55ms - stdout ]─────────────────────────────────────────────────────────╮

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1627-1308-0813-038bf │

│ 4bc6016                                                                      │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## createTempDirectory                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline createTempDirectory () =

    let tempFolder = createTempDirectoryName ()

    let result = System.IO.Directory.CreateDirectory tempFolder



    if not result.Exists then

        let getLocals () =

            $"tempFolder: {tempFolder} / result: {({|

                Exists = result.Exists

                CreationTime = result.CreationTime

            |})} {getLocals ()}"



        trace Debug (fun () -> "createTempDirectory") getLocals



    tempFolder



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempDirectory = createTempDirectory ()



Directory.Exists tempDirectory

|> _equal true



╭─[ 34.77ms - stdout ]─────────────────────────────────────────────────────────╮

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## getSourceDirectory                                                        │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let getSourceDirectory =

    fun () -> __SOURCE_DIRECTORY__

    |> memoize



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



getSourceDirectory ()

|> System.IO.DirectoryInfo

|> fun dir -> dir.Name

|> _equal "fsharp"



╭─[ 36.52ms - stdout ]─────────────────────────────────────────────────────────╮

│ fsharp                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## findParent                                                                │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline findParent name isFile rootDir =

    let rec loop dir =

        if dir </> name |> (if isFile then System.IO.File.Exists else 

System.IO.Directory.Exists)

        then dir

        else

            dir

            |> System.IO.Directory.GetParent

            |> function

                | null -> failwith $"""No parent for {if isFile then "file" else

"dir"} '{name}' at '{rootDir}'"""

                | parent -> parent.FullName |> loop

    loop rootDir



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



getSourceDirectory () |> findParent ".paket" false

|> System.IO.DirectoryInfo

|> fun dir -> dir.Name

|> _equal "polyglot"



╭─[ 41.19ms - stdout ]─────────────────────────────────────────────────────────╮

│ polyglot                                                                     │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



getSourceDirectory () |> findParent "paket.dependencies" true

|> System.IO.DirectoryInfo

|> fun dir -> dir.Name

|> _equal "polyglot"



╭─[ 26.87ms - stdout ]─────────────────────────────────────────────────────────╮

│ polyglot                                                                     │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## readAllTextAsync                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline readAllTextAsync path =

    path |> System.IO.File.ReadAllTextAsync |> Async.AwaitTask



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## fileExistsContent                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline fileExistsContent path content = async {

    if path |> System.IO.File.Exists |> not

    then return false

    else

        let! existingContent = path |> readAllTextAsync

        return content = existingContent

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## writeAllTextAsync                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline writeAllTextAsync path contents =

    System.IO.File.WriteAllTextAsync (path, contents) |> Async.AwaitTask



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## writeAllTextExists                                                        │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline writeAllTextExists path contents = async {

    let! exists = contents |> fileExistsContent path

    if not exists

    then do! contents |> writeAllTextAsync path

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## waitForFileAccess                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline waitForFileAccess access path =

    let fileAccess, fileShare =

        access

        |> Option.defaultValue (System.IO.FileAccess.ReadWrite, 

System.IO.FileShare.Read)



    let rec loop retry = async {

        try

            use _ = new System.IO.FileStream (

                path,

                System.IO.FileMode.Open,

                fileAccess,

                fileShare

            )

            return retry

        with ex ->

            if retry % 100 = 0 then

                let getLocals () = $"path: {path |> System.IO.Path.GetFileName} 

/ ex: {ex |> printException} / {getLocals ()}"

                trace Debug (fun () -> "waitForFileAccess") getLocals

            do! Async.Sleep 10

            return! loop (retry + 1)

    }

    loop 0



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = createTempDirectory ()

let path = tempFolder </> "test.txt"



let inline lockFile () = async {

    trace Debug (fun () -> "_1") getLocals

    use stream = new System.IO.FileStream (

        path,

        System.IO.FileMode.Open,

        System.IO.FileAccess.ReadWrite,

        System.IO.FileShare.None

    )

    trace Debug (fun () -> "_2") getLocals

    do! Async.Sleep 2000

    trace Debug (fun () -> "_3") getLocals

    stream.Seek (0L, SeekOrigin.Begin) |> ignore

    trace Debug (fun () -> "_4") getLocals

    stream.WriteByte 49uy

    trace Debug (fun () -> "_5") getLocals

    stream.Flush ()

    trace Debug (fun () -> "_6") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    do! "0" |> writeAllTextAsync path

    trace Debug (fun () -> "2") getLocals

    let! child = lockFile () |> Async.StartChild

    trace Debug (fun () -> "3") getLocals

    do! Async.Sleep 1

    trace Debug (fun () -> "4") getLocals

    let! retries = path |> waitForFileAccess None

    trace Debug (fun () -> "5") getLocals

    let! text = path |> readAllTextAsync

    trace Debug (fun () -> "6") getLocals

    do! child

    trace Debug (fun () -> "7") getLocals

    return retries, text

}

|> Async.runWithTimeout 3000

|> function

    | Some (retries, text) ->

        retries

        |> _isBetween

            (if Runtime.isWindows () then 100 else 100)

            (if Runtime.isWindows () then 150 else 200)

        

        text |> _equal "1"

        

        true

    | _ -> false

|> _equal true



╭─[ 2.64s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] 1                                                        │

│ 00:00:00 #2 [Debug] 2                                                        │

│ 00:00:00 #3 [Debug] _1                                                       │

│ 00:00:00 #4 [Debug] 3                                                        │

│ 00:00:00 #5 [Debug] _2                                                       │

│ 00:00:00 #6 [Debug] 4                                                        │

│ 00:00:00 #7 [Debug] waitForFileAccess / path: test.txt / ex:                 │

│ System.IO.IOException: The process cannot access the file                    │

│ 'C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1627-1409-0954-0c6c │

│ 497604bc\test.txt' because it is being used by another process.              │

│ 00:00:01 #8 [Debug] waitForFileAccess / path: test.txt / ex:                 │

│ System.IO.IOException: The process cannot access the file                    │

│ 'C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1627-1409-0954-0c6c │

│ 497604bc\test.txt' because it is being used by another process.              │

│ 00:00:02 #9 [Debug] _3                                                       │

│ 00:00:02 #10 [Debug] _4                                                      │

│ 00:00:02 #11 [Debug] _5                                                      │

│ 00:00:02 #12 [Debug] _6                                                      │

│ 00:00:02 #13 [Debug] 5                                                       │

│ 00:00:02 #14 [Debug] 6                                                       │

│ 00:00:02 #15 [Debug] 7                                                       │

│ 128                                                                          │

│ 128                                                                          │

│ 128                                                                          │

│ 1                                                                            │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## readAllTextRetryAsync                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline readAllTextRetryAsync fullPath =

    let rec loop retry = async {

        try

            if retry > 0

            then do!

                fullPath

                |> waitForFileAccess (Some (

                    System.IO.FileAccess.Read,

                    System.IO.FileShare.Read

                ))

                |> Async.runWithTimeoutAsync 1000

                |> Async.Ignore

            return! fullPath |> readAllTextAsync |> Async.map Some

        with ex ->

            let getLocals () = $"retry: {retry} / ex: {ex |> printException} / 

{getLocals ()}"

            trace Debug (fun () -> $"watchWithFilter / readContent") getLocals

            if retry = 0

            then return! loop (retry + 1)

            else return None

    }

    loop 0



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## deleteDirectoryAsync                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline deleteDirectoryAsync path =

    let rec loop retry = async {

        try

            System.IO.Directory.Delete (path, true)

            return retry

        with ex ->

            if retry % 100 = 0 then

                let getLocals () = $"path: {path |> System.IO.Path.GetFileName} 

/ ex: {ex |> printException} / {getLocals ()}"

                trace Debug (fun () -> "deleteDirectoryAsync") getLocals

            do! Async.Sleep 10

            return! loop (retry + 1)

    }

    loop 0



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = createTempDirectory ()

let path = tempFolder </> "test"



let inline lockDirectory () = async {

    trace Debug (fun () -> "_1") getLocals

    System.IO.File.WriteAllText (path </> "test.txt", "0")

    use _ = new System.IO.FileStream (

        path </> "test.txt",

        System.IO.FileMode.Open,

        System.IO.FileAccess.ReadWrite,

        System.IO.FileShare.None

    )

    trace Debug (fun () -> "_2") getLocals

    do! Async.Sleep 2000

    trace Debug (fun () -> "_3") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    Directory.CreateDirectory path |> ignore

    trace Debug (fun () -> "2") getLocals

    let! child = lockDirectory () |> Async.StartChild

    trace Debug (fun () -> "3") getLocals

    do! Async.Sleep 60

    trace Debug (fun () -> "4") getLocals

    let! retries = deleteDirectoryAsync path

    trace Debug (fun () -> "5") getLocals

    do! child

    trace Debug (fun () -> "6") getLocals

    return retries

}

|> Async.runWithTimeout 3000

|> function

    | Some retries ->

        retries

        |> _isBetween

            (if Runtime.isWindows () then 100 else 0)

            (if Runtime.isWindows () then 150 else 0)



        true

    | _ -> false

|> _equal true



╭─[ 2.36s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:02 #16 [Debug] 1                                                       │

│ 00:00:02 #17 [Debug] 2                                                       │

│ 00:00:02 #18 [Debug] 3                                                       │

│ 00:00:02 #19 [Debug] _1                                                      │

│ 00:00:02 #20 [Debug] _2                                                      │

│ 00:00:02 #21 [Debug] 4                                                       │

│ 00:00:02 #22 [Debug] deleteDirectoryAsync / path: test / ex:                 │

│ System.IO.IOException: The process cannot access the file 'test.txt' because │

│ it is being used by another process.                                         │

│ 00:00:04 #23 [Debug] deleteDirectoryAsync / path: test / ex:                 │

│ System.IO.IOException: The process cannot access the file 'test.txt' because │

│ it is being used by another process.                                         │

│ 00:00:04 #24 [Debug] _3                                                      │

│ 00:00:04 #25 [Debug] 5                                                       │

│ 00:00:04 #26 [Debug] 6                                                       │

│ 122                                                                          │

│ 122                                                                          │

│ 122                                                                          │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## deleteFileAsync                                                           │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline deleteFileAsync path =

    let rec loop retry = async {

        try

            System.IO.File.Delete path

            return retry

        with ex ->

            if retry % 100 = 0 then

                let getLocals () = $"path: {path |> System.IO.Path.GetFileName} 

/ ex: {ex |> printException} / {getLocals ()}"

                trace Warning (fun () -> "deleteFileAsync") getLocals

            do! Async.Sleep 10

            return! loop (retry + 1)

    }

    loop 0



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = createTempDirectory ()

let path = tempFolder </> "test.txt"



let inline lockFile () = async {

    trace Debug (fun () -> "_1") getLocals

    use _ = new System.IO.FileStream (

        path,

        System.IO.FileMode.Open,

        System.IO.FileAccess.ReadWrite,

        System.IO.FileShare.None

    )

    trace Debug (fun () -> "_2") getLocals

    do! Async.Sleep 2000

    trace Debug (fun () -> "_3") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    do! "0" |> writeAllTextAsync path

    trace Debug (fun () -> "2") getLocals

    let! child = lockFile () |> Async.StartChild

    trace Debug (fun () -> "3") getLocals

    do! Async.Sleep 1

    trace Debug (fun () -> "4") getLocals

    let! retries = deleteFileAsync path

    trace Debug (fun () -> "5") getLocals

    do! child

    trace Debug (fun () -> "6") getLocals

    return retries

}

|> Async.runWithTimeout 3000

|> function

    | Some retries ->

        retries

        |> _isBetween

            (if Runtime.isWindows () then 100 else 0)

            (if Runtime.isWindows () then 150 else 0)



        true

    | _ -> false

|> _equal true



╭─[ 2.30s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:05 #27 [Debug] 1                                                       │

│ 00:00:05 #28 [Debug] 2                                                       │

│ 00:00:05 #29 [Debug] 3                                                       │

│ 00:00:05 #30 [Debug] _1                                                      │

│ 00:00:05 #31 [Debug] _2                                                      │

│ 00:00:05 #32 [Debug] 4                                                       │

│ 00:00:05 #33 [Warning] deleteFileAsync / path: test.txt / ex:                │

│ System.IO.IOException: The process cannot access the file                    │

│ 'C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1627-1922-2242-2357 │

│ 56df0cd1\test.txt' because it is being used by another process.              │

│ 00:00:06 #34 [Warning] deleteFileAsync / path: test.txt / ex:                │

│ System.IO.IOException: The process cannot access the file                    │

│ 'C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1627-1922-2242-2357 │

│ 56df0cd1\test.txt' because it is being used by another process.              │

│ 00:00:07 #35 [Debug] _3                                                      │

│ 00:00:07 #36 [Debug] 5                                                       │

│ 00:00:07 #37 [Debug] 6                                                       │

│ 128                                                                          │

│ 128                                                                          │

│ 128                                                                          │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## moveFileAsync                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline moveFileAsync newPath oldPath =

    let rec loop retry = async {

        try

            System.IO.File.Move (oldPath, newPath)

            return retry

        with ex ->

            if retry % 100 = 0 then

                let getLocals () =

                    $"oldPath: {oldPath |> System.IO.Path.GetFileName} / 

newPath: {newPath |> System.IO.Path.GetFileName} / ex: {ex |> printException} / 

{getLocals ()}"

                trace Warning (fun () -> "moveFileAsync") getLocals

            do! Async.Sleep 10

            return! loop (retry + 1)

    }

    loop 0



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = createTempDirectory ()

let path = tempFolder </> "test.txt"

let newPath = tempFolder </> "test2.txt"



let inline lockFile () = async {

    trace Debug (fun () -> "_1") getLocals

    use _ = new System.IO.FileStream (

        path,

        System.IO.FileMode.Open,

        System.IO.FileAccess.ReadWrite,

        System.IO.FileShare.None

    )

    trace Debug (fun () -> "_2") getLocals

    do! Async.Sleep 2000

    trace Debug (fun () -> "_3") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    do! "0" |> writeAllTextAsync path

    trace Debug (fun () -> "2") getLocals

    let! child = lockFile () |> Async.StartChild

    trace Debug (fun () -> "3") getLocals

    do! Async.Sleep 1

    trace Debug (fun () -> "4") getLocals

    let! retries1 = path |> moveFileAsync newPath

    trace Debug (fun () -> "5") getLocals

    let! retries2 = newPath |> waitForFileAccess None

    trace Debug (fun () -> "6") getLocals

    let! text = newPath |> readAllTextAsync

    trace Debug (fun () -> "7") getLocals

    do! child

    trace Debug (fun () -> "8") getLocals

    return retries1, retries2, text

}

|> Async.runWithTimeout 3000

|> function

    | Some (retries1, retries2, text) ->

        retries1

        |> _isBetween

            (if Runtime.isWindows () then 100 else 0)

            (if Runtime.isWindows () then 150 else 0)



        retries2

        |> _isBetween

            (if Runtime.isWindows () then 0 else 100)

            (if Runtime.isWindows () then 0 else 200)

        

        text |> _equal "0"

        

        true

    | _ -> false

|> _equal true



╭─[ 2.37s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:07 #38 [Debug] 1                                                       │

│ 00:00:07 #39 [Debug] 2                                                       │

│ 00:00:07 #40 [Debug] 3                                                       │

│ 00:00:07 #41 [Debug] _1                                                      │

│ 00:00:07 #42 [Debug] _2                                                      │

│ 00:00:07 #43 [Debug] 4                                                       │

│ 00:00:07 #44 [Warning] moveFileAsync / oldPath: test.txt / newPath:          │

│ test2.txt / ex: System.IO.IOException: The process cannot access the file    │

│ because it is being used by another process.                                 │

│ 00:00:09 #45 [Warning] moveFileAsync / oldPath: test.txt / newPath:          │

│ test2.txt / ex: System.IO.IOException: The process cannot access the file    │

│ because it is being used by another process.                                 │

│ 00:00:09 #46 [Debug] _3                                                      │

│ 00:00:09 #47 [Debug] 5                                                       │

│ 00:00:09 #48 [Debug] 6                                                       │

│ 00:00:09 #49 [Debug] 7                                                       │

│ 00:00:09 #50 [Debug] 8                                                       │

│ 129                                                                          │

│ 129                                                                          │

│ 129                                                                          │

│ 0                                                                            │

│ 0                                                                            │

│ 0                                                                            │

│ 0                                                                            │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## watchDirectory                                                            │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

[[<RequireQualifiedAccess>]]

type FileSystemChangeType =

    | Failure

    | Changed

    | Created

    | Deleted

    | Renamed



[[<RequireQualifiedAccess>]]

type FileSystemChange =

    | Failure of exn: exn

    | Changed of path: string * content: string option

    | Created of path: string * content: string option

    | Deleted of path: string

    | Renamed of oldPath: string * (string * string option)





let inline watchDirectoryWithFilter filter shouldReadContent path =

    let fullPath = path |> System.IO.Path.GetFullPath

    let getLocals () = $"filter: {filter} / {getLocals ()}"



    let watcher =

        new System.IO.FileSystemWatcher (

            Path = fullPath,

            NotifyFilter = filter,

            EnableRaisingEvents = true,

            IncludeSubdirectories = true

        )



    let inline getEventPath (path : string) =

        path |> String.trim |> String.replace fullPath "" |> String.trimStart 

[[| '/'; '\\' |]]



    let inline ticks () =

        System.DateTime.UtcNow.Ticks



    let changedStream =

        AsyncSeq.subscribeEvent

            watcher.Changed

            (fun event ->

                ticks (),

                [[ FileSystemChange.Changed (getEventPath event.FullPath, None) 

]]

            )



    let deletedStream =

        AsyncSeq.subscribeEvent

            watcher.Deleted

            (fun event ->

                ticks (),

                [[ FileSystemChange.Deleted (getEventPath event.FullPath) ]]

            )



    let createdStream =

        AsyncSeq.subscribeEvent

            watcher.Created

            (fun event ->

                let path = getEventPath event.FullPath

                ticks (), [[

                    FileSystemChange.Created (path, None)

                    if Runtime.isWindows () then

                        FileSystemChange.Changed (path, None)

                ]])



    let renamedStream =

        AsyncSeq.subscribeEvent

            watcher.Renamed

            (fun event ->

                ticks (), [[

                    FileSystemChange.Renamed (

                        getEventPath event.OldFullPath,

                        (getEventPath event.FullPath, None)

                    )

                ]]

            )



    let failureStream =

        AsyncSeq.subscribeEvent

            watcher.Error

            (fun event -> ticks (), [[ FileSystemChange.Failure 

(event.GetException ()) ]])



    let stream =

        [[

            changedStream

            deletedStream

            createdStream

            renamedStream

            failureStream

        ]]

        |> FSharp.Control.AsyncSeq.mergeAll

        |> FSharp.Control.AsyncSeq.map (fun (t, events) ->

            events

            |> List.fold

                (fun (i, events) event ->

                    i + 1L,

                    (t + i, event) :: events)

                (0L, [[]])

            |> snd

            |> List.rev

        )

        |> FSharp.Control.AsyncSeq.concatSeq

        |> FSharp.Control.AsyncSeq.mapAsyncParallel (fun (t, event) -> async {

            match shouldReadContent event, event with

            | true, FileSystemChange.Changed (path, _) ->

                do! Async.Sleep 5

                let! content = fullPath </> path |> readAllTextRetryAsync

                return t, FileSystemChange.Changed (path, content)

            | true, FileSystemChange.Created (path, _) ->

                do! Async.Sleep 5

                let! content = fullPath </> path |> readAllTextRetryAsync

                return t, FileSystemChange.Created (path, content)

            | true, FileSystemChange.Renamed (oldPath, (newPath, _)) ->

                let! content = fullPath </> newPath |> readAllTextRetryAsync

                return t, FileSystemChange.Renamed (oldPath, (newPath, content))

            | _ -> return t, event

        })



    let disposable =

        newDisposable (fun () ->

            trace Debug (fun () -> "watchWithFilter / Disposing watch stream") 

getLocals

            watcher.EnableRaisingEvents <- false

            watcher.Dispose ()

        )



    stream, disposable



let inline watchDirectory path =

    watchDirectoryWithFilter

        (System.IO.NotifyFilters.FileName

        // ||| System.IO.NotifyFilters.DirectoryName

        // ||| System.IO.NotifyFilters.Attributes

        //// ||| System.IO.NotifyFilters.Size

        ||| System.IO.NotifyFilters.LastWrite

        //// ||| System.IO.NotifyFilters.LastAccess

        // ||| System.IO.NotifyFilters.CreationTime

        // ||| System.IO.NotifyFilters.Security

        )

        path



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### testEventsRaw (test)                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline testEventsRaw

    (watchFn : (_ -> bool) -> string -> FSharp.Control.AsyncSeq<int64 * 

FileSystemChange> * IDisposable)

    write

    =

    let tempDirectory = createTempDirectory ()

    let stream, disposable = watchFn (fun _ -> true) tempDirectory



    let events = System.Collections.Concurrent.ConcurrentBag ()



    let inline iter () =

        stream

        |> FSharp.Control.AsyncSeq.iterAsyncParallel (fun event -> async { 

events.Add event })



    let run = async {

        let! _ = iter () |> Async.StartChild

        do! Async.Sleep 250

        return! write tempDirectory

    }



    try

        run

        |> Async.runWithTimeout 60000

        |> _equal (Some ())

    finally

        disposable.Dispose ()

        deleteDirectoryAsync tempDirectory |> Async.Ignore |> 

Async.RunSynchronously



    let eventsLog =

        events

        |> Seq.toList

        |> List.sortBy fst

        |> List.fold

            (fun (prev, acc) (ticks, event) ->

                ticks, (ticks, (if prev = 0L then 0L else ticks - prev), event) 

:: acc

            )

            (0L, [[]])

        |> snd

        |> List.rev

        |> List.map (fun (diff, n, event) ->

            let text = $"{n} / {diff} / {event}"

            if text |> String.length <= 100

            then text

            else text |> String.substring 0 100 |> String.replace "\n" ""

        )

        |> String.concat "\n"

    let getLocals () = $"eventsLog: \n{eventsLog} / {getLocals ()}"

    trace Debug (fun () -> "testEventsRaw") getLocals



    events

    |> Seq.toList

    |> List.sortBy fst

    |> List.map snd

    |> List.fold

        (fun acc event ->

            match acc, event with

            | FileSystemChange.Changed (lastPath, Some lastContent) as lastEvent

:: acc,

                FileSystemChange.Changed (path, Some content)

                when lastPath = path && content |> String.startsWith lastContent

                ->

                event :: acc

            | _ -> event :: acc

        )

        [[]]

    |> List.rev



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ #### fast (test)                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline write path = async {

    let n = 2



    for i = 1 to n do

        do! $"a{i}" |> writeAllTextAsync (path </> $"file{i}.txt")



    do! Async.Sleep 250



    for i = 1 to n do

        do! $"b{i}" |> writeAllTextAsync (path </> $"file{i}.txt")



    do! Async.Sleep 250



    for i = 1 to n do

        do! path </> $"file{i}.txt" |> moveFileAsync (path </> $"file_{i}.txt") 

|> Async.Ignore



    do! Async.Sleep 250



    for i = 1 to n do

        do! $"c{i}" |> writeAllTextAsync (path </> $"file_{i}.txt")



    do! Async.Sleep 250



    for i = 1 to n do

        do! deleteFileAsync (path </> $"file_{i}.txt") |> Async.Ignore



    do! Async.Sleep 250

}



let inline run () =

    let events = testEventsRaw watchDirectory write



    events

    |> _sequenceEqual [[

        FileSystemChange.Created ("file1.txt", Some "a1")

        FileSystemChange.Changed ("file1.txt", Some "a1")

        FileSystemChange.Created ("file2.txt", Some "a2")

        FileSystemChange.Changed ("file2.txt", Some "a2")



        FileSystemChange.Changed ("file1.txt", Some "b1")

        FileSystemChange.Changed ("file2.txt", Some "b2")



        FileSystemChange.Renamed ("file1.txt", ("file_1.txt", Some "b1"))

        FileSystemChange.Renamed ("file2.txt", ("file_2.txt", Some "b2"))



        FileSystemChange.Changed ("file_1.txt", Some "c1")

        FileSystemChange.Changed ("file_2.txt", Some "c2")



        FileSystemChange.Deleted "file_1.txt"

        FileSystemChange.Deleted "file_2.txt"

    ]]



run

|> retryFn 3

|> _equal (Some ())



╭─[ 5.89s - stdout ]───────────────────────────────────────────────────────────╮

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│ 00:00:17 #51 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ 00:00:17 #52 [Debug] testEventsRaw / eventsLog:                              │

│ 0 / 638430208506095348 / Created ("file1.txt", Some "a1")                    │

│ 1 / 638430208506095349 / Changed ("file1.txt", Some "a1")                    │

│ 39549 / 638430208506134898 / Changed ("file1.txt", Some "a1")                │

│ 1533 / 638430208506136431 / Created ("file2.txt", Some "a2")                 │

│ 1 / 638430208506136432 / Changed ("file2.txt", Some "a2")                    │

│ 114 / 638430208506136546 / Changed ("file2.txt", Some "a2")                  │

│ 2549795 / 638430208508686341 / Changed ("file1.txt", Some "b1")              │

│ 2615 / 638430208508688956 / Changed ("file1.txt", Some "b1")                 │

│ 13442 / 638430208508702398 / Changed ("file2.txt", Some "b2")                │

│ 4849 / 638430208508707247 / Changed ("file2.txt", Some "b2")                 │

│ 2622614 / 638430208511329861 / Renamed ("file1.txt", ("file_1.txt", Some     │

│ "b1"))                                                                       │

│ 3535 / 638430208511333396 / Renamed ("file2.txt", ("file_2.txt", Some "b2")) │

│ 2623929 / 638430208513957325 / Changed ("file_1.txt", Some "c1")             │

│ 1685 / 638430208513959010 / Changed ("file_1.txt", Some "c1")                │

│ 8613 / 638430208513967623 / Changed ("file_2.txt", Some "c2")                │

│ 1906 / 638430208513969529 / Changed ("file_2.txt", Some "c2")                │

│ 2660484 / 638430208516630013 / Deleted "file_1.txt"                          │

│ 1782 / 638430208516631795 / Deleted "file_2.txt"                             │

│ FSharpList<FileSystemChange>                                                 │

│       - path: file1.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: a1                                                          │

│       - path: file1.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: a1                                                          │

│       - path: file2.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: a2                                                          │

│       - path: file2.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: a2                                                          │

│       - path: file1.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: b1                                                          │

│       - path: file2.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: b2                                                          │

│       - oldPath: file1.txt                                                   │

│         Item2:         - file_1.txt                                          │

│         - FSharpOption<String>                                               │

│             Value: b1                                                        │

│       - oldPath: file2.txt                                                   │

│         Item2:         - file_2.txt                                          │

│         - FSharpOption<String>                                               │

│             Value: b2                                                        │

│       - path: file_1.txt                                                     │

│         content: FSharpOption<String>                                        │

│           Value: c1                                                          │

│       - path: file_2.txt                                                     │

│         content: FSharpOption<String>                                        │

│           Value: c2                                                          │

│       - path: file_1.txt                                                     │

│       - path: file_2.txt                                                     │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ #### slow (test)                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline write path = async {

    let n = 2



    let contents =

        [[ 1 .. n ]]

        |> List.map (string >> String.replicate 1_000_000)



    for i = 1 to n do

        do! $"{contents.[[i - 1]]}a" |> writeAllTextAsync (path </> 

$"file{i}.txt")



    do! Async.Sleep 1500



    for i = 1 to n do

        do! $"{contents.[[i - 1]]}b" |> writeAllTextAsync (path </> 

$"file{i}.txt")



    do! Async.Sleep 1500



    for i = 1 to n do

        do! path </> $"file{i}.txt" |> moveFileAsync (path </> $"file_{i}.txt") 

|> Async.Ignore



    do! Async.Sleep 1500



    for i = 1 to n do

        do! $"{contents.[[i - 1]]}c" |> writeAllTextAsync (path </> 

$"file_{i}.txt")



    do! Async.Sleep 1500



    for i = 1 to n do

        do! deleteFileAsync (path </> $"file_{i}.txt") |> Async.Ignore



    do! Async.Sleep 1500

}



let inline run () =

    let events =

        testEventsRaw watchDirectory write

        |> List.map (function

            | FileSystemChange.Changed (path, Some content) ->

                FileSystemChange.Changed (path, content |> Seq.distinct |> 

Seq.map string |> String.concat "" |> Some)

            | FileSystemChange.Created (path, Some content) ->

                FileSystemChange.Created (path, content |> Seq.distinct |> 

Seq.map string |> String.concat "" |> Some)

            | FileSystemChange.Renamed (oldPath, (newPath, Some content)) ->

                FileSystemChange.Renamed (

                    oldPath,

                    (newPath, content |> Seq.distinct |> Seq.map string |> 

String.concat "" |> Some)

                )

            | event -> event

        )



    events

    |> _sequenceEqual [[

        FileSystemChange.Created ("file1.txt", Some "1a")

        FileSystemChange.Changed ("file1.txt", Some "1a")

        FileSystemChange.Created ("file2.txt", Some "2a")

        FileSystemChange.Changed ("file2.txt", Some "2a")



        FileSystemChange.Changed ("file1.txt", Some "1b")

        FileSystemChange.Changed ("file2.txt", Some "2b")



        FileSystemChange.Renamed ("file1.txt", ("file_1.txt", Some "1b"))

        FileSystemChange.Renamed ("file2.txt", ("file_2.txt", Some "2b"))



        FileSystemChange.Changed ("file_1.txt", Some "1c")

        FileSystemChange.Changed ("file_2.txt", Some "2c")



        FileSystemChange.Deleted "file_1.txt"

        FileSystemChange.Deleted "file_2.txt"

    ]]



run

|> retryFn 5

|> _equal (Some ())



╭─[ 13.56s - stdout ]──────────────────────────────────────────────────────────╮

│ 00:00:24 #53 [Debug] watchWithFilter / readContent / retry: 0 / ex:          │

│ System.AggregateException: One or more errors occurred. (The process cannot  │

│ access the file                                                              │

│ 'C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1627-3722-2204-22ce │

│ 4dd046e9\file1.txt' because it is being used by another process.)            │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│ 00:00:31 #54 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ 00:00:31 #55 [Debug] testEventsRaw / eventsLog:                              │

│ 0 / 638430208574986633 / Created  ("file1.txt",   Some                       │

│ "1111111111111111111111111111111111111                                       │

│ 1 / 638430208574986634 / Changed  ("file1.txt",   Some                       │

│ "1111111111111111111111111111111111111                                       │

│ 80747 / 638430208575067381 / Changed  ("file1.txt",   Some                   │

│ "111111111111111111111111111111111                                           │

│ 16079 / 638430208575083460 / Created  ("file2.txt",   Some                   │

│ "222222222222222222222222222222222                                           │

│ 1 / 638430208575083461 / Changed  ("file2.txt",   Some                       │

│ "2222222222222222222222222222222222222                                       │

│ 64235 / 638430208575147696 / Changed  ("file2.txt",   Some                   │

│ "222222222222222222222222222222222                                           │

│ 15288323 / 638430208590436019 / Changed  ("file1.txt",   Some                │

│ "111111111111111111111111111111                                              │

│ 254883 / 638430208590690902 / Changed  ("file1.txt",   Some                  │

│ "11111111111111111111111111111111                                            │

│ 48682 / 638430208590739584 / Changed  ("file2.txt",   Some                   │

│ "222222222222222222222222222222222                                           │

│ 103335 / 638430208590842919 / Changed  ("file2.txt",   Some                  │

│ "22222222222222222222222222222222                                            │

│ 15365344 / 638430208606208263 / Renamed  ("file1.txt",   ("file_1.txt",      │

│ Some      "1111111111                                                        │

│ 5933 / 638430208606214196 / Renamed  ("file2.txt",   ("file_2.txt",    Some  │

│ "22222222222222                                                              │

│ 15125365 / 638430208621339561 / Changed  ("file_1.txt",   Some               │

│ "11111111111111111111111111111                                               │

│ 66007 / 638430208621405568 / Changed  ("file_1.txt",   Some                  │

│ "11111111111111111111111111111111                                            │

│ 36220 / 638430208621441788 / Changed  ("file_2.txt",   Some                  │

│ "22222222222222222222222222222222                                            │

│ 80381 / 638430208621522169 / Changed  ("file_2.txt",   Some                  │

│ "22222222222222222222222222222222                                            │

│ 15168371 / 638430208636690540 / Deleted "file_1.txt"                         │

│ 7673 / 638430208636698213 / Deleted "file_2.txt"                             │

│ FSharpList<FileSystemChange>                                                 │

│       - path: file1.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: 1a                                                          │

│       - path: file1.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: 1a                                                          │

│       - path: file2.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: 2a                                                          │

│       - path: file2.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: 2a                                                          │

│       - path: file1.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: 1b                                                          │

│       - path: file2.txt                                                      │

│         content: FSharpOption<String>                                        │

│           Value: 2b                                                          │

│       - oldPath: file1.txt                                                   │

│         Item2:         - file_1.txt                                          │

│         - FSharpOption<String>                                               │

│             Value: 1b                                                        │

│       - oldPath: file2.txt                                                   │

│         Item2:         - file_2.txt                                          │

│         - FSharpOption<String>                                               │

│             Value: 2b                                                        │

│       - path: file_1.txt                                                     │

│         content: FSharpOption<String>                                        │

│           Value: 1c                                                          │

│       - path: file_2.txt                                                     │

│         content: FSharpOption<String>                                        │

│           Value: 2c                                                          │

│       - path: file_1.txt                                                     │

│       - path: file_2.txt                                                     │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ### testEventsSorted (test)                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline sortEvent event =

    match event with

    | FileSystemChange.Failure _ -> 0

    | FileSystemChange.Created _ -> 1

    | FileSystemChange.Changed _ -> 2

    | FileSystemChange.Renamed (_oldPath, _) -> 3

    | FileSystemChange.Deleted _ -> 4



let inline formatEvents events =

    events

    |> Seq.toList

    |> List.sortBy (snd >> sortEvent)

    |> List.choose (fun (ticks, event) ->

        match event with

        | FileSystemChange.Failure _ ->

            None

        | FileSystemChange.Changed (path, _) ->

            Some (ticks, System.IO.Path.GetFileName path, nameof 

FileSystemChangeType.Changed)

        | FileSystemChange.Created (path, _) ->

            Some (ticks, System.IO.Path.GetFileName path, nameof 

FileSystemChangeType.Created)

        | FileSystemChange.Deleted path ->

            Some (ticks, System.IO.Path.GetFileName path, nameof 

FileSystemChangeType.Deleted)

        | FileSystemChange.Renamed (_oldPath, (path, _)) ->

            Some (ticks, System.IO.Path.GetFileName path, nameof 

FileSystemChangeType.Renamed)

    )

    |> List.sortBy (fun (_, path, _) -> path)

    |> List.distinctBy (fun (_, path, event) -> path, event)



let inline testEventsSorted

    (watchFn : string -> FSharp.Control.AsyncSeq<int64 * FileSystemChange> * 

IDisposable)

    write

    =

    let path = createTempDirectory ()

    let stream, disposable = watchFn path



    let events = System.Collections.Concurrent.ConcurrentBag ()



    let inline iter () =

        stream

        |> FSharp.Control.AsyncSeq.iterAsyncParallel (fun event -> async { 

events.Add event })



    let run = async {

        let! _ = iter () |> Async.StartChild

        do! Async.Sleep 250

        return! write path

    }



    try

        run

        |> Async.runWithTimeout 5000

        |> _equal (Some ())

    finally

        disposable.Dispose ()

        deleteDirectoryAsync path |> Async.Ignore |> Async.RunSynchronously



    let events = formatEvents events



    let eventMap =

        events

        |> List.map (fun (ticks, path, event) -> path, (event, ticks))

        |> List.groupBy fst

        |> List.map (fun (path, events) ->

            let event, _ticks =

                events

                |> List.map snd

                |> List.sortByDescending snd

                |> List.head



            path, event

        )

        |> Map.ofList



    let eventList =

        events

        |> List.map (fun (_ticks, path, event) -> path, event)



    eventMap, eventList



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ #### create and delete (test)                                                │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline write path = async {

    let n = 3



    for i = 1 to n do

        do! $"{i}" |> writeAllTextAsync (path </> $"file{i}.txt")



    for i = 1 to n do

        do! deleteFileAsync (path </> $"file{i}.txt") |> Async.Ignore

    

    do! Async.Sleep 150

}



let inline run () =

    let eventMap, eventList = testEventsSorted (watchDirectory (fun _ -> false))

write



    [[

        "file1.txt", nameof FileSystemChangeType.Created

        "file1.txt", nameof FileSystemChangeType.Changed

        "file1.txt", nameof FileSystemChangeType.Deleted



        "file2.txt", nameof FileSystemChangeType.Created

        "file2.txt", nameof FileSystemChangeType.Changed

        "file2.txt", nameof FileSystemChangeType.Deleted



        "file3.txt", nameof FileSystemChangeType.Created

        "file3.txt", nameof FileSystemChangeType.Changed

        "file3.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> _sequenceEqual eventList



    [[

        "file1.txt", nameof FileSystemChangeType.Deleted

        "file2.txt", nameof FileSystemChangeType.Deleted

        "file3.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> Map.ofList

    |> _sequenceEqual eventMap



run

|> retryFn 3

|> _equal (Some ())



╭─[ 4.19s - stdout ]───────────────────────────────────────────────────────────╮

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│ 00:00:36 #56 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ FSharpList<Tuple<String,String>>                                             │

│ ( file1.txt, Created )                                                       │

│ ( file1.txt, Changed )                                                       │

│ ( file1.txt, Deleted )                                                       │

│ ( file2.txt, Created )                                                       │

│ ( file2.txt, Changed )                                                       │

│ ( file2.txt, Deleted )                                                       │

│ ( file3.txt, Created )                                                       │

│ ( file3.txt, Changed )                                                       │

│ ( file3.txt, Deleted )                                                       │

│ FSharpMap<String,String>                                                     │

│       - Key: file1.txt                                                       │

│         Value: Deleted                                                       │

│       - Key: file2.txt                                                       │

│         Value: Deleted                                                       │

│       - Key: file3.txt                                                       │

│         Value: Deleted                                                       │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ #### change (test)                                                           │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline write path = async {

    let n = 2



    for i = 1 to n do

        do! $"{i}" |> writeAllTextAsync (path </> $"file{i}.txt")



    for i = 1 to n do

        do! "" |> writeAllTextAsync (path </> $"file{i}.txt")



    for i = 1 to n do

        do! deleteFileAsync (path </> $"file{i}.txt") |> Async.Ignore

    

    do! Async.Sleep 150

}



let inline run () =

    let eventMap, eventList = testEventsSorted (watchDirectory (fun _ -> false))

write



    [[

        "file1.txt", nameof FileSystemChangeType.Created

        "file1.txt", nameof FileSystemChangeType.Changed

        "file1.txt", nameof FileSystemChangeType.Deleted



        "file2.txt", nameof FileSystemChangeType.Created

        "file2.txt", nameof FileSystemChangeType.Changed

        "file2.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> _sequenceEqual eventList



    [[

        "file1.txt", nameof FileSystemChangeType.Deleted

        "file2.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> Map.ofList

    |> _sequenceEqual eventMap



run

|> retryFn 3

|> _equal (Some ())



╭─[ 5.07s - stdout ]───────────────────────────────────────────────────────────╮

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│ 00:00:41 #57 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ FSharpList<Tuple<String,String>>                                             │

│ ( file1.txt, Created )                                                       │

│ ( file1.txt, Changed )                                                       │

│ ( file1.txt, Deleted )                                                       │

│ ( file2.txt, Created )                                                       │

│ ( file2.txt, Changed )                                                       │

│ ( file2.txt, Deleted )                                                       │

│ FSharpMap<String,String>                                                     │

│       - Key: file1.txt                                                       │

│         Value: Deleted                                                       │

│       - Key: file2.txt                                                       │

│         Value: Deleted                                                       │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ #### rename (test)                                                           │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline write path = async {

    let n = 2



    for i = 1 to n do

        do! $"{i}" |> writeAllTextAsync (path </> $"file{i}.txt")



    for i = 1 to n do

        do! path </> $"file{i}.txt" |> moveFileAsync (path </> $"file_{i}.txt") 

|> Async.Ignore



    for i = 1 to n do

        do! deleteFileAsync (path </> $"file_{i}.txt") |> Async.Ignore

    

    do! Async.Sleep 150

}



let inline run () =

    let eventMap, eventList = testEventsSorted (watchDirectory (fun _ -> false))

write



    [[

        "file1.txt", nameof FileSystemChangeType.Created

        "file1.txt", nameof FileSystemChangeType.Changed

        "file2.txt", nameof FileSystemChangeType.Created

        "file2.txt", nameof FileSystemChangeType.Changed



        "file_1.txt", nameof FileSystemChangeType.Renamed

        "file_1.txt", nameof FileSystemChangeType.Deleted



        "file_2.txt", nameof FileSystemChangeType.Renamed

        "file_2.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> _sequenceEqual eventList



    [[

        "file1.txt", nameof FileSystemChangeType.Changed

        "file2.txt", nameof FileSystemChangeType.Changed

        "file_1.txt", nameof FileSystemChangeType.Deleted

        "file_2.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> Map.ofList

    |> _sequenceEqual eventMap



run

|> retryFn 3

|> _equal (Some ())



╭─[ 5.68s - stdout ]───────────────────────────────────────────────────────────╮

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│ 00:00:46 #58 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ FSharpList<Tuple<String,String>>                                             │

│ ( file1.txt, Created )                                                       │

│ ( file1.txt, Changed )                                                       │

│ ( file2.txt, Created )                                                       │

│ ( file2.txt, Changed )                                                       │

│ ( file_1.txt, Renamed )                                                      │

│ ( file_1.txt, Deleted )                                                      │

│ ( file_2.txt, Renamed )                                                      │

│ ( file_2.txt, Deleted )                                                      │

│ FSharpMap<String,String>                                                     │

│       - Key: file1.txt                                                       │

│         Value: Changed                                                       │

│       - Key: file2.txt                                                       │

│         Value: Changed                                                       │

│       - Key: file_1.txt                                                      │

│         Value: Deleted                                                       │

│       - Key: file_2.txt                                                      │

│         Value: Deleted                                                       │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ #### full (test)                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let inline write path = async {

    let n = 2



    for i = 1 to n do

        do! $"{i}" |> writeAllTextAsync (path </> $"file{i}.txt")



    for i = 1 to n do

        do! "" |> writeAllTextAsync (path </> $"file{i}.txt")



    for i = 1 to n do

        do! path </> $"file{i}.txt" |> moveFileAsync (path </> $"file_{i}.txt") 

|> Async.Ignore



    for i = 1 to n do

        do! $"{i}" |> writeAllTextAsync (path </> $"file_{i}.txt")



    for i = 1 to n do

        do! deleteFileAsync (path </> $"file_{i}.txt") |> Async.Ignore

    

    do! Async.Sleep 150

}



let inline run () =

    let eventMap, eventList = testEventsSorted (watchDirectory (fun _ -> false))

write



    [[

        "file1.txt", nameof FileSystemChangeType.Created

        "file1.txt", nameof FileSystemChangeType.Changed

        "file2.txt", nameof FileSystemChangeType.Created

        "file2.txt", nameof FileSystemChangeType.Changed



        "file_1.txt", nameof FileSystemChangeType.Changed

        "file_1.txt", nameof FileSystemChangeType.Renamed

        "file_1.txt", nameof FileSystemChangeType.Deleted



        "file_2.txt", nameof FileSystemChangeType.Changed

        "file_2.txt", nameof FileSystemChangeType.Renamed

        "file_2.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> _sequenceEqual eventList



    [[

        "file1.txt", nameof FileSystemChangeType.Changed

        "file2.txt", nameof FileSystemChangeType.Changed

        "file_1.txt", nameof FileSystemChangeType.Deleted

        "file_2.txt", nameof FileSystemChangeType.Deleted

    ]]

    |> Map.ofList

    |> _sequenceEqual eventMap



run

|> retryFn 3

|> _equal (Some ())



╭─[ 6.52s - stdout ]───────────────────────────────────────────────────────────╮

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│ 00:00:53 #59 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ FSharpList<Tuple<String,String>>                                             │

│ ( file1.txt, Created )                                                       │

│ ( file1.txt, Changed )                                                       │

│ ( file2.txt, Created )                                                       │

│ ( file2.txt, Changed )                                                       │

│ ( file_1.txt, Changed )                                                      │

│ ( file_1.txt, Renamed )                                                      │

│ ( file_1.txt, Deleted )                                                      │

│ ( file_2.txt, Changed )                                                      │

│ ( file_2.txt, Renamed )                                                      │

│ ( file_2.txt, Deleted )                                                      │

│ FSharpMap<String,String>                                                     │

│       - Key: file1.txt                                                       │

│         Value: Changed                                                       │

│       - Key: file2.txt                                                       │

│         Value: Changed                                                       │

│       - Key: file_1.txt                                                      │

│         Value: Deleted                                                       │

│       - Key: file_2.txt                                                      │

│         Value: Deleted                                                       │

│ FSharpOption<Unit>                                                           │

│       Value: <null>                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook FileSystem.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 465403 bytes to FileSystem.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Networking (Polyglot)                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/argu/6.1.5/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs

#!import ../../lib/fsharp/CommonFSharp.fs

#!import ../../lib/fsharp/Async.fs

#!import ../../lib/fsharp/Runtime.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## testPortOpen                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline testPortOpen port = async {

    let! ct = Async.CancellationToken

    use client = new System.Net.Sockets.TcpClient ()

    try

        do! client.ConnectAsync ("127.0.0.1", port, ct) |> 

Async.awaitValueTaskUnit

        return true

    with ex ->

        trace Verbose (fun () -> $"testPortOpen / ex: {ex |> printException}") 

getLocals

        return false

}



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



testPortOpen 65536

|> Async.runWithTimeout 120

|> _equal (Some false)



╭─[ 207.26ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Verbose] testPortOpen / ex: System.ArgumentOutOfRangeException: │

│ Specified argument was out of the range of valid values. (Parameter 'port')  │

│ FSharpOption<Boolean>                                                        │

│       Value: False                                                           │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline testPortOpenTimeout timeout port = async {

    let! result =

        testPortOpen port

        |> Async.runWithTimeoutAsync timeout

    return

        match result with

        | None -> false

        | Some result -> result

}



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



testPortOpenTimeout 120 65535

|> Async.RunSynchronously

|> _equal false



╭─[ 278.73ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:00 #2 [Debug] runWithTimeoutAsync / timeout: 120                       │

│ False                                                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## waitForPortAccess                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline waitForPortAccess timeout status port =

    let rec loop retry = async {

        let! isPortOpen =

            match timeout with

            | None -> testPortOpen port

            | Some timeout -> testPortOpenTimeout timeout port

        if isPortOpen = status

        then return retry

        else

            if retry % 100 = 0 then

                let getLocals () = $"port: {port} / retry: {retry} / {getLocals 

()}"

                trace Verbose (fun () -> "waitForPortAccess") getLocals

            do! Async.Sleep 10

            return! loop (retry + 1)

    }

    loop 0



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let port = 5555



let inline lockPort () = async {

    trace Debug (fun () -> "_1") getLocals

    do! Async.Sleep 5000

    use listener = new System.Net.Sockets.TcpListener 

(System.Net.IPAddress.Parse "127.0.0.1", port)

    trace Debug (fun () -> "_2") getLocals

    listener.Start ()

    trace Debug (fun () -> "_3") getLocals

    do! Async.Sleep 2000

    trace Debug (fun () -> "_4") getLocals

    listener.Stop ()

    trace Debug (fun () -> "_5") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    let! child = lockPort () |> Async.StartChild

    trace Debug (fun () -> "2") getLocals

    do! Async.Sleep 1

    trace Debug (fun () -> "3") getLocals

    let! retries1 = waitForPortAccess None true port

    trace Debug (fun () -> "4") getLocals

    let! retries2 = waitForPortAccess None false port

    trace Debug (fun () -> "5") getLocals

    do! child

    trace Debug (fun () -> "6") getLocals

    return retries1, retries2

}

|> Async.runWithTimeout 20000

|> function

    | Some (retries1, retries2) ->

        retries1

        |> _isBetween

            (if Runtime.isWindows () then 2 else 2)

            (if Runtime.isWindows () then 5 else 1500)



        retries2

        |> _isBetween

            (if Runtime.isWindows () then 80 else 80)

            (if Runtime.isWindows () then 150 else 600)



        true

    | _ -> false

|> _equal true



╭─[ 9.70s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:01 #3 [Debug] 1                                                        │

│ 00:00:01 #4 [Debug] _1                                                       │

│ 00:00:01 #5 [Debug] 2                                                        │

│ 00:00:01 #6 [Debug] 3                                                        │

│ 00:00:03 #7 [Verbose] testPortOpen / ex: System.AggregateException: One or   │

│ more errors occurred. (No connection could be made because the target        │

│ machine actively refused it.)                                                │

│ 00:00:03 #8 [Verbose] waitForPortAccess / port: 5555 / retry: 0              │

│ 00:00:05 #9 [Verbose] testPortOpen / ex: System.AggregateException: One or   │

│ more errors occurred. (No connection could be made because the target        │

│ machine actively refused it.)                                                │

│ 00:00:06 #10 [Debug] _2                                                      │

│ 00:00:06 #11 [Debug] _3                                                      │

│ 00:00:06 #12 [Debug] 4                                                       │

│ 00:00:06 #13 [Verbose] waitForPortAccess / port: 5555 / retry: 0             │

│ 00:00:08 #14 [Verbose] waitForPortAccess / port: 5555 / retry: 100           │

│ 00:00:08 #15 [Debug] _4                                                      │

│ 00:00:08 #16 [Debug] _5                                                      │

│ 00:00:10 #17 [Verbose] testPortOpen / ex: System.AggregateException: One or  │

│ more errors occurred. (No connection could be made because the target        │

│ machine actively refused it.)                                                │

│ 00:00:10 #18 [Debug] 5                                                       │

│ 00:00:10 #19 [Debug] 6                                                       │

│ 2                                                                            │

│ 2                                                                            │

│ 2                                                                            │

│ 121                                                                          │

│ 121                                                                          │

│ 121                                                                          │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let port = 5555



let inline lockPort () = async {

    trace Debug (fun () -> "_1") getLocals

    do! Async.Sleep 500

    use listener = new System.Net.Sockets.TcpListener 

(System.Net.IPAddress.Parse "127.0.0.1", port)

    trace Debug (fun () -> "_2") getLocals

    listener.Start ()

    trace Debug (fun () -> "_3") getLocals

    do! Async.Sleep 200

    trace Debug (fun () -> "_4") getLocals

    listener.Stop ()

    trace Debug (fun () -> "_5") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    let! child = lockPort () |> Async.StartChild

    trace Debug (fun () -> "2") getLocals

    do! Async.Sleep 1

    trace Debug (fun () -> "3") getLocals

    let! retries1 = waitForPortAccess (Some 60) true port

    trace Debug (fun () -> "4") getLocals

    let! retries2 = waitForPortAccess (Some 60) false port

    trace Debug (fun () -> "5") getLocals

    do! child

    trace Debug (fun () -> "6") getLocals

    return retries1, retries2

}

|> Async.runWithTimeout 2000

|> function

    | Some (retries1, retries2) ->

        retries1

        |> _isBetween

            (if Runtime.isWindows () then 4 else 2)

            (if Runtime.isWindows () then 15 else 150)



        retries2

        |> _isBetween

            (if Runtime.isWindows () then 5 else 0)

            (if Runtime.isWindows () then 20 else 60)



        true

    | _ -> false

|> _equal true



╭─[ 1.67s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:11 #20 [Debug] 1                                                       │

│ 00:00:11 #22 [Debug] 2                                                       │

│ 00:00:11 #22 [Debug] _1                                                      │

│ 00:00:11 #23 [Debug] 3                                                       │

│ 00:00:11 #24 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:11 #25 [Verbose] waitForPortAccess / port: 5555 / retry: 0             │

│ 00:00:11 #26 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:11 #27 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:11 #28 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:11 #29 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:11 #30 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:11 #31 [Debug] _2                                                      │

│ 00:00:11 #32 [Debug] _3                                                      │

│ 00:00:12 #33 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:12 #34 [Debug] 4                                                       │

│ 00:00:12 #35 [Verbose] waitForPortAccess / port: 5555 / retry: 0             │

│ 00:00:12 #36 [Debug] _4                                                      │

│ 00:00:12 #37 [Debug] _5                                                      │

│ 00:00:12 #38 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:12 #39 [Debug] 5                                                       │

│ 00:00:12 #40 [Debug] 6                                                       │

│ 7                                                                            │

│ 7                                                                            │

│ 7                                                                            │

│ 8                                                                            │

│ 8                                                                            │

│ 8                                                                            │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## getAvailablePort                                                          │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getAvailablePort timeout initialPort =

    let rec loop port = async {

        let! isPortOpen =

            match timeout with

            | None -> testPortOpen port

            | Some timeout -> testPortOpenTimeout timeout port

        if not isPortOpen

        then return port

        else return! loop (port + 1)

    }

    loop initialPort



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let port = 5555



let inline lockPorts () = async {

    trace Debug (fun () -> "_1") getLocals

    use listener1 = new System.Net.Sockets.TcpListener 

(System.Net.IPAddress.Parse "127.0.0.1", port)

    use listener2 = new System.Net.Sockets.TcpListener 

(System.Net.IPAddress.Parse "127.0.0.1", port + 1)

    trace Debug (fun () -> "_2") getLocals

    listener1.Start ()

    listener2.Start ()

    trace Debug (fun () -> "_3") getLocals

    do! Async.Sleep 4000

    trace Debug (fun () -> "_4") getLocals

    listener1.Stop ()

    listener2.Stop ()

    trace Debug (fun () -> "_5") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    let! child = lockPorts () |> Async.StartChild

    trace Debug (fun () -> "2") getLocals

    do! Async.Sleep 240

    trace Debug (fun () -> "3") getLocals

    let! availablePort = getAvailablePort None port

    trace Debug (fun () -> "4") getLocals

    let! retries = waitForPortAccess None false port

    trace Debug (fun () -> "5") getLocals

    do! child

    trace Debug (fun () -> "6") getLocals

    return availablePort, retries

}

|> Async.runWithTimeout 15000

|> function

    | Some (availablePort, retries) ->

        availablePort |> _equal (port + 2)



        retries

        |> _isBetween

            (if Runtime.isWindows () then 100 else 100)

            (if Runtime.isWindows () then 150 else 1200)



        true

    | _ -> false

|> _equal true



╭─[ 6.92s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:13 #41 [Debug] 1                                                       │

│ 00:00:13 #43 [Debug] 2                                                       │

│ 00:00:13 #42 [Debug] _1                                                      │

│ 00:00:13 #44 [Debug] _2                                                      │

│ 00:00:13 #45 [Debug] _3                                                      │

│ 00:00:13 #46 [Debug] 3                                                       │

│ 00:00:15 #47 [Verbose] testPortOpen / ex: System.AggregateException: One or  │

│ more errors occurred. (No connection could be made because the target        │

│ machine actively refused it.)                                                │

│ 00:00:15 #48 [Debug] 4                                                       │

│ 00:00:15 #49 [Verbose] waitForPortAccess / port: 5555 / retry: 0             │

│ 00:00:17 #50 [Verbose] waitForPortAccess / port: 5555 / retry: 100           │

│ 00:00:17 #51 [Debug] _4                                                      │

│ 00:00:17 #52 [Debug] _5                                                      │

│ 00:00:19 #53 [Verbose] testPortOpen / ex: System.AggregateException: One or  │

│ more errors occurred. (No connection could be made because the target        │

│ machine actively refused it.)                                                │

│ 00:00:19 #54 [Debug] 5                                                       │

│ 00:00:19 #55 [Debug] 6                                                       │

│ 5557                                                                         │

│ 112                                                                          │

│ 112                                                                          │

│ 112                                                                          │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let port = 5555



let inline lockPorts () = async {

    trace Debug (fun () -> "_1") getLocals

    use listener1 = new System.Net.Sockets.TcpListener 

(System.Net.IPAddress.Parse "127.0.0.1", port)

    use listener2 = new System.Net.Sockets.TcpListener 

(System.Net.IPAddress.Parse "127.0.0.1", port + 1)

    trace Debug (fun () -> "_2") getLocals

    listener1.Start ()

    listener2.Start ()

    trace Debug (fun () -> "_3") getLocals

    do! Async.Sleep 400

    trace Debug (fun () -> "_4") getLocals

    listener1.Stop ()

    listener2.Stop ()

    trace Debug (fun () -> "_5") getLocals

}



async {

    trace Debug (fun () -> "1") getLocals

    let! child = lockPorts () |> Async.StartChild

    trace Debug (fun () -> "2") getLocals

    do! Async.Sleep 240

    trace Debug (fun () -> "3") getLocals

    let! availablePort = getAvailablePort (Some 60) port

    trace Debug (fun () -> "4") getLocals

    let! retries = waitForPortAccess (Some 60) false port

    trace Debug (fun () -> "5") getLocals

    do! child

    trace Debug (fun () -> "6") getLocals

    return availablePort, retries

}

|> Async.runWithTimeout 1500

|> function

    | Some (availablePort, retries) ->

        availablePort |> _equal (port + 2)



        retries

        |> _isBetween

            (if Runtime.isWindows () then 2 else 1)

            (if Runtime.isWindows () then 10 else 120)



        true

    | _ -> false

|> _equal true



╭─[ 1.09s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:20 #56 [Debug] 1                                                       │

│ 00:00:20 #58 [Debug] 2                                                       │

│ 00:00:20 #58 [Debug] _1                                                      │

│ 00:00:20 #59 [Debug] _2                                                      │

│ 00:00:20 #60 [Debug] _3                                                      │

│ 00:00:20 #61 [Debug] 3                                                       │

│ 00:00:20 #62 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:20 #63 [Debug] 4                                                       │

│ 00:00:20 #64 [Verbose] waitForPortAccess / port: 5555 / retry: 0             │

│ 00:00:20 #65 [Debug] _4                                                      │

│ 00:00:20 #66 [Debug] _5                                                      │

│ 00:00:20 #67 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:20 #68 [Debug] 5                                                       │

│ 00:00:20 #69 [Debug] 6                                                       │

│ 5557                                                                         │

│ 5                                                                            │

│ 5                                                                            │

│ 5                                                                            │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Networking.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 325120 bytes to Networking.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Runtime (Polyglot)                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"

#r 

@"../../../../../../../.nuget/packages/argu/6.1.5/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs

#!import ../../lib/fsharp/CommonFSharp.fs

#!import ../../lib/fsharp/Async.fs

#!import ../../lib/fsharp/AsyncSeq.fs

#!import ../../lib/fsharp/Runtime.fs

#!import ../../lib/fsharp/FileSystem.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module AsyncSeq =



    open Common



    /// ## subscribeEvent



    let inline subscribeEvent (event: IEvent<'H, 'A>) map =

        let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

        System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

        |> FSharp.Control.AsyncSeq.ofObservableBuffered



    let subscribeToken (token : System.Threading.CancellationToken) =

        let tcs = new System.Threading.Tasks.TaskCompletionSource ()

        System.Action tcs.SetResult |> token.Register |> ignore

        let start = System.DateTime.Now.Ticks

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun (...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module FileSystem =



    open Common



    /// ## Operators



    module Operators =

        let inline (</>) a b =

            System.IO.Path.Combine (a, b)



    open Operators



    /// ## createTempDirectoryName



    let inline createTempDirectoryName () =

        let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name



        System.IO.Path.GetTempPath ()

        </> $"!{root}"

        </> string (newGuidFromDateTime System.DateTime.Now)



    /// ## createTempDirectory



    let inline createTempDirectory () =

        let tempFolder = createTempDirectoryName ()

        let result = System.IO.Directory.CreateDirectory tempFolder



        if not result.Exists then

            let ge...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



open FileSystem.Operators



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## isWindows                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let isWindows =

    fun () ->

        System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

            System.Runtime.InteropServices.OSPlatform.Windows

    |> memoize



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



isWindows ()



╭─[ 91.60ms - return value ]───────────────────────────────────────────────────╮

│ <div class="dni-plaintext"><pre>True</pre></div><style>                      │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## getExecutableSuffix                                                       │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getExecutableSuffix () =

    if isWindows ()

    then ".exe"

    else ""



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



getExecutableSuffix ()



╭─[ 22.38ms - return value ]───────────────────────────────────────────────────╮

│ .exe                                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## splitCommand                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type private CommandParseStep =

    | Start

    | Path of quoted: bool

    | Arguments



let splitCommand (command: string) =

    let rec loop (path, args) chars step =

        match chars, step with

        | ('"' | '\'') :: tail, _ when path = "" -> loop (path, args) tail (Path

true)

        | ('"' | '\'') :: tail, Path true -> loop (path, args) tail (Path false)

        | ' ' :: tail, Path true -> loop ($"{path} ", args) tail (Path true)

        | ' ' :: tail, (Start | Path _) -> loop (path, args) tail Arguments

        | char :: tail, Arguments -> loop (path, $"{args}{char}") tail Arguments

        | char :: tail, _ -> loop ($"{path}{char}", args) tail step

        | _, _ -> path |> String.replace @"\" "/", args

    loop ("", "") (command |> Seq.toList) Start



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



splitCommand ""

|> _equal ("", "")



splitCommand "/a/b/c"

|> _equal ("/a/b/c", "")



splitCommand "cat file.txt"

|> _equal ("cat", "file.txt")



splitCommand """..\..\file.exe file1.txt file2.txt"""

|> _equal ("../../file.exe", "file1.txt file2.txt")



splitCommand @"c:\dir\file.exe ""file1.txt file2.txt"""

|> _equal ("c:/dir/file.exe", @"""file1.txt file2.txt""")



splitCommand @"""..\..\dir name\file.exe"" ""file 1.txt"" file2.txt"

|> _equal ("../../dir name/file.exe", @"""file 1.txt"" file2.txt")



splitCommand @"""..\..\file 1.exe"" -c \\""echo 1\\"""

|> _equal ("../../file 1.exe", @"-c \\""echo 1\\""")



splitCommand @"..\..\file 1.exe -c \\""echo 1\\"""

|> _equal ("../../file", @"1.exe -c \\""echo 1\\""")



╭─[ 158.09ms - stdout ]────────────────────────────────────────────────────────╮

│ ( ,  )                                                                       │

│ ( /a/b/c,  )                                                                 │

│ ( cat, file.txt )                                                            │

│ ( ../../file.exe, file1.txt file2.txt )                                      │

│ ( c:/dir/file.exe, "file1.txt file2.txt" )                                   │

│ ( ../../dir name/file.exe, "file 1.txt" file2.txt )                          │

│ ( ../../file 1.exe, -c \\"echo 1\\" )                                        │

│ ( ../../file, 1.exe -c \\"echo 1\\" )                                        │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## executeAsync                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type ExecutionLine =

    {

        ProcessId : int

        Line : string

        Error : bool

    }



type ExecutionOptions =

    {

        Command : string

        WorkingDirectory : string option

        CancellationToken : System.Threading.CancellationToken option

        OnLine : (ExecutionLine -> Async<unit>) option

    }



let inline executeWithOptionsAsync (options : ExecutionOptions) = async {

    let fileName, arguments = options.Command |> splitCommand

    let workingDirectory = options.WorkingDirectory |> Option.defaultValue ""



    trace Debug (fun () -> $"executeAsync / options: {options}") getLocals



    let startInfo = System.Diagnostics.ProcessStartInfo (

        Arguments = arguments,

        CreateNoWindow = true,

        FileName = fileName,

        RedirectStandardError = true,

        RedirectStandardOutput = true,

        StandardOutputEncoding = System.Text.Encoding.UTF8,

        UseShellExecute = false,

        WorkingDirectory = workingDirectory

    )



    use proc = new System.Diagnostics.Process (StartInfo = startInfo)

    let output = System.Collections.Concurrent.ConcurrentStack<string> ()



    let inline event error (e: System.Diagnostics.DataReceivedEventArgs) = async

{

        if e.Data <> null then

            match options.OnLine with

            | Some onLine ->

                do!

                    onLine

                        {

                            ProcessId = proc.Id

                            Line = e.Data

                            Error = error

                        }

            | None -> ()



            trace

                Verbose

                (fun () -> $"> {e.Data}")

                Common.getLocals



            output.Push

                $"{

                    if error then '[['.ToString() else System.String.Empty

                }{

                    e.Data

                }{

                    if error then ']]'.ToString() else System.String.Empty

                }"

    }



    proc.OutputDataReceived.Add (event false >> Async.StartImmediate)

    proc.ErrorDataReceived.Add (event true >> Async.StartImmediate)



    if proc.Start () |> not

    then failwith $"executeAsync / proc.Start () error"



    proc.BeginErrorReadLine ()

    proc.BeginOutputReadLine ()



    let! ct =

        options.CancellationToken

        |> Option.defaultValue System.Threading.CancellationToken.None

        |> Async.mergeCancellationTokenWithDefaultAsync



    use reg = ct.Register (fun _ ->

        if not proc.HasExited then proc.Kill ()

    )



    let! exitCode = async {

        try

            do! proc.WaitForExitAsync ct |> Async.AwaitTask

            return proc.ExitCode

        with :? System.Threading.Tasks.TaskCanceledException as ex ->

            trace Warning (fun () -> $"executeAsync / WaitForExitAsync / ex: {ex

|> printException}") getLocals

            ex |> printException |> output.Push

            return System.Int32.MinValue

    }



    let output = output |> Seq.rev |> String.concat "\n"



    trace Debug (fun () ->

        $"executeAsync / exitCode: {exitCode} / output.Length: {output.Length}"

    ) getLocals



    return exitCode, output

}



let inline executeAsync command =

    executeWithOptionsAsync

        {

            Command = command

            CancellationToken = None

            OnLine = None

            WorkingDirectory = None

        }



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = FileSystem.createTempDirectory ()

let fileName = "test.txt"

let path = tempFolder </> fileName



async {

    let! exitCode, result = executeAsync @$"pwsh -c ""Get-Content {path}"""

    exitCode |> _equal 1

    result |> _stringContains "not exist"



    do! "0" |> FileSystem.writeAllTextAsync path



    return!

        executeWithOptionsAsync

            {

                Command = @$"pwsh -c ""Get-Content {fileName}"""

                CancellationToken = None

                OnLine = None

                WorkingDirectory = Some tempFolder

            }



}

|> Async.runWithTimeout 10000

|> function

    | Some (exitCode, output) ->

        exitCode |> _equal 0

        output |> _equal "0"



        true

    | _ -> false

|> _equal true



╭─[ 3.64s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] executeAsync / options: { Command =                      │

│    "pwsh -c "Get-Content                                                     │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1629-1150-5006-5f116 │

│ 3cd1826\test.txt""                                                           │

│   WorkingDirectory = None                                                    │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:01 #2 [Verbose] > Get-Content: Cannot find path              │

│ 'C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1629-1150-5006-5f11 │

│ 63cd1826\test.txt' because it does not exist.                              │

│ 00:00:01 #3 [Debug] executeAsync / exitCode: 1 / output.Length: 171          │

│ 1                                                                            │

│ [Get-Content: Cannot find path                                     │

│ 'C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1629-1150-5006-5f11 │

│ 63cd1826\test.txt' because it does not exist.]                             │

│ 00:00:01 #4 [Debug] executeAsync / options: { Command = "pwsh -c             │

│ "Get-Content test.txt""                                                      │

│   WorkingDirectory =                                                         │

│    Some                                                                      │

│                                                                              │

│ "C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1629-1150-5006-5f11 │

│ 63cd1826"                                                                    │

│   CancellationToken = None                                                   │

│   OnLine = None }                                                            │

│ 00:00:02 #5 [Verbose] > 0                                                    │

│ 00:00:02 #6 [Debug] executeAsync / exitCode: 0 / output.Length: 1            │

│ 0                                                                            │

│ 0                                                                            │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = FileSystem.createTempDirectory ()

let path = tempFolder </> "test.txt"



let command = @$"pwsh -c ""Get-Content {path}"""



async {

    do! "0" |> FileSystem.writeAllTextAsync path

    let cts = new System.Threading.CancellationTokenSource ()

    trace Debug (fun () -> "1") getLocals

    let! result =

        executeWithOptionsAsync

            {

                Command = command

                CancellationToken = Some cts.Token

                OnLine = None

                WorkingDirectory = None

            }

        |> Async.StartChild

    trace Debug (fun () -> "2") getLocals

    do! Async.Sleep 100

    trace Debug (fun () -> "3") getLocals

    cts.Cancel ()

    trace Debug (fun () -> "4") getLocals

    let! exitCode, output = result

    trace Debug (fun () -> "5") getLocals

    return exitCode, output

}

|> Async.runWithTimeout 10000

|> function

    | Some (exitCode, output) ->

        exitCode |> _equal -2147483648

        output |> _equal "System.Threading.Tasks.TaskCanceledException: A task 

was canceled."



        true

    | _ -> false

|> _equal true



╭─[ 785.06ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:03 #7 [Debug] 1                                                        │

│ 00:00:03 #9 [Debug] 2                                                        │

│ 00:00:03 #8 [Debug] executeAsync / options: { Command =                      │

│    "pwsh -c "Get-Content                                                     │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1629-1453-5329-5ae94 │

│ 78ac06d\test.txt""                                                           │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = None }                                                            │

│ 00:00:03 #10 [Debug] 3                                                       │

│ 00:00:03 #11 [Debug] 4                                                       │

│ 00:00:03 #12 [Warning] executeAsync / WaitForExitAsync / ex:                 │

│ System.Threading.Tasks.TaskCanceledException: A task was canceled.           │

│ 00:00:03 #13 [Debug] executeAsync / exitCode: -2147483648 / output.Length:   │

│ 66                                                                           │

│ 00:00:03 #14 [Debug] 5                                                       │

│ -2147483648                                                                  │

│ System.Threading.Tasks.TaskCanceledException: A task was canceled.           │

│ True                                                                         │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## splitArgs                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline splitArgs commandLine =

    commandLine

    |> System.CommandLine.Parsing.CommandLineStringSplitter.Instance.Split



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""a b "c d" e"""

|> splitArgs

|> Seq.toArray

|> _equal [[| "a"; "b"; "c d"; "e" |]]



╭─[ 33.72ms - stdout ]─────────────────────────────────────────────────────────╮

│ [ a, b, c d, e ]                                                             │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## parseArgs                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parseArgs<'T when 'T :> Argu.IArgParserTemplate> args =

    let assemblyName = 

System.Reflection.Assembly.GetEntryAssembly().GetName().Name

    let errorHandler : Argu.IExiter =

        if [[ "Microsoft.DotNet.Interactive.App"; "dotnet-repl" ]] |> 

List.contains assemblyName

        then Argu.ExceptionExiter ()

        else Argu.ProcessExiter (function Argu.ErrorCode.HelpText -> None | _ ->

Some System.ConsoleColor.Red)



    let parser =

        Argu.ArgumentParser.Create<'T> (

            programName = $"{assemblyName}{getExecutableSuffix ()}",

            errorHandler = errorHandler

        )



    parser.ParseCommandLine args



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



[[<RequireQualifiedAccess>]]

type Arguments =

    | [[<Argu.ArguAttributes.MainCommand; Argu.ArguAttributes.ExactlyOnce; 

Argu.ArguAttributes.Last>]]

        Paths of paths : string list



    interface Argu.IArgParserTemplate with

        member s.Usage =

            match s with

            | Paths _ -> nameof Paths



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Argu.ArgumentParser.Create<Arguments>().PrintUsage ()



╭─[ 108.91ms - return value ]──────────────────────────────────────────────────╮

│ USAGE: dotnet.exe [--help] <paths>...                                        │

│                                                                              │

│ PATHS:                                                                       │

│                                                                              │

│     <paths>...            Paths                                              │

│                                                                              │

│ OPTIONS:                                                                     │

│                                                                              │

│     --help                display this list of options.                      │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



fun () -> parseArgs<Arguments> [[||]] |> ignore

|> _throwsC (fun ex _ ->

    printException ex

    |> _stringContains "Argu.ArguParseException: ERROR: missing parameter 

'<paths>...'."

)



╭─[ 99.16ms - stdout ]─────────────────────────────────────────────────────────╮

│ FSI_0030+it@3-246                                                            │

│ Argu.ArguParseException: ERROR: missing parameter '<paths>...'.              │

│ USAGE: dotnet-repl.exe [--help] <paths>...                                   │

│                                                                              │

│ PATHS:                                                                       │

│                                                                              │

│     <paths>...            Paths                                              │

│                                                                              │

│ OPTIONS:                                                                     │

│                                                                              │

│     --help                display this list of options.                      │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parseAllArgs<'T when 'T :> Argu.IArgParserTemplate> args =

    args

    |> parseArgs<'T>

    |> fun results -> results.GetAllResults ()



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



[[<RequireQualifiedAccess>]]

type Arguments =

    | [[<Argu.ArguAttributes.MainCommand; Argu.ArguAttributes.ExactlyOnce; 

Argu.ArguAttributes.Last>]]

        Paths of paths : string list



    interface Argu.IArgParserTemplate with

        member s.Usage =

            match s with

            | Paths _ -> nameof Paths



parseAllArgs<Arguments> [[| "a b"; "c" |]]

|> _equal [[ Arguments.Paths [[ "a b"; "c" ]] ]]



╭─[ 98.03ms - stdout ]─────────────────────────────────────────────────────────╮

│ FSharpList<Arguments>                                                        │

│       - paths: [ a b, c ]                                                    │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline parseArgsMap<'T when 'T :> Argu.IArgParserTemplate> args =

    args

    |> parseAllArgs<'T>

    |> List.groupBy CommonFSharp.getUnionCaseName<'T>

    |> Map.ofList



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



parseArgsMap<Arguments> [[| "a b"; "c" |]]

|> _equal (

    [[ nameof Arguments.Paths, [[ Arguments.Paths [[ "a b"; "c" ]] ]] ]]

    |> Map.ofList

)



╭─[ 77.45ms - stdout ]─────────────────────────────────────────────────────────╮

│ FSharpMap<String,FSharpList<Arguments>>                                      │

│       - Key: Paths                                                           │

│         Value: FSharpList<Arguments>                                         │

│           - paths: [ a b, c ]                                                │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Runtime.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 339755 bytes to Runtime.dib.html



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Toml (Polyglot)                                                            │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/tomlyn/0.17.0/lib/net7.0/Tomlyn.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common



── fsharp ──────────────────────────────────────────────────────────────────────

let inline (/./) (table: Tomlyn.Model.TomlTable) (key: string) : 

Tomlyn.Model.TomlTable =

    table.[[key]] :?> Tomlyn.Model.TomlTable



let inline (/../) (table: Tomlyn.Model.TomlTable) (key: string) : 'T seq =

    table.[[key]] :?> Tomlyn.Model.TomlArray |> Seq.cast<'T>



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tomlContent =

    """

[[extension]]

paths = [["/a", "/b"]]

"""



let toml = Tomlyn.Toml.Parse tomlContent

let tomlModel = Tomlyn.Toml.ToModel toml



let paths : string seq = tomlModel /./ "extension" /../ "paths"



paths

|> Seq.toList

|> _equal [[ "/a"; "/b" ]]



╭─[ 180.13ms - stdout ]────────────────────────────────────────────────────────╮

│ [ /a, /b ]                                                                   │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Toml.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 277920 bytes to Toml.dib.html

00:00:00 #7 [Debug] writeDibCode / output: Fs / path: Threading.dib

00:00:00 #7 [Debug] writeDibCode / output: Fs / path: Crypto.dib

00:00:00 #7 [Debug] writeDibCode / output: Fs / path: Networking.dib

00:00:00 #7 [Debug] writeDibCode / output: Fs / path: Common.dib

00:00:00 #7 [Debug] writeDibCode / output: Fs / path: Async.dib

00:00:00 #7 [Debug] writeDibCode / output: Fs / path: AsyncSeq.dib

00:00:00 #7 [Debug] writeDibCode / output: Fs / path: FileSystem.dib

00:00:00 #7 [Debug] writeDibCode / output: Fs / path: CommonFSharp.dib

00:00:00 #15 [Debug] parseDibCode / output: Fs / file: Threading.dib

00:00:00 #10 [Debug] parseDibCode / output: Fs / file: AsyncSeq.dib

00:00:00 #14 [Debug] parseDibCode / output: Fs / file: FileSystem.dib

00:00:00 #12 [Debug] parseDibCode / output: Fs / file: Async.dib

00:00:00 #11 [Debug] parseDibCode / output: Fs / file: Networking.dib

00:00:00 #9 [Debug] parseDibCode / output: Fs / file: Common.dib

00:00:00 #10 [Debug] parseDibCode / output: Fs / file: Crypto.dib

00:00:00 #13 [Debug] parseDibCode / output: Fs / file: CommonFSharp.dib

00:00:00 #16 [Debug] writeDibCode / output: Fs / path: Runtime.dib

00:00:00 #16 [Debug] writeDibCode / output: Fs / path: Toml.dib

00:00:00 #17 [Debug] parseDibCode / output: Fs / file: Runtime.dib

00:00:00 #18 [Debug] parseDibCode / output: Fs / file: Toml.dib

In [ ]:
{ . "$ScriptDir/../apps/spiral/build.ps1" } | Invoke-Block

── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # Supervisor (Polyglot)                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"

#r 

@"../../../../../../../.nuget/packages/argu/6.1.5/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"

#r 

@"../../../../../../../.nuget/packages/microsoft.aspnetcore.http.connections.com

mon/7.0.0/lib/net7.0/Microsoft.AspNetCore.Http.Connections.Common.dll"

#r 

@"../../../../../../../.nuget/packages/microsoft.aspnetcore.http.connections.cli

ent/7.0.0/lib/net7.0/Microsoft.AspNetCore.Http.Connections.Client.dll"

#r 

@"../../../../../../../.nuget/packages/microsoft.aspnetcore.signalr.common/7.0.0

/lib/net7.0/Microsoft.AspNetCore.SignalR.Common.dll"

#r 

@"../../../../../../../.nuget/packages/microsoft.aspnetcore.signalr.client/7.0.0

/lib/net7.0/Microsoft.AspNetCore.SignalR.Client.dll"

#r 

@"../../../../../../../.nuget/packages/microsoft.aspnetcore.signalr.client.core/

7.0.0/lib/net7.0/Microsoft.AspNetCore.SignalR.Client.Core.dll"

#r 

@"../../../../../../../.nuget/packages/fsharp.json/0.4.1/lib/netstandard2.0/FSha

rp.Json.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs

#!import ../../lib/fsharp/CommonFSharp.fs

#!import ../../lib/fsharp/Threading.fs

#!import ../../lib/fsharp/Async.fs

#!import ../../lib/fsharp/AsyncSeq.fs

#!import ../../lib/fsharp/Networking.fs

#!import ../../lib/fsharp/Runtime.fs

#!import ../../lib/fsharp/FileSystem.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Threading =



    open Common



    /// ## newDisposableToken



    let inline newDisposableToken (mergeToken: 

System.Threading.CancellationToken option) =

        let cts = new System.Threading.CancellationTokenSource ()

        let cts =

            match mergeToken with

            | None -> cts

            | Some mergeToken ->

                System.Threading.CancellationTokenSource.CreateLinkedTokenSource

[[| cts.Token; mergeToken |]]

        let disposable = newDisposable cts.Cancel

        cts.Token, disposable





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module AsyncSeq =



    open Common



    /// ## subscribeEvent



    let inline subscribeEvent (event: IEvent<'H, 'A>) map =

        let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

        System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

        |> FSharp.Control.AsyncSeq.ofObservableBuffered



    let subscribeToken (token : System.Threading.CancellationToken) =

        let tcs = new System.Threading.Tasks.TaskCompletionSource ()

        System.Action tcs.SetResult |> token.Register |> ignore

        let start = System.DateTime.Now.Ticks

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun (...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Networking =



    open Common



    /// ## testPortOpen



    let inline testPortOpen port = async {

        let! ct = Async.CancellationToken

        use client = new System.Net.Sockets.TcpClient ()

        try

            do! client.ConnectAsync ("127.0.0.1", port, ct) |> 

Async.awaitValueTaskUnit

            return true

        with ex ->

            trace Verbose (fun () -> $"testPortOpen / ex: {ex |> 

printException}") getLocals

            return false

    }



    let inline testPortOpenTimeout timeout port = async {

        let! result =

            testPortOpen port

            |> Async.runWithTimeoutAsync timeout

        return

            match result with

            | None -> false

 ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module FileSystem =



    open Common



    /// ## Operators



    module Operators =

        let inline (</>) a b =

            System.IO.Path.Combine (a, b)



    open Operators



    /// ## createTempDirectoryName



    let inline createTempDirectoryName () =

        let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name



        System.IO.Path.GetTempPath ()

        </> $"!{root}"

        </> string (newGuidFromDateTime System.DateTime.Now)



    /// ## createTempDirectory



    let inline createTempDirectory () =

        let tempFolder = createTempDirectoryName ()

        let result = System.IO.Directory.CreateDirectory tempFolder



        if not result.Exists then

            let ge...



── fsharp ──────────────────────────────────────────────────────────────────────

open Common

open FileSystem.Operators

open Microsoft.AspNetCore.SignalR.Client



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## sendJson                                                                  │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline sendJson (port : int) (json : string) = async {

    let! portOpen = Networking.testPortOpen port

    if portOpen then

        try

            let connection = 

HubConnectionBuilder().WithUrl($"http://127.0.0.1:{port}").Build()

            do! connection.StartAsync () |> Async.AwaitTask

            let! result = connection.InvokeAsync<string>("ClientToServerMsg", 

json) |> Async.AwaitTask

            do! connection.StopAsync () |> Async.AwaitTask

            trace Debug (fun () -> $"sendJson / port: {port} / json: {json} / 

result.Length: {result |> Option.ofObj |> Option.map String.length}") getLocals

            return Some result

        with ex ->

            trace Critical (fun () -> $"sendJson / port: {port} / json: {json} /

ex: {ex |> printException}") getLocals

            return None

    else

        trace Debug (fun () -> "sendJson / error: port not open") getLocals

        return None

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## sendObj                                                                   │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline sendObj port obj =

    obj

    |> System.Text.Json.JsonSerializer.Serialize

    |> sendJson port



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## awaitCompiler                                                             │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

type VSCPos = {| line : int; character : int |}

type VSCRange = VSCPos * VSCPos

type RString = VSCRange * string

type TracedError = {| trace : string list; message : string |}

type ClientErrorsRes =

    | FatalError of string

    | TracedError of TracedError

    | PackageErrors of {| uri : string; errors : RString list |}

    | TokenizerErrors of {| uri : string; errors : RString list |}

    | ParserErrors of {| uri : string; errors : RString list |}

    | TypeErrors of {| uri : string; errors : RString list |}



── fsharp ──────────────────────────────────────────────────────────────────────

let inline awaitCompiler port cancellationToken = async {

    let! ct =

        cancellationToken

        |> Option.defaultValue System.Threading.CancellationToken.None

        |> Async.mergeCancellationTokenWithDefaultAsync

    

    let cts = new System.Threading.CancellationTokenSource ()



    let compiler = MailboxProcessor.Start (fun inbox -> async {

        let! availablePort = Networking.getAvailablePort (Some 60) port

        if availablePort <> port then

            inbox.Post port

        else

            let repositoryRoot = FileSystem.getSourceDirectory () |> 

FileSystem.findParent ".paket" false



            let compilerPath =

                repositoryRoot </> "deps/The-Spiral-Language/The Spiral Language

2/artifacts/bin/The Spiral Language 2/release"

                |> System.IO.Path.GetFullPath



            let dllPath = compilerPath </> "Spiral.dll"



            let! exitCode, result =

                Runtime.executeWithOptionsAsync

                    {

                        Command = $@"dotnet ""{dllPath}"" port={availablePort}"

                        CancellationToken = Some ct

                        WorkingDirectory = None

                        OnLine = Some <| fun { Line = line } -> async {

                            if line |> String.contains $"Server bound to: 

http://localhost:{availablePort}" then

                                do! Networking.waitForPortAccess (Some 500) true

availablePort |> Async.Ignore



                                let rec loop retry = async {

                                    let getLocals () = $"port: {availablePort} /

retry: {retry} / {getLocals ()}"

                                    try

                                        let pingObj = {| Ping = true |}

                                        let! pingResult = pingObj |> sendObj 

availablePort

                                        trace Verbose (fun () -> $"awaitCompiler

/ Ping / result: {pingResult}") getLocals

                                    with ex ->

                                        trace Verbose (fun () -> $"awaitCompiler

/ Ping / ex: {ex |> printException}") getLocals

                                        do! Async.Sleep 10

                                        do! loop (retry + 1)

                                }

                                do! loop 0

                                inbox.Post availablePort

                        }

                    }

            trace Debug (fun () -> $"awaitCompiler / exitCode: {exitCode} / 

result: {result}") getLocals

            cts.Cancel ()

    }, ct)



    let! serverPort = compiler.Receive ()



    let connection = 

HubConnectionBuilder().WithUrl($"http://127.0.0.1:{serverPort}").Build ()

    do! connection.StartAsync () |> Async.AwaitTask



    let event = Event<_> ()

    let disposable = connection.On<string> ("ServerToClientMsg", event.Trigger)

    let stream =

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun () -> async {

                let! msg = event.Publish |> Async.AwaitEvent

                return Some (msg |> 

FSharp.Json.Json.deserialize<ClientErrorsRes>, ())

            })

            ()



    let disposable =

        newDisposable (fun () ->

            disposable.Dispose ()

            connection.StopAsync () |> Async.AwaitTask |> Async.StartImmediate

        )



    return

        serverPort,

        stream,

        cts.Token,

        disposable

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## getFileUri                                                                │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getFileUri path =

    $"file:///{path |> String.trimStart [[| '/' |]]}"



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getFilePathFromUri uri =

    match System.Uri.TryCreate (uri, System.UriKind.Absolute) with

    | true, uri -> uri.AbsolutePath |> System.IO.Path.GetFullPath

    | _ -> failwith "invalid uri"



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getCompilerPort () =

    13805



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## buildFile                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline buildFile timeout port cancellationToken path = async {

    let fullPath = path |> System.IO.Path.GetFullPath

    let fileDir = fullPath |> System.IO.Path.GetDirectoryName

    let fileName = fullPath |> System.IO.Path.GetFileNameWithoutExtension

    let! code = fullPath |> FileSystem.readAllTextAsync



    let eventFilter = function

        | FileSystem.FileSystemChange.Changed (path, _) when path = 

$"{fileName}.fsx" -> true

        | _ -> false



    let stream, disposable = fileDir |> FileSystem.watchDirectory eventFilter

    use _ = disposable



    let token, disposable = Threading.newDisposableToken cancellationToken

    use _ = disposable



    let! serverPort, errors, ct, disposable = awaitCompiler port (Some token)

    use _ = disposable



    let fsxContentSeq =

        stream

        |> FSharp.Control.AsyncSeq.choose (function

            | _, (FileSystem.FileSystemChange.Changed (path, Some content) as 

event)

                when event |> eventFilter

                ->

                Some content

            | _ -> None

        )

        |> FSharp.Control.AsyncSeq.map (fun content ->

            Some (content |> String.replace "\r\n" "\n"), None

        )



    let inline printErrorData (data : {| uri : string; errors : RString list |})

=

        let fileName = data.uri |> System.IO.Path.GetFileName

        let errors =

            data.errors

            |> List.map snd

            |> String.concat "\n"

        $"{fileName}:\n{errors}"



    let errorsSeq =

        errors

        |> FSharp.Control.AsyncSeq.choose (fun error ->

            match error with

            | FatalError message ->

                Some (message, error)

            | TracedError data ->

                Some (data.message, error)

            | PackageErrors data when data.errors |> List.isEmpty |> not ->

                Some (data |> printErrorData, error)

            | TokenizerErrors data when data.errors |> List.isEmpty |> not ->

                Some (data |> printErrorData, error)

            | ParserErrors data when data.errors |> List.isEmpty |> not ->

                Some (data |> printErrorData, error)

            | TypeErrors data when data.errors |> List.isEmpty |> not ->

                Some (data |> printErrorData, error)

            | _ -> None

        )

        |> FSharp.Control.AsyncSeq.map (fun (message, error) ->

            None, Some (message, error)

        )

    

    let timerSeq =

        1000

        |> FSharp.Control.AsyncSeq.intervalMs

        |> FSharp.Control.AsyncSeq.map (fun _ -> None, None)



    let outputSeq =

        [[ fsxContentSeq; errorsSeq; timerSeq ]]

        |> FSharp.Control.AsyncSeq.mergeAll



    let! outputChild =

        ((None, [[]], 0), outputSeq)

        ||> FSharp.Control.AsyncSeq.scan (

            fun (fsxContentResult, errors, typeErrorCount) (fsxContent, error) 

->

                match fsxContent, error with

                | Some fsxContent, None -> Some fsxContent, errors, 

typeErrorCount

                | None, Some (_, FatalError "File main has a type error 

somewhere in its path.") ->

                    fsxContentResult, errors, typeErrorCount + 1

                | None, Some error -> fsxContentResult, error :: errors, 

typeErrorCount

                | None, None when typeErrorCount >= 1 ->

                    fsxContentResult, errors, typeErrorCount + 1

                | _ -> fsxContentResult, errors, typeErrorCount

        )

        |> FSharp.Control.AsyncSeq.takeWhileInclusive (fun (fsxContent, errors, 

typeErrorCount) ->

            trace Debug (fun () -> $"buildFile / takeWhileInclusive / 

fsxContent: {fsxContent |> Option.defaultValue System.String.Empty |> 

String.ellipsis 750} / errors: {errors} / typeErrorCount: {typeErrorCount}") 

getLocals

            match fsxContent, errors with

            | None, [[]] when typeErrorCount > 2 -> false

            | None, [[]] -> true

            | _ -> false

        )

        |> FSharp.Control.AsyncSeq.tryLast

        |> Async.withCancellationToken ct

        |> Async.catch

        |> Async.runWithTimeoutAsync timeout

        |> Async.StartChild



    let fileOpenObj = {| FileOpen = {| uri = fullPath |> getFileUri; spiText = 

code |} |}

    let! _fileOpenResult = fileOpenObj |> sendObj serverPort



    do! Async.Sleep 60



    let buildFileObj = {| BuildFile = {| uri = fullPath |> getFileUri; backend =

"Fsharp" |} |}

    let! _buildFileResult = buildFileObj |> sendObj serverPort



    return!

        outputChild

        |> Async.map (function

            | Some (Ok (Some (message, errors, _))) -> message, errors |> 

List.distinct |> List.rev

            | Some (Error ex) ->

                trace Critical (fun () -> $"buildFile / error: {ex |> 

printException}") getLocals

                None, [[]]

            | _ -> None, [[]]

        )

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## persistCode                                                               │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline persistCode code = async {

    let tempDir = FileSystem.createTempDirectory ()



    let mainPath = tempDir </> "main.spi"

    do! code |> FileSystem.writeAllTextAsync mainPath



    let repositoryRoot = FileSystem.getSourceDirectory () |> 

FileSystem.findParent ".paket" false



    let spiprojPath = tempDir </> "package.spiproj"

    let spiprojCode =

        $"""packageDir: {repositoryRoot </> "lib"}

packages:

    |core-

    spiral-

modules:

    main

"""

    do! spiprojCode |> FileSystem.writeAllTextAsync spiprojPath



    let disposable = newDisposable (fun () ->

        ()

        // tempDir |> FileSystem.deleteDirectoryAsync |> Async.Ignore |> 

Async.RunSynchronously

    )



    return mainPath, disposable

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## buildCode                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline buildCode timeout cancellationToken code = async {

    let! mainPath, disposable = persistCode code

    use _ = disposable

    let port = getCompilerPort ()

    return! mainPath |> buildFile timeout port cancellationToken

}



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let buildCode timeout cancellationToken code = buildCode timeout 

cancellationToken code



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""inl app () =

    console.write_line "text"

    1i32



inl main () =

    app

    |> dyn

    |> ignore

"""

|> buildCode 15000 None

|> Async.runWithTimeout 15000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        Some """let rec closure0 () () : int32 =

    let v0 : string = "text"

    System.Console.WriteLine v0

    1

let v0 : (unit -> int32) = closure0()

()

""",

        [[]]

    )

)



╭─[ 1.35s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60                        │

│ 00:00:00 #2 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors:  │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:00 #3 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors:  │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:00 #4 [Debug] sendJson / port: 13805 / json:                           │

│ {"FileOpen":{"spiText":"inl app () =\n    console.write_line                 │

│ \u0022text\u0022\n    1i32\n\ninl main () =\n    app\n    |\u003E dyn\n      │

│ |\u003E                                                                      │

│ ignore\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-rep │

│ l\\20240208-1630-1452-5237-5bb295fa7c95\\main.spi"}} / result.Length:        │

│ 00:00:00 #5 [Debug] sendJson / port: 13805 / json:                           │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20240208-1630-1452-5237-5bb295fa7c95\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:00 #6 [Debug] buildFile / takeWhileInclusive / fsxContent: let rec     │

│ closure0 () () : int32 =                                                     │

│     let v0 : string = "text"                                                 │

│     System.Console.WriteLine v0                                              │

│     1                                                                        │

│ let v0 : (unit -> int32) = closure0()                                        │

│ ()                                                                           │

│  / errors: [] / typeErrorCount: 0                                            │

│ 00:00:00 #7 [Debug] watchWithFilter / Disposing watch stream / filter:       │

│ FileName, LastWrite                                                          │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - FSharpOption<String>                                    │

│           Value: let rec closure0 () () : int32 =                            │

│     let v0 : string = "text"                                                 │

│     System.Console.WriteLine v0                                              │

│     1                                                                        │

│ let v0 : (unit -> int32) = closure0()                                        │

│ ()                                                                           │

│                                                                              │

│       - [  ]                                                                 │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> _equal None



╭─[ 10.32s - stdout ]──────────────────────────────────────────────────────────╮

│ 00:00:01 #8 [Debug] runWithTimeoutAsync / timeout: 60                        │

│ 00:00:01 #9 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors:  │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:01 #10 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:01 #11 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\T │

│ emp\\!dotnet-repl\\20240208-1630-1583-8391-8c0012548fe3\\main.spi"}} /       │

│ result.Length:                                                               │

│ 00:00:01 #12 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20240208-1630-1583-8391-8c0012548fe3\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:02 #13 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:03 #14 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:04 #15 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:05 #16 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:06 #17 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:07 #18 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:08 #19 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:09 #20 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:10 #21 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:11 #22 [Debug] runWithTimeoutAsync / timeout: 10000                    │

│ 00:00:11 #23 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ <null>                                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"inl app () =

    0i32



inl a = 1



inl main () =

    app

    |> dyn

    |> ignore

"

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[ "main.spi:

Global inl/let statements should all return functions known at parse time." ]]

    )

)



╭─[ 498.62ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:11 #26 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:11 #27 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:11 #28 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:11 #29 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"inl app () =\n    0i32\n\ninl a = 1\n\ninl main ()   │

│ =\n    app\n    |\u003E dyn\n    |\u003E                                     │

│ ignore\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-rep │

│ l\\20240208-1630-2619-1955-1e8171b938b5\\main.spi"}} / result.Length:        │

│ 00:00:11 #30 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [(main.spi:                                                                  │

│ Global inl/let statements should all return functions known at parse time.,  │

│ ParserErrors                                                                 │

│   { errors =                                                                 │

│      [(({ character = 0                                                      │

│           line = 3 }, { character = 9                                        │

│                         line = 3 }),                                         │

│        "Global inl/let statements should all return functions known at parse │

│ time.")]                                                                     │

│     uri =                                                                    │

│                                                                              │

│ "file:///C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1630-2619-1 │

│ 955-1e8171b938b5\main.spi" })] / typeErrorCount: 0                           │

│ 00:00:11 #31 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20240208-1630-2619-1955-1e8171b938b5\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:11 #32 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ main.spi:                                                          │

│ Global inl/let statements should all return functions known at parse time. ] │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""inl main () =

    1i32 / 0i32

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[ "An attempt to divide by zero has been detected at compile time." ]]

    )

)



╭─[ 805.69ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:12 #33 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:12 #34 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:12 #35 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:12 #36 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"inl main () =\n    1i32 /                            │

│ 0i32\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\ │

│ \20240208-1630-2692-9270-98a83faeff69\\main.spi"}} / result.Length:          │

│ 00:00:12 #38 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20240208-1630-2692-9270-98a83faeff69\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:12 #39 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [(An attempt to divide by zero has been detected at compile time.,           │

│ TracedError                                                                  │

│   { message = "An attempt to divide by zero has been detected at compile     │

│ time."                                                                       │

│     trace =                                                                  │

│      ["Error trace on line: 1, column: 10 in module:                         │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1630-2692-9270-98a83 │

│ faeff69\main.spi.                                                            │

│ inl main () =                                                                │

│          ^                                                                   │

│ ";                                                                           │

│       "Error trace on line: 2, column: 5 in module:                          │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1630-2692-9270-98a83 │

│ faeff69\main.spi.                                                            │

│     1i32 / 0i32                                                              │

│     ^                                                                        │

│ "] })] / typeErrorCount: 0                                                   │

│ 00:00:12 #40 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ An attempt to divide by zero has been detected at compile time. ]  │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""inl main () =

    1 + ""

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[

            "main.spi:

Constraint satisfaction error.

Got: string

Fails to satisfy: number"

        ]]

    )

)



╭─[ 750.77ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:13 #41 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:13 #42 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:13 #43 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:13 #44 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"inl main () =\n    1 \u002B                          │

│ \u0022\u0022\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotn │

│ et-repl\\20240208-1630-2778-7868-71448645d267\\main.spi"}} / result.Length:  │

│ 00:00:13 #45 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [(main.spi:                                                                  │

│ Constraint satisfaction error.                                               │

│ Got: string                                                                  │

│ Fails to satisfy: number, TypeErrors                                         │

│   { errors =                                                                 │

│      [(({ character = 8                                                      │

│           line = 1 }, { character = 10                                       │

│                         line = 1 }),                                         │

│        "Constraint satisfaction error.                                       │

│ Got: string                                                                  │

│ Fails to satisfy: number")]                                                  │

│     uri =                                                                    │

│                                                                              │

│ "file:///C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1630-2778-7 │

│ 868-71448645d267\main.spi" })] / typeErrorCount: 0                           │

│ 00:00:13 #46 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20240208-1630-2778-7868-71448645d267\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:13 #47 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ main.spi:                                                          │

│ Constraint satisfaction error.                                               │

│ Got: string                                                                  │

│ Fails to satisfy: number ]                                                   │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""inl main () =

    x + y

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[

            "main.spi:

Unbound variable: x.

Unbound variable: y."

        ]]

    )

)



╭─[ 608.42ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:13 #49 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:13 #50 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:13 #51 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:13 #52 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"inl main () =\n    x \u002B                          │

│ y\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\20 │

│ 240208-1630-2843-4331-4965dd97ac4f\\main.spi"}} / result.Length:             │

│ 00:00:13 #53 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [(main.spi:                                                                  │

│ Unbound variable: x.                                                         │

│ Unbound variable: y., TypeErrors                                             │

│   { errors =                                                                 │

│      [(({ character = 4                                                      │

│           line = 1 }, { character = 5                                        │

│                         line = 1 }), "Unbound variable: x.");                │

│       (({ character = 8                                                      │

│           line = 1 }, { character = 9                                        │

│                         line = 1 }), "Unbound variable: y.")]                │

│     uri =                                                                    │

│                                                                              │

│ "file:///C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1630-2843-4 │

│ 331-4965dd97ac4f\main.spi" })] / typeErrorCount: 0                           │

│ 00:00:13 #54 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20240208-1630-2843-4331-4965dd97ac4f\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:13 #55 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ main.spi:                                                          │

│ Unbound variable: x.                                                         │

│ Unbound variable: y. ]                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""union a =

    | B

    | c



inl main () =

    ()

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[ "main.spi:

Expected: uppercase variable" ]]

    )

)



╭─[ 652.88ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:14 #56 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:14 #57 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:14 #59 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:14 #60 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"union a =\n    | B\n    | c\n\ninl main () =\n       │

│ ()\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\2 │

│ 0240208-1630-2908-0839-048ae4e2b28a\\main.spi"}} / result.Length:            │

│ 00:00:14 #61 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [(main.spi:                                                                  │

│ Expected: uppercase variable, ParserErrors                                   │

│   { errors = [(({ character = 6                                              │

│                   line = 2 }, { character = 7                                │

│                                 line = 2 }), "Expected: uppercase            │

│ variable")]                                                                  │

│     uri =                                                                    │

│                                                                              │

│ "file:///C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1630-2908-0 │

│ 839-048ae4e2b28a\main.spi" })] / typeErrorCount: 0                           │

│ 00:00:14 #62 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20240208-1630-2908-0839-048ae4e2b28a\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:14 #63 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ main.spi:                                                          │

│ Expected: uppercase variable ]                                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""

/// abc

inl main () =

    ()

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[ "main.spi:

Expected: whitespace" ]]

    )

)



╭─[ 800.42ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:15 #64 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:15 #65 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:15 #66 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:15 #67 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"\n/// abc\ninl main () =\n                           │

│ ()\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\2 │

│ 0240208-1630-2992-9249-9f632a69bb64\\main.spi"}} / result.Length:            │

│ 00:00:15 #68 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [(main.spi:                                                                  │

│ Expected: whitespace, TokenizerErrors                                        │

│   { errors = [(({ character = 2                                              │

│                   line = 1 }, { character = 3                                │

│                                 line = 1 }), "Expected: whitespace")]        │

│     uri =                                                                    │

│                                                                              │

│ "file:///C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1630-2992-9 │

│ 249-9f632a69bb64\main.spi" })] / typeErrorCount: 0                           │

│ 00:00:15 #69 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20240208-1630-2992-9249-9f632a69bb64\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:15 #70 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ main.spi:                                                          │

│ Expected: whitespace ]                                                       │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""

inl main () =

    real

        inl real_unbox forall a. (obj : a) : a =

            typecase obj with

            | _ => obj

        real_unbox ()

    ()

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[ "Cannot apply a forall with a term." ]]

    )

)



╭─[ 675.04ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:15 #72 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:15 #73 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:15 #74 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:15 #75 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"\ninl main () =\n    real\n        inl real_unbox    │

│ forall a. (obj : a) : a =\n            typecase obj with\n            | _    │

│ =\u003E obj\n        real_unbox ()\n                                         │

│ ()\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\2 │

│ 0240208-1630-3051-5142-53d84892fb41\\main.spi"}} / result.Length:            │

│ 00:00:16 #76 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20240208-1630-3051-5142-53d84892fb41\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:16 #77 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [(Cannot apply a forall with a term., TracedError                            │

│   { message = "Cannot apply a forall with a term."                           │

│     trace =                                                                  │

│      ["Error trace on line: 2, column: 10 in module:                         │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1630-3051-5142-53d84 │

│ 892fb41\main.spi.                                                            │

│ inl main () =                                                                │

│          ^                                                                   │

│ ";                                                                           │

│       "Error trace on line: 4, column: 9 in module:                          │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1630-3051-5142-53d84 │

│ 892fb41\main.spi.                                                            │

│         inl real_unbox forall a. (obj : a) : a =                             │

│         ^                                                                    │

│ ";                                                                           │

│       "Error trace on line: 7, column: 9 in module:                          │

│ C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1630-3051-5142-53d84 │

│ 892fb41\main.spi.                                                            │

│         real_unbox ()                                                        │

│         ^                                                                    │

│ "] })] / typeErrorCount: 0                                                   │

│ 00:00:16 #78 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ Cannot apply a forall with a term. ]                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""

inl main () =

    real

        inl real_unbox forall a. (obj : a) : a =

            typecase obj with

            | _ => obj

        real_unbox `i32 1

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        None,

        [[ "The main function should not have a forall." ]]

    )

)



╭─[ 834.82ms - stdout ]────────────────────────────────────────────────────────╮

│ 00:00:16 #80 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:16 #81 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:16 #82 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:16 #83 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"\ninl main () =\n    real\n        inl real_unbox    │

│ forall a. (obj : a) : a =\n            typecase obj with\n            | _    │

│ =\u003E obj\n        real_unbox \u0060i32                                    │

│ 1\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\20 │

│ 240208-1630-3140-4070-44243240ffc8\\main.spi"}} / result.Length:             │

│ 00:00:16 #84 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20240208-1630-3140-4070-44243240ffc8\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:16 #85 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [(The main function should not have a forall., TracedError { message = "The  │

│ main function should not have a forall."                                     │

│               trace = [] })] / typeErrorCount: 0                             │

│ 00:00:16 #86 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - <null>                                                  │

│       - [ The main function should not have a forall. ]                      │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""

inl init_series start end inc =

    inl total : f64 = conv ((end - start) / inc) + 1

    listm.init total (conv >> (*) inc >> (+) start) : list f64



type integration = (f64 -> f64) -> f64 -> f64 -> f64



inl integral dt : integration =

    fun f a b =>

        init_series (a + dt / 2) (b - dt / 2) dt

        |> listm.map (f >> (*) dt)

        |> listm.fold (+) 0



inl main () =

    integral 0.1 (fun x => x ** 2) 0 1

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

|> _equal (

    Some (

        Some "0.3325000000000001\n",

        [[]]

    )

)



╭─[ 1.30s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:17 #88 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:17 #89 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:17 #90 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:17 #91 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"\ninl init_series start end inc =\n    inl total :   │

│ f64 = conv ((end - start) / inc) \u002B 1\n    listm.init total (conv        │

│ \u003E\u003E (*) inc \u003E\u003E (\u002B) start) : list f64\n\ntype         │

│ integration = (f64 -\u003E f64) -\u003E f64 -\u003E f64 -\u003E f64\n\ninl   │

│ integral dt : integration =\n    fun f a b =\u003E\n        init_series (a   │

│ \u002B dt / 2) (b - dt / 2) dt\n        |\u003E listm.map (f \u003E\u003E    │

│ (*) dt)\n        |\u003E listm.fold (\u002B) 0\n\ninl main () =\n            │

│ integral 0.1 (fun x =\u003E x ** 2) 0                                        │

│ 1\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\20 │

│ 240208-1630-3227-2712-20009a39939d\\main.spi"}} / result.Length:             │

│ 00:00:17 #92 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20240208-1630-3227-2712-20009a39939d\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:18 #93 [Debug] buildFile / takeWhileInclusive / fsxContent:            │

│ 0.3325000000000001                                                           │

│  / errors: [] / typeErrorCount: 0                                            │

│ 00:00:18 #94 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│ FSharpOption<Tuple<FSharpOption<String>,FSharpList<String>>>                 │

│       Value:       - FSharpOption<String>                                    │

│           Value: 0.3325000000000001                                          │

│                                                                              │

│       - [  ]                                                                 │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""

inl init_series start end inc =

    inl total : f64 = conv ((end - start) / inc) + 1

    listm.init total (conv >> (*) inc >> (+) start) : list f64



type integration = (f64 -> f64) -> f64 -> f64 -> f64



inl integral dt : integration =

    fun f a b =>

        init_series (a + dt / 2) (b - dt / 2) dt

        |> listm.map (f >> (*) dt)

        |> listm.fold (+) 0



inl main () =

    integral 0.01 (fun x => x ** 2) 0 1

"""

|> buildCode 10000 None

|> Async.runWithTimeout 10000

|> Option.map (fun (fsxContent, errors) -> fsxContent, errors |> List.map fst)

// |> _equal None

// |> fun x -> printfn $"{x.ToDisplayString ()}"



╭─[ 10.65s - return value ]────────────────────────────────────────────────────╮

│ <div class="dni-plaintext"><pre>&lt;null&gt;</pre></div><style>              │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 10.67s - stdout ]──────────────────────────────────────────────────────────╮

│ 00:00:18 #96 [Debug] runWithTimeoutAsync / timeout: 60                       │

│ 00:00:18 #97 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:18 #98 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:18 #99 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"\ninl init_series start end inc =\n    inl total :   │

│ f64 = conv ((end - start) / inc) \u002B 1\n    listm.init total (conv        │

│ \u003E\u003E (*) inc \u003E\u003E (\u002B) start) : list f64\n\ntype         │

│ integration = (f64 -\u003E f64) -\u003E f64 -\u003E f64 -\u003E f64\n\ninl   │

│ integral dt : integration =\n    fun f a b =\u003E\n        init_series (a   │

│ \u002B dt / 2) (b - dt / 2) dt\n        |\u003E listm.map (f \u003E\u003E    │

│ (*) dt)\n        |\u003E listm.fold (\u002B) 0\n\ninl main () =\n            │

│ integral 0.01 (fun x =\u003E x ** 2) 0                                       │

│ 1\n","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\20 │

│ 240208-1630-3352-5219-5d014d2b8a7f\\main.spi"}} / result.Length:             │

│ 00:00:19 #100 [Debug] sendJson / port: 13805 / json:                         │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\Users\\i574n\\AppData\\L │

│ ocal\\Temp\\!dotnet-repl\\20240208-1630-3352-5219-5d014d2b8a7f\\main.spi"}}  │

│ / result.Length:                                                             │

│ 00:00:19 #102 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:20 #104 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:21 #106 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:22 #108 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:23 #110 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:24 #112 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:25 #114 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:26 #116 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:27 #118 [Debug] buildFile / takeWhileInclusive / fsxContent:  /        │

│ errors: [] / typeErrorCount: 0                                               │

│ 00:00:28 #119 [Debug] runWithTimeoutAsync / timeout: 10000                   │

│ 00:00:28 #120 [Debug] watchWithFilter / Disposing watch stream / filter:     │

│ FileName, LastWrite                                                          │

│ 00:00:28 #122 [Debug] runWithTimeoutAsync / timeout: 10000                   │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## getFileTokenRange                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getFileTokenRange port cancellationToken path = async {

    let fullPath = path |> System.IO.Path.GetFullPath

    let! code = fullPath |> FileSystem.readAllTextAsync

    let lines = code |> String.split [[| '\n' |]]



    let token, disposable = Threading.newDisposableToken cancellationToken

    use _ = disposable



    let! serverPort, _errors, ct, disposable = awaitCompiler port (Some token)

    use _ = disposable



    let fileOpenObj = {| FileOpen = {| uri = fullPath |> getFileUri; spiText = 

code |} |}

    let! _fileOpenResult = fileOpenObj |> sendObj serverPort



    let fileTokenRangeObj =

        {|

            FileTokenRange =

                {|

                    uri = fullPath |> getFileUri

                    range =

                        [[|

                            {| line = 0; character = 0 |}

                            {| line = lines.Length - 1; character = 

lines.[[lines.Length - 1]].Length |}

                        |]]

                |}

        |}

    let! fileTokenRangeResult =

        fileTokenRangeObj

        |> sendObj serverPort

        |> Async.withCancellationToken ct



    return fileTokenRangeResult |> Option.map FSharp.Json.Json.deserialize<int 

array>

}



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## getCodeTokenRange                                                         │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let inline getCodeTokenRange cancellationToken code = async {

    let! mainPath, disposable = persistCode code

    use _ = disposable

    let port = getCompilerPort ()

    return! mainPath |> getFileTokenRange port cancellationToken

}



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""inl main () = ()"""

|> getCodeTokenRange None

|> Async.runWithTimeout 10000

|> Option.flatten

|> _equal (Some [[| 0; 0; 3; 7; 0; 0; 4; 4; 0; 0; 0; 5; 1; 8; 0; 0; 1; 1; 8; 0; 

0; 2; 1; 4; 0; 0;

2; 1; 8; 0; 0; 1; 1; 8; 0 |]])



╭─[ 7.53s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:44 #152 [Debug] runWithTimeoutAsync / timeout: 60                      │

│ 00:00:44 #153 [Debug] executeAsync / options: { Command =                    │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:it@4-434> }                                             │

│ 00:00:44 #154 [Verbose] > pwd: C:\home\git\polyglot\apps\spiral              │

│ 00:00:44 #155 [Verbose] > dll_path:                                          │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:45 #158 [Debug] runWithTimeoutAsync / timeout: 500                     │

│ 00:00:45 #159 [Debug] sendJson / port: 13805 / json: {"Ping":true} /         │

│ result.Length:                                                               │

│ 00:00:45 #160 [Verbose] awaitCompiler / Ping / result: Some(null) / port:    │

│ 13805 / retry: 0                                                             │

│ 00:00:45 #161 [Verbose] > Server bound to: http://localhost:13805            │

│ 00:00:45 #162 [Debug] sendJson / port: 13805 / json:                         │

│ {"FileOpen":{"spiText":"inl main () =                                        │

│ ()","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\202 │

│ 40208-1630-5885-8532-8904c3b57a9a\\main.spi"}} / result.Length:              │

│ 00:00:46 #165 [Debug] sendJson / port: 13805 / json:                         │

│ {"FileTokenRange":{"range":[                                                 │

│ {"character":0,"line":0},{"character":16,"line":0}],"uri":"file:///C:\\Users │

│ \\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\20240208-1630-5885-8532-8904c3b │

│ 57a9a\\main.spi"}} / result.Length: Some(213)                                │

│ FSharpOption<Int32[]>                                                        │

│       Value: [ 0, 0, 3, 7, 0, 0, 4, 4, 0, 0, 0, 5, 1, 8, 0, 0, 1, 1, 8, 0,   │

│ 0, 2, 1, 4, 0, 0, 2, 1, 8, 0, 0, 1, 1, 8, 0 ]                                │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



"""inl main () = 1i32"""

|> getCodeTokenRange None

|> Async.runWithTimeout 10000

|> Option.flatten

|> _equal (Some [[| 0; 0; 3; 7; 0; 0; 4; 4; 0; 0; 0; 5; 1; 8; 0; 0; 1; 1; 8; 0; 

0; 2; 1; 4; 0; 0;

2; 1; 3; 0; 0; 1; 3; 12; 0 |]])



╭─[ 7.57s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:52 #176 [Debug] runWithTimeoutAsync / timeout: 60                      │

│ 00:00:52 #177 [Debug] executeAsync / options: { Command =                    │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:it@4-801> }                                             │

│ 00:00:52 #178 [Verbose] > pwd: C:\home\git\polyglot\apps\spiral              │

│ 00:00:52 #179 [Verbose] > dll_path:                                          │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:52 #182 [Debug] runWithTimeoutAsync / timeout: 500                     │

│ 00:00:52 #183 [Verbose] waitForPortAccess / port: 13805 / retry: 0           │

│ 00:00:53 #184 [Debug] runWithTimeoutAsync / timeout: 500                     │

│ 00:00:53 #187 [Debug] sendJson / port: 13805 / json: {"Ping":true} /         │

│ result.Length:                                                               │

│ 00:00:53 #188 [Verbose] awaitCompiler / Ping / result: Some(null) / port:    │

│ 13805 / retry: 0                                                             │

│ 00:00:53 #189 [Verbose] > Server bound to: http://localhost:13805            │

│ 00:00:53 #190 [Debug] sendJson / port: 13805 / json:                         │

│ {"FileOpen":{"spiText":"inl main () =                                        │

│ 1i32","uri":"file:///C:\\Users\\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\2 │

│ 0240208-1631-0682-8249-88acd78d4873\\main.spi"}} / result.Length:            │

│ 00:00:54 #191 [Debug] sendJson / port: 13805 / json:                         │

│ {"FileTokenRange":{"range":[                                                 │

│ {"character":0,"line":0},{"character":18,"line":0}],"uri":"file:///C:\\Users │

│ \\i574n\\AppData\\Local\\Temp\\!dotnet-repl\\20240208-1631-0682-8249-88acd78 │

│ d4873\\main.spi"}} / result.Length: Some(214)                                │

│ FSharpOption<Int32[]>                                                        │

│       Value: [ 0, 0, 3, 7, 0, 0, 4, 4, 0, 0, 0, 5, 1, 8, 0, 0, 1, 1, 8, 0,   │

│ 0, 2, 1, 4, 0, 0, 2, 1, 3, 0, 0, 1, 3, 12, 0 ]                               │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Arguments                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

[[<RequireQualifiedAccess>]]

type Arguments =

    | Build_File of string * string

    | File_Token_Range of string * string

    | Execute_Command of string

    | Timeout of int

    | Port of int



    interface Argu.IArgParserTemplate with

        member s.Usage =

            match s with

            | Build_File _ -> nameof Build_File

            | File_Token_Range _ -> nameof File_Token_Range

            | Execute_Command _ -> nameof Execute_Command

            | Timeout _ -> nameof Timeout

            | Port _ -> nameof Port



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Argu.ArgumentParser.Create<Arguments>().PrintUsage ()



╭─[ 203.23ms - return value ]──────────────────────────────────────────────────╮

│ USAGE: dotnet.exe [--help] [--build-file <string> <string>]                  │

│                   [--file-token-range <string> <string>]                     │

│                   [--execute-command <string>] [--timeout <int>] [--port     │

│ <int>]                                                                       │

│                                                                              │

│ OPTIONS:                                                                     │

│                                                                              │

│     --build-file <string> <string>                                           │

│                           Build_File                                         │

│     --file-token-range <string> <string>                                     │

│                           File_Token_Range                                   │

│     --execute-command <string>                                               │

│                           Execute_Command                                    │

│     --timeout <int>       Timeout                                            │

│     --port <int>          Port                                               │

│     --help                display this list of options.                      │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## main                                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let main args =

    let argsMap = args |> Runtime.parseArgsMap<Arguments>



    let buildFileActions =

        argsMap

        |> Map.tryFind (nameof Arguments.Build_File)

        |> Option.defaultValue [[]]

        |> List.choose (function

            | Arguments.Build_File (inputPath, outputPath) -> Some (inputPath, 

outputPath)

            | _ -> None

        )



    let fileTokenRangeActions =

        argsMap

        |> Map.tryFind (nameof Arguments.File_Token_Range)

        |> Option.defaultValue [[]]

        |> List.choose (function

            | Arguments.File_Token_Range (inputPath, outputPath) -> Some 

(inputPath, outputPath)

            | _ -> None

        )



    let executeCommandActions =

        argsMap

        |> Map.tryFind (nameof Arguments.Execute_Command)

        |> Option.defaultValue [[]]

        |> List.choose (function

            | Arguments.Execute_Command command -> Some command

            | _ -> None

        )



    let timeout =

        match argsMap |> Map.tryFind (nameof Arguments.Timeout) with

        | Some [[ Arguments.Timeout timeout ]] -> timeout

        | _ -> 60000 * 60



    let port =

        match argsMap |> Map.tryFind (nameof Arguments.Port) with

        | Some [[ Arguments.Port port ]] -> Some port

        | _ -> None



    async {

        let! buildFileResult =

            buildFileActions

            |> List.map (fun (inputPath, outputPath) -> async {

                let port = port |> Option.defaultWith getCompilerPort

                let! outputCode, errors = inputPath |> buildFile timeout port 

None

                

                errors

                |> List.map snd

                |> List.iter (fun error ->

                    trace Critical (fun () -> $"main / error: {error}") 

getLocals

                )



                match outputCode with

                | Some outputCode ->

                    do! outputCode |> FileSystem.writeAllTextAsync outputPath

                    return 0

                | None ->

                    return 1

            })

            |> Async.Sequential



        let! fileTokenRangeResult =

            fileTokenRangeActions

            |> List.map (fun (inputPath, outputPath) -> async {

                let port = port |> Option.defaultWith getCompilerPort

                let! tokenRange = inputPath |> getFileTokenRange port None

                match tokenRange with

                | Some tokenRange ->

                    do! tokenRange |> FSharp.Json.Json.serialize |> 

FileSystem.writeAllTextAsync outputPath

                    return 0

                | None ->

                    return 1

            })

            |> Async.Sequential

        

        let! executeCommandResult =

            executeCommandActions

            |> List.map (fun command -> async {

                let port = port |> Option.defaultWith getCompilerPort



                let localToken, disposable = Threading.newDisposableToken None

                use _ = disposable



                let! serverPort, _errors, compilerToken, disposable = 

awaitCompiler port (Some localToken)

                use _ = disposable

                

                let! exitCode, result =

                    Runtime.executeWithOptionsAsync

                        {

                            Command = command

                            CancellationToken = Some compilerToken

                            WorkingDirectory = None

                            OnLine = None

                        }



                trace Debug (fun () -> $"main / executeCommand / exitCode: 

{exitCode}") getLocals



                return exitCode

            })

            |> Async.Sequential

            

        return

            [[| buildFileResult; fileTokenRangeResult; executeCommandResult |]]

            |> Array.collect id

            |> Array.sum

    }

    |> Async.runWithTimeout timeout

    |> Option.defaultValue 1



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let args =

    System.Environment.GetEnvironmentVariable "ARGS"

    |> Runtime.splitArgs

    |> Seq.toArray



match args with

| [[||]] -> 0

| args -> if main args = 0 then 0 else failwith "main failed"



╭─[ 33.73ms - return value ]───────────────────────────────────────────────────╮

│ <div class="dni-plaintext"><pre>0</pre></div><style>                         │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook Supervisor.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 429482 bytes to Supervisor.dib.html

00:00:00 #1 [Debug] writeDibCode / output: Fs / path: Supervisor.dib

00:00:00 #2 [Debug] parseDibCode / output: Fs / file: Supervisor.dib

00:00:00 #1 [Debug] persistCodeProject / packages: [Argu; FSharp.Control.AsyncSeq; FSharp.Json; ... ] / modules: [lib/fsharp/Common.fs; lib/fsharp/CommonFSharp.fs; lib/fsharp/Threading.fs; ... ] / name: Supervisor / code.Length: 18769

00:00:00 #2 [Debug] buildProject / fullPath: C:\home\git\polyglot\target\polyglot\builder\Supervisor\Supervisor.fsproj

00:00:00 #3 [Debug] executeAsync / options: { Command =

   "dotnet publish "C:\home\git\polyglot\target/polyglot/builder\Supervisor\Supervisor.fsproj" --configuration Release --output "C:\home\git\polyglot\apps\spiral\dist" --runtime linux-x64"

  WorkingDirectory =

   Some "C:\home\git\polyglot\target\polyglot\builder\Supervisor"

  CancellationToken = None

  OnLine = None }

00:00:00 #4 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET

00:00:01 #5 [Verbose] >   Determining projects to restore...

00:00:02 #6 [Verbose] >   Restored C:\home\git\polyglot\target\polyglot\builder\Supervisor\Supervisor.fsproj (in 553 ms).

00:00:19 #7 [Verbose] >   Supervisor -> C:\home\git\polyglot\target\polyglot\builder\Supervisor\bin\Release\net8.0\linux-x64\Supervisor.dll

00:00:20 #8 [Verbose] >   Supervisor -> C:\home\git\polyglot\apps\spiral\dist\

00:00:20 #9 [Debug] executeAsync / exitCode: 0 / output.Length: 347

00:00:20 #10 [Debug] executeAsync / options: { Command =

   "dotnet publish "C:\home\git\polyglot\target/polyglot/builder\Supervisor\Supervisor.fsproj" --configuration Release --output "C:\home\git\polyglot\apps\spiral\dist" --runtime win-x64"

  WorkingDirectory =

   Some "C:\home\git\polyglot\target\polyglot\builder\Supervisor"

  CancellationToken = None

  OnLine = None }

00:00:20 #11 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET

00:00:21 #12 [Verbose] >   Determining projects to restore...

00:00:22 #13 [Verbose] >   Restored C:\home\git\polyglot\target\polyglot\builder\Supervisor\Supervisor.fsproj (in 500 ms).

00:00:39 #14 [Verbose] >   Supervisor -> C:\home\git\polyglot\target\polyglot\builder\Supervisor\bin\Release\net8.0\win-x64\Supervisor.dll

00:00:48 #15 [Verbose] >   Supervisor -> C:\home\git\polyglot\apps\spiral\dist\

00:00:48 #16 [Debug] executeAsync / exitCode: 0 / output.Length: 345

00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\apps\spiral

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 Tasks.dib -Retries 3""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:04 #11 [Verbose] >

00:00:04 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:04 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:04 #14 [Verbose] > │ ## Tasks (Polyglot)                                                          │

00:00:04 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:04 #16 [Verbose] >

00:00:04 #17 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:04 #18 [Verbose] > // // test

00:00:04 #19 [Verbose] >

00:00:04 #20 [Verbose] > open testing

00:00:08 #21 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1632-3474-7424-7902b3dd9609\main.spi

00:00:11 #22 [Verbose] >

00:00:11 #23 [Verbose] > ╭─[ 7.12s - stdout ]───────────────────────────────────────────────────────────╮

00:00:11 #24 [Verbose] > │ ()                                                                           │

00:00:11 #25 [Verbose] > │                                                                              │

00:00:11 #26 [Verbose] > │                                                                              │

00:00:11 #27 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #28 [Verbose] >

00:00:11 #29 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:11 #30 [Verbose] > inl types () =

00:00:11 #31 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"std::string::String\")>]]

00:00:11 #32 [Verbose] > type std_string_String = class end"

00:00:11 #33 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"&$0\")>]] type Ref<'T> =

00:00:11 #34 [Verbose] > class end"

00:00:12 #35 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"str\")>]] type Str = class

00:00:12 #36 [Verbose] > end"

00:00:12 #37 [Verbose] >

00:00:12 #38 [Verbose] > inl emit_expr forall a t. (args : a) (code : string) : t =

00:00:12 #39 [Verbose] >     real

00:00:12 #40 [Verbose] >         $"Fable.Core.RustInterop.emitRustExpr !args !code" : t

00:00:12 #41 [Verbose] >

00:00:12 #42 [Verbose] >

00:00:12 #43 [Verbose] > nominal std_string = $"std_string_String"

00:00:12 #44 [Verbose] > nominal ref' t = $"Ref<`t>"

00:00:12 #45 [Verbose] > nominal str = $"Str"

00:00:12 #46 [Verbose] >

00:00:12 #47 [Verbose] > inl format_debug forall t. (x : t) : std_string =

00:00:12 #48 [Verbose] >     real

00:00:12 #49 [Verbose] >         emit_expr `t `std_string x "format!(\"{:?}\", $0)"

00:00:12 #50 [Verbose] >

00:00:12 #51 [Verbose] > inl format_pretty forall t. (x : t) : std_string =

00:00:12 #52 [Verbose] >     real

00:00:12 #53 [Verbose] >         emit_expr `t `std_string x "format!(\"{:#?}\", $0)"

00:00:12 #54 [Verbose] >

00:00:12 #55 [Verbose] > inl to_std_string (str : ref' str) : std_string =

00:00:12 #56 [Verbose] >     // inl str = join str

00:00:12 #57 [Verbose] >     // // emit_expr () $"\"!str.to_string()\""

00:00:12 #58 [Verbose] >     // // emit_expr () $"\"alloc::string::to_string(!str)\""

00:00:12 #59 [Verbose] >     // emit_expr str "($0).to_string()"

00:00:12 #60 [Verbose] >     emit_expr str $"\"String::from(core::ops::Deref::deref($0))\""

00:00:12 #61 [Verbose] >     // emit_expr str $"\"String::from(*$0)\""

00:00:12 #62 [Verbose] >     // emit_expr () $"\"String::from(!str)\""

00:00:12 #63 [Verbose] >

00:00:12 #64 [Verbose] > inl format forall t. (x : t) : std_string =

00:00:12 #65 [Verbose] >     real

00:00:12 #66 [Verbose] >         inl result : std_string =

00:00:12 #67 [Verbose] >             typecase t with

00:00:12 #68 [Verbose] >             | string => to_std_string x

00:00:12 #69 [Verbose] >             | std_string => x

00:00:12 #70 [Verbose] >             | _ => format_pretty `t x

00:00:12 #71 [Verbose] >         result

00:00:12 #72 [Verbose] >

00:00:12 #73 [Verbose] > inl raw_string_literal (s : string) : ref' str =

00:00:12 #74 [Verbose] >     emit_expr () $"\"r#\\\"\" + !s + \"\\\"#\""

00:00:12 #75 [Verbose] >

00:00:12 #76 [Verbose] > inl (~#) (s : string) : ref' str =

00:00:12 #77 [Verbose] >     raw_string_literal s

00:00:12 #78 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1632-3905-0516-07918cef6fb3\main.spi

00:00:12 #79 [Verbose] >

00:00:12 #80 [Verbose] > ╭─[ 248.26ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #81 [Verbose] > │ ()                                                                           │

00:00:12 #82 [Verbose] > │                                                                              │

00:00:12 #83 [Verbose] > │                                                                              │

00:00:12 #84 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #85 [Verbose] >

00:00:12 #86 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #87 [Verbose] > nominal task_name = string

00:00:12 #88 [Verbose] >

00:00:12 #89 [Verbose] > union manual_scheduling =

00:00:12 #90 [Verbose] >     | WithSuggestion

00:00:12 #91 [Verbose] >     | WithoutSuggestion

00:00:12 #92 [Verbose] >

00:00:12 #93 [Verbose] > union recurrency_offset =

00:00:12 #94 [Verbose] >     | Days : i32

00:00:12 #95 [Verbose] >     | Weeks : i32

00:00:12 #96 [Verbose] >     | Months : i32

00:00:12 #97 [Verbose] >

00:00:12 #98 [Verbose] > union day_of_week =

00:00:12 #99 [Verbose] >     | Sunday

00:00:12 #100 [Verbose] >     | Monday

00:00:12 #101 [Verbose] >     | Tuesday

00:00:12 #102 [Verbose] >     | Wednesday

00:00:12 #103 [Verbose] >     | Thursday

00:00:12 #104 [Verbose] >     | Friday

00:00:12 #105 [Verbose] >     | Saturday

00:00:12 #106 [Verbose] >

00:00:12 #107 [Verbose] > union month =

00:00:12 #108 [Verbose] >     | January

00:00:12 #109 [Verbose] >     | February

00:00:12 #110 [Verbose] >     | March

00:00:12 #111 [Verbose] >     | April

00:00:12 #112 [Verbose] >     | May

00:00:12 #113 [Verbose] >     | June

00:00:12 #114 [Verbose] >     | July

00:00:12 #115 [Verbose] >     | August

00:00:12 #116 [Verbose] >     | September

00:00:12 #117 [Verbose] >     | October

00:00:12 #118 [Verbose] >     | November

00:00:12 #119 [Verbose] >     | December

00:00:12 #120 [Verbose] >

00:00:12 #121 [Verbose] > nominal day = i32

00:00:12 #122 [Verbose] > nominal year = i32

00:00:12 #123 [Verbose] >

00:00:12 #124 [Verbose] > union fixed_recurrency =

00:00:12 #125 [Verbose] >     | Weekly : day_of_week

00:00:12 #126 [Verbose] >     | Monthly : day

00:00:12 #127 [Verbose] >     | Yearly : day * month

00:00:12 #128 [Verbose] >

00:00:12 #129 [Verbose] > union recurrency =

00:00:12 #130 [Verbose] >     | Offset : recurrency_offset

00:00:12 #131 [Verbose] >     | Fixed : list fixed_recurrency

00:00:12 #132 [Verbose] >

00:00:12 #133 [Verbose] > union scheduling =

00:00:12 #134 [Verbose] >     | Manual : manual_scheduling

00:00:12 #135 [Verbose] >     | Recurrent : recurrency

00:00:12 #136 [Verbose] >

00:00:12 #137 [Verbose] > type task =

00:00:12 #138 [Verbose] >     {

00:00:12 #139 [Verbose] >         name : task_name

00:00:12 #140 [Verbose] >         scheduling : scheduling

00:00:12 #141 [Verbose] >     }

00:00:12 #142 [Verbose] >

00:00:12 #143 [Verbose] > type date =

00:00:12 #144 [Verbose] >     {

00:00:12 #145 [Verbose] >         year : year

00:00:12 #146 [Verbose] >         month : month

00:00:12 #147 [Verbose] >         day : day

00:00:12 #148 [Verbose] >     }

00:00:12 #149 [Verbose] >

00:00:12 #150 [Verbose] > union status =

00:00:12 #151 [Verbose] >     | Postponed : option ()

00:00:12 #152 [Verbose] >

00:00:12 #153 [Verbose] > type event =

00:00:12 #154 [Verbose] >     {

00:00:12 #155 [Verbose] >         date : date

00:00:12 #156 [Verbose] >         status : status

00:00:12 #157 [Verbose] >     }

00:00:12 #158 [Verbose] >

00:00:12 #159 [Verbose] > type task_template =

00:00:12 #160 [Verbose] >     {

00:00:12 #161 [Verbose] >         task : task

00:00:12 #162 [Verbose] >         events : list event

00:00:12 #163 [Verbose] >     }

00:00:12 #164 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1632-3928-2877-26bef924dbfc\main.spi

00:00:12 #165 [Verbose] >

00:00:12 #166 [Verbose] > ╭─[ 230.88ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #167 [Verbose] > │ ()                                                                           │

00:00:12 #168 [Verbose] > │                                                                              │

00:00:12 #169 [Verbose] > │                                                                              │

00:00:12 #170 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #171 [Verbose] >

00:00:12 #172 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #173 [Verbose] > // // test

00:00:12 #174 [Verbose] > // // rust=

00:00:12 #175 [Verbose] >

00:00:12 #176 [Verbose] > types ()

00:00:12 #177 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1632-3952-5211-5b6b2a1456db\main.spi

00:00:22 #178 [Verbose] >

00:00:22 #179 [Verbose] > ╭─[ 9.63s - return value ]─────────────────────────────────────────────────────╮

00:00:22 #180 [Verbose] > │ .rs output:                                                                  │

00:00:22 #181 [Verbose] > │                                                                              │

00:00:22 #182 [Verbose] > │                                                                              │

00:00:22 #183 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #184 [Verbose] >

00:00:22 #185 [Verbose] > ╭─[ 9.64s - stdout ]───────────────────────────────────────────────────────────╮

00:00:22 #186 [Verbose] > │                                                                              │

00:00:22 #187 [Verbose] > │ .fsx:                                                                        │

00:00:22 #188 [Verbose] > │ [<Fable.Core.Erase; Fable.Core.Emit("std::string::String")>] type            │

00:00:22 #189 [Verbose] > │ std_string_String = class end                                                │

00:00:22 #190 [Verbose] > │ [<Fable.Core.Erase; Fable.Core.Emit("&$0")>] type Ref<'T> = class end        │

00:00:22 #191 [Verbose] > │ [<Fable.Core.Erase; Fable.Core.Emit("str")>] type Str = class end            │

00:00:22 #192 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:22 #193 [Verbose] > │     ()                                                                       │

00:00:22 #194 [Verbose] > │ method0()                                                                    │

00:00:22 #195 [Verbose] > │                                                                              │

00:00:22 #196 [Verbose] > │ .rs:                                                                         │

00:00:22 #197 [Verbose] > │ #![allow(dead_code,)]                                                        │

00:00:22 #198 [Verbose] > │ #![allow(non_camel_case_types,)]                                             │

00:00:22 #199 [Verbose] > │ #![allow(non_snake_case,)]                                                   │

00:00:22 #200 [Verbose] > │ #![allow(non_upper_case_globals,)]                                           │

00:00:22 #201 [Verbose] > │ #![allow(unreachable_code,)]                                                 │

00:00:22 #202 [Verbose] > │ #![allow(unused_attributes,)]                                                │

00:00:22 #203 [Verbose] > │ #![allow(unused_imports,)]                                                   │

00:00:22 #204 [Verbose] > │ #![allow(unused_macros,)]                                                    │

00:00:22 #205 [Verbose] > │ #![allow(unused_parens,)]                                                    │

00:00:22 #206 [Verbose] > │ #![allow(unused_variables,)]                                                 │

00:00:22 #207 [Verbose] > │ mod module_e32d1f60 {                                                        │

00:00:22 #208 [Verbose] > │     pub mod Fs_rs {                                                          │

00:00:22 #209 [Verbose] > │         use super::*;                                                        │

00:00:22 #210 [Verbose] > │         use fable_library_rust::Native_::on_startup;                         │

00:00:22 #211 [Verbose] > │         pub fn method0() { (); }                                             │

00:00:22 #212 [Verbose] > │         on_startup!(Fs_rs::method0());                                       │

00:00:22 #213 [Verbose] > │     }                                                                        │

00:00:22 #214 [Verbose] > │ }                                                                            │

00:00:22 #215 [Verbose] > │ pub use module_e32d1f60::*;                                                  │

00:00:22 #216 [Verbose] > │                                                                              │

00:00:22 #217 [Verbose] > │                                                                              │

00:00:22 #218 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #219 [Verbose] >

00:00:22 #220 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:22 #221 [Verbose] > // // test

00:00:22 #222 [Verbose] > // // rust=

00:00:22 #223 [Verbose] >

00:00:22 #224 [Verbose] > inl get_tasks () : list task_template =

00:00:22 #225 [Verbose] >     [[

00:00:22 #226 [Verbose] >         {

00:00:22 #227 [Verbose] >             task =

00:00:22 #228 [Verbose] >                 {

00:00:22 #229 [Verbose] >                     name = task_name "01"

00:00:22 #230 [Verbose] >                     scheduling = Manual WithSuggestion

00:00:22 #231 [Verbose] >                 }

00:00:22 #232 [Verbose] >             events = [[]]

00:00:22 #233 [Verbose] >         }

00:00:22 #234 [Verbose] >         {

00:00:22 #235 [Verbose] >             task =

00:00:22 #236 [Verbose] >                 {

00:00:22 #237 [Verbose] >                     name = task_name "02"

00:00:22 #238 [Verbose] >                     scheduling = Manual WithSuggestion

00:00:22 #239 [Verbose] >                 }

00:00:22 #240 [Verbose] >             events = [[]]

00:00:22 #241 [Verbose] >         }

00:00:22 #242 [Verbose] >         {

00:00:22 #243 [Verbose] >             task =

00:00:22 #244 [Verbose] >                 {

00:00:22 #245 [Verbose] >                     name = task_name "03"

00:00:22 #246 [Verbose] >                     scheduling = Manual WithSuggestion

00:00:22 #247 [Verbose] >                 }

00:00:22 #248 [Verbose] >             events = [[]]

00:00:22 #249 [Verbose] >         }

00:00:22 #250 [Verbose] >     ]]

00:00:22 #251 [Verbose] >

00:00:22 #252 [Verbose] > types ()

00:00:22 #253 [Verbose] > get_tasks () |> format_pretty |> console.write_line

00:00:22 #254 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1632-4918-1888-132e11f877cb\main.spi

00:00:30 #255 [Verbose] >

00:00:30 #256 [Verbose] > ╭─[ 7.99s - return value ]─────────────────────────────────────────────────────╮

00:00:30 #257 [Verbose] > │ .rs output:                                                                  │

00:00:30 #258 [Verbose] > │ UH2_0(                                                                       │

00:00:30 #259 [Verbose] > │     UH0_1,                                                                   │

00:00:30 #260 [Verbose] > │     "01",                                                                    │

00:00:30 #261 [Verbose] > │     US4_0(                                                                   │

00:00:30 #262 [Verbose] > │         US3_0,                                                               │

00:00:30 #263 [Verbose] > │     ),                                                                       │

00:00:30 #264 [Verbose] > │     UH2_0(                                                                   │

00:00:30 #265 [Verbose] > │         UH0_1,                                                               │

00:00:30 #266 [Verbose] > │         "02",                                                                │

00:00:30 #267 [Verbose] > │         US4_0(                                                               │

00:00:30 #268 [Verbose] > │             US3_0,                                                           │

00:00:30 #269 [Verbose] > │         ),                                                                   │

00:00:30 #270 [Verbose] > │         UH2_0(                                                               │

00:00:30 #271 [Verbose] > │             UH0_1,                                                           │

00:00:30 #272 [Verbose] > │             "03",                                                            │

00:00:30 #273 [Verbose] > │             US4_0(                                                           │

00:00:30 #274 [Verbose] > │                 US3_0,                                                       │

00:00:30 #275 [Verbose] > │             ),                                                               │

00:00:30 #276 [Verbose] > │             UH2_1,                                                           │

00:00:30 #277 [Verbose] > │         ),                                                                   │

00:00:30 #278 [Verbose] > │     ),                                                                       │

00:00:30 #279 [Verbose] > │ )                                                                            │

00:00:30 #280 [Verbose] > │                                                                              │

00:00:30 #281 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:30 #282 [Verbose] >

00:00:30 #283 [Verbose] > ╭─[ 8.01s - stdout ]───────────────────────────────────────────────────────────╮

00:00:30 #284 [Verbose] > │                                                                              │

00:00:30 #285 [Verbose] > │ .fsx:                                                                        │

00:00:30 #286 [Verbose] > │ [<Fable.Core.Erase; Fable.Core.Emit("std::string::String")>] type            │

00:00:30 #287 [Verbose] > │ std_string_String = class end                                                │

00:00:30 #288 [Verbose] > │ [<Fable.Core.Erase; Fable.Core.Emit("&$0")>] type Ref<'T> = class end        │

00:00:30 #289 [Verbose] > │ [<Fable.Core.Erase; Fable.Core.Emit("str")>] type Str = class end            │

00:00:30 #290 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:30 #291 [Verbose] > │     | US0_0                                                                  │

00:00:30 #292 [Verbose] > │     | US0_1                                                                  │

00:00:30 #293 [Verbose] > │     | US0_2                                                                  │

00:00:30 #294 [Verbose] > │     | US0_3                                                                  │

00:00:30 #295 [Verbose] > │     | US0_4                                                                  │

00:00:30 #296 [Verbose] > │     | US0_5                                                                  │

00:00:30 #297 [Verbose] > │     | US0_6                                                                  │

00:00:30 #298 [Verbose] > │     | US0_7                                                                  │

00:00:30 #299 [Verbose] > │     | US0_8                                                                  │

00:00:30 #300 [Verbose] > │     | US0_9                                                                  │

00:00:30 #301 [Verbose] > │     | US0_10                                                                 │

00:00:30 #302 [Verbose] > │     | US0_11                                                                 │

00:00:30 #303 [Verbose] > │ and [<Struct>] US2 =                                                         │

00:00:30 #304 [Verbose] > │     | US2_0                                                                  │

00:00:30 #305 [Verbose] > │     | US2_1                                                                  │

00:00:30 #306 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:30 #307 [Verbose] > │     | US1_0 of f0_0 : US2                                                    │

00:00:30 #308 [Verbose] > │ and UH0 =                                                                    │

00:00:30 #309 [Verbose] > │     | UH0_0 of int32 * US0 * int32 * US1 * UH0                               │

00:00:30 #310 [Verbose] > │     | UH0_1                                                                  │

00:00:30 #311 [Verbose] > │ and [<Struct>] US3 =                                                         │

00:00:30 #312 [Verbose] > │     | US3_0                                                                  │

00:00:30 #313 [Verbose] > │     | US3_1                                                                  │

00:00:30 #314 [Verbose] > │ and [<Struct>] US7 =                                                         │

00:00:30 #315 [Verbose] > │     | US7_0                                                                  │

00:00:30 #316 [Verbose] > │     | US7_1                                                                  │

00:00:30 #317 [Verbose] > │     | US7_2                                                                  │

00:00:30 #318 [Verbose] > │     | US7_3                                                                  │

00:00:30 #319 [Verbose] > │     | US7_4                                                                  │

00:00:30 #320 [Verbose] > │     | US7_5                                                                  │

00:00:30 #321 [Verbose] > │     | US7_6                                                                  │

00:00:30 #322 [Verbose] > │ and [<Struct>] US6 =                                                         │

00:00:30 #323 [Verbose] > │     | US6_0 of f0_0 : int32                                                  │

00:00:30 #324 [Verbose] > │     | US6_1 of f1_0 : US7                                                    │

00:00:30 #325 [Verbose] > │     | US6_2 of f2_0 : int32 * f2_1 : US0                                     │

00:00:30 #326 [Verbose] > │ and UH1 =                                                                    │

00:00:30 #327 [Verbose] > │     | UH1_0 of US6 * UH1                                                     │

00:00:30 #328 [Verbose] > │     | UH1_1                                                                  │

00:00:30 #329 [Verbose] > │ and [<Struct>] US8 =                                                         │

00:00:30 #330 [Verbose] > │     | US8_0 of f0_0 : int32                                                  │

00:00:30 #331 [Verbose] > │     | US8_1 of f1_0 : int32                                                  │

00:00:30 #332 [Verbose] > │     | US8_2 of f2_0 : int32                                                  │

00:00:30 #333 [Verbose] > │ and [<Struct>] US5 =                                                         │

00:00:30 #334 [Verbose] > │     | US5_0 of f0_0 : UH1                                                    │

00:00:30 #335 [Verbose] > │     | US5_1 of f1_0 : US8                                                    │

00:00:30 #336 [Verbose] > │ and [<Struct>] US4 =                                                         │

00:00:30 #337 [Verbose] > │     | US4_0 of f0_0 : US3                                                    │

00:00:30 #338 [Verbose] > │     | US4_1 of f1_0 : US5                                                    │

00:00:30 #339 [Verbose] > │ and UH2 =                                                                    │

00:00:30 #340 [Verbose] > │     | UH2_0 of UH0 * string * US4 * UH2                                      │

00:00:30 #341 [Verbose] > │     | UH2_1                                                                  │

00:00:30 #342 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:30 #343 [Verbose] > │     let v0 : UH0 = UH0_1                                                     │

00:00:30 #344 [Verbose] > │     let v1 : string = "01"                                                   │

00:00:30 #345 [Verbose] > │     let v2 : US3 = US3_0                                                     │

00:00:30 #346 [Verbose] > │     let v3 : US4 = US4_0(v2)                                                 │

00:00:30 #347 [Verbose] > │     let v4 : UH0 = UH0_1                                                     │

00:00:30 #348 [Verbose] > │     let v5 : string = "02"                                                   │

00:00:30 #349 [Verbose] > │     let v6 : US3 = US3_0                                                     │

00:00:30 #350 [Verbose] > │     let v7 : US4 = US4_0(v6)                                                 │

00:00:30 #351 [Verbose] > │     let v8 : UH0 = UH0_1                                                     │

00:00:30 #352 [Verbose] > │     let v9 : string = "03"                                                   │

00:00:30 #353 [Verbose] > │     let v10 : US3 = US3_0                                                    │

00:00:30 #354 [Verbose] > │     let v11 : US4 = US4_0(v10)                                               │

00:00:30 #355 [Verbose] > │     let v12 : UH2 = UH2_1                                                    │

00:00:30 #356 [Verbose] > │     let v13 : UH2 = UH2_0(v8, v9, v11, v12)                                  │

00:00:30 #357 [Verbose] > │     let v14 : UH2 = UH2_0(v4, v5, v7, v13)                                   │

00:00:30 #358 [Verbose] > │     let v15 : UH2 = UH2_0(v0, v1, v3, v14)                                   │

00:00:30 #359 [Verbose] > │     let v16 : string = "format!(\"{:#?}\", $0)"                              │

00:00:30 #360 [Verbose] > │     let v17 : std_string_String = Fable.Core.RustInterop.emitRustExpr v15    │

00:00:30 #361 [Verbose] > │ v16                                                                          │

00:00:30 #362 [Verbose] > │     System.Console.WriteLine v17                                             │

00:00:30 #363 [Verbose] > │     ()                                                                       │

00:00:30 #364 [Verbose] > │ method0()                                                                    │

00:00:30 #365 [Verbose] > │                                                                              │

00:00:30 #366 [Verbose] > │ .rs:                                                                         │

00:00:30 #367 [Verbose] > │ #![allow(dead_code,)]                                                        │

00:00:30 #368 [Verbose] > │ #![allow(non_camel_case_types,)]                                             │

00:00:30 #369 [Verbose] > │ #![allow(non_snake_case,)]                                                   │

00:00:30 #370 [Verbose] > │ #![allow(non_upper_case_globals,)]                                           │

00:00:30 #371 [Verbose] > │ #![allow(unreachable_code,)]                                                 │

00:00:30 #372 [Verbose] > │ #![allow(unused_attributes,)]                                                │

00:00:30 #373 [Verbose] > │ #![allow(unused_imports,)]                                                   │

00:00:30 #374 [Verbose] > │ #![allow(unused_macros,)]                                                    │

00:00:30 #375 [Verbose] > │ #![allow(unused_parens,)]                                                    │

00:00:30 #376 [Verbose] > │ #![allow(unused_variables,)]                                                 │

00:00:30 #377 [Verbose] > │ mod module_e32d1f60 {                                                        │

00:00:30 #378 [Verbose] > │     pub mod Fs_rs {                                                          │

00:00:30 #379 [Verbose] > │         use super::*;                                                        │

00:00:30 #380 [Verbose] > │         use fable_library_rust::Native_::Any;                                │

00:00:30 #381 [Verbose] > │         use fable_library_rust::Native_::LrcPtr;                             │

00:00:30 #382 [Verbose] > │         use fable_library_rust::Native_::on_startup;                         │

00:00:30 #383 [Verbose] > │         use fable_library_rust::String_::string;                             │

00:00:30 #384 [Verbose] > │         #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)] │

00:00:30 #385 [Verbose] > │         pub enum US0 {                                                       │

00:00:30 #386 [Verbose] > │             US0_0,                                                           │

00:00:30 #387 [Verbose] > │             US0_1,                                                           │

00:00:30 #388 [Verbose] > │             US0_2,                                                           │

00:00:30 #389 [Verbose] > │             US0_3,                                                           │

00:00:30 #390 [Verbose] > │             US0_4,                                                           │

00:00:30 #391 [Verbose] > │             US0_5,                                                           │

00:00:30 #392 [Verbose] > │             US0_6,                                                           │

00:00:30 #393 [Verbose] > │             US0_7,                                                           │

00:00:30 #394 [Verbose] > │             US0_8,                                                           │

00:00:30 #395 [Verbose] > │             US0_9,                                                           │

00:00:30 #396 [Verbose] > │             US0_10,                                                          │

00:00:30 #397 [Verbose] > │             US0_11,                                                          │

00:00:30 #398 [Verbose] > │         }                                                                    │

00:00:30 #399 [Verbose] > │         impl core::fmt::Display for Fs_rs::US0 {                             │

00:00:30 #400 [Verbose] > │             fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result │

00:00:30 #401 [Verbose] > │ {                                                                            │

00:00:30 #402 [Verbose] > │                 write!(f, "{}", core::any::type_name::<Self>())              │

00:00:30 #403 [Verbose] > │             }                                                                │

00:00:30 #404 [Verbose] > │         }                                                                    │

00:00:30 #405 [Verbose] > │         #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)] │

00:00:30 #406 [Verbose] > │         pub enum US2 { US2_0, US2_1, }                                       │

00:00:30 #407 [Verbose] > │         impl core::fmt::Display for Fs_rs::US2 {                             │

00:00:30 #408 [Verbose] > │             fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result │

00:00:30 #409 [Verbose] > │ {                                                                            │

00:00:30 #410 [Verbose] > │                 write!(f, "{}", core::any::type_name::<Self>())              │

00:00:30 #411 [Verbose] > │             }                                                                │

00:00:30 #412 [Verbose] > │         }                                                                    │

00:00:30 #413 [Verbose] > │         #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)] │

00:00:30 #414 [Verbose] > │         pub enum US1 { US1_0(Fs_rs::US2), }                                  │

00:00:30 #415 [Verbose] > │         impl core::fmt::Display for Fs_rs::US1 {                             │

00:00:30 #416 [Verbose] > │             fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result │

00:00:30 #417 [Verbose] > │ {                                                                            │

00:00:30 #418 [Verbose] > │                 write!(f, "{}", core::any::type_name::<Self>())              │

00:00:30 #419 [Verbose] > │             }                                                                │

00:00:30 #420 [Verbose] > │         }                                                                    │

00:00:30 #421 [Verbose] > │         #[derive(Clone, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]       │

00:00:30 #422 [Verbose] > │         pub enum UH0 {                                                       │

00:00:30 #423 [Verbose] > │             UH0_0(i32, Fs_rs::US0, i32, Fs_rs::US1, LrcPtr<Fs_rs::UH0>),     │

00:00:30 #424 [Verbose] > │             UH0_1,                                                           │

00:00:30 #425 [Verbose] > │         }                                                                    │

00:00:30 #426 [Verbose] > │         impl core::fmt::Display for Fs_rs::UH0 {                             │

00:00:30 #427 [Verbose] > │             fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result │

00:00:30 #428 [Verbose] > │ {                                                                            │

00:00:30 #429 [Verbose] > │                 write!(f, "{}", core::any::type_name::<Self>())              │

00:00:30 #430 [Verbose] > │             }                                                                │

00:00:30 #431 [Verbose] > │         }                                                                    │

00:00:30 #432 [Verbose] > │         #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)] │

00:00:30 #433 [Verbose] > │         pub enum US3 { US3_0, US3_1, }                                       │

00:00:30 #434 [Verbose] > │         impl core::fmt::Display for Fs_rs::US3 {                             │

00:00:30 #435 [Verbose] > │             fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result │

00:00:30 #436 [Verbose] > │ {                                                                            │

00:00:30 #437 [Verbose] > │                 write!(f, "{}", core::any::type_name::<Self>())              │

00:00:30 #438 [Verbose] > │             }                                                                │

00:00:30 #439 [Verbose] > │         }                                                                    │

00:00:30 #440 [Verbose] > │         #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)] │

00:00:30 #441 [Verbose] > │         pub enum US7 { US7_0, US7_1, US7_2, US7_3, US7_4, US7_5, US7_6, }    │

00:00:30 #442 [Verbose] > │         impl core::fmt::Display for Fs_rs::US7 {                             │

00:00:30 #443 [Verbose] > │             fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result │

00:00:30 #444 [Verbose] > │ {                                                                            │

00:00:30 #445 [Verbose] > │                 write!(f, "{}", core::any::type_name::<Self>())              │

00:00:30 #446 [Verbose] > │             }                                                                │

00:00:30 #447 [Verbose] > │         }                                                                    │

00:00:30 #448 [Verbose] > │         #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)] │

00:00:30 #449 [Verbose] > │         pub enum US6 {                                                       │

00:00:30 #450 [Verbose] > │             US6_0(i32),                                                      │

00:00:30 #451 [Verbose] > │             US6_1(Fs_rs::US7),                                               │

00:00:30 #452 [Verbose] > │             US6_2(i32, Fs_rs::US0),                                          │

00:00:30 #453 [Verbose] > │         }                                                                    │

00:00:30 #454 [Verbose] > │         impl core::fmt::Display for Fs_rs::US6 {                             │

00:00:30 #455 [Verbose] > │             fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result │

00:00:30 #456 [Verbose] > │ {                                                                            │

00:00:30 #457 [Verbose] > │                 write!(f, "{}", core::any::type_name::<Self>())              │

00:00:30 #458 [Verbose] > │             }                                                                │

00:00:30 #459 [Verbose] > │         }                                                                    │

00:00:30 #460 [Verbose] > │         #[derive(Clone, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]       │

00:00:30 #461 [Verbose] > │         pub enum UH1 { UH1_0(Fs_rs::US6, LrcPtr<Fs_rs::UH1>), UH1_1, }       │

00:00:30 #462 [Verbose] > │         impl core::fmt::Display for Fs_rs::UH1 {                             │

00:00:30 #463 [Verbose] > │             fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result │

00:00:30 #464 [Verbose] > │ {                                                                            │

00:00:30 #465 [Verbose] > │                 write!(f, "{}", core::any::type_name::<Self>())              │

00:00:30 #466 [Verbose] > │             }                                                                │

00:00:30 #467 [Verbose] > │         }                                                                    │

00:00:30 #468 [Verbose] > │         #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)] │

00:00:30 #469 [Verbose] > │         pub enum US8 { US8_0(i32), US8_1(i32), US8_2(i32), }                 │

00:00:30 #470 [Verbose] > │         impl core::fmt::Display for Fs_rs::US8 {                             │

00:00:30 #471 [Verbose] > │             fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result │

00:00:30 #472 [Verbose] > │ {                                                                            │

00:00:30 #473 [Verbose] > │                 write!(f, "{}", core::any::type_name::<Self>())              │

00:00:30 #474 [Verbose] > │             }                                                                │

00:00:30 #475 [Verbose] > │         }                                                                    │

00:00:30 #476 [Verbose] > │         #[derive(Clone, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]       │

00:00:30 #477 [Verbose] > │         pub enum US5 { US5_0(LrcPtr<Fs_rs::UH1>), US5_1(Fs_rs::US8), }       │

00:00:30 #478 [Verbose] > │         impl core::fmt::Display for Fs_rs::US5 {                             │

00:00:30 #479 [Verbose] > │             fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result │

00:00:30 #480 [Verbose] > │ {                                                                            │

00:00:30 #481 [Verbose] > │                 write!(f, "{}", core::any::type_name::<Self>())              │

00:00:30 #482 [Verbose] > │             }                                                                │

00:00:30 #483 [Verbose] > │         }                                                                    │

00:00:30 #484 [Verbose] > │         #[derive(Clone, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]       │

00:00:30 #485 [Verbose] > │         pub enum US4 { US4_0(Fs_rs::US3), US4_1(Fs_rs::US5), }               │

00:00:30 #486 [Verbose] > │         impl core::fmt::Display for Fs_rs::US4 {                             │

00:00:30 #487 [Verbose] > │             fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result │

00:00:30 #488 [Verbose] > │ {                                                                            │

00:00:30 #489 [Verbose] > │                 write!(f, "{}", core::any::type_name::<Self>())              │

00:00:30 #490 [Verbose] > │             }                                                                │

00:00:30 #491 [Verbose] > │         }                                                                    │

00:00:30 #492 [Verbose] > │         #[derive(Clone, Debug, PartialEq, PartialOrd, Hash, Eq, Ord,)]       │

00:00:30 #493 [Verbose] > │         pub enum UH2 {                                                       │

00:00:30 #494 [Verbose] > │             UH2_0(LrcPtr<Fs_rs::UH0>, string, Fs_rs::US4,                    │

00:00:30 #495 [Verbose] > │ LrcPtr<Fs_rs::UH2>),                                                         │

00:00:30 #496 [Verbose] > │             UH2_1,                                                           │

00:00:30 #497 [Verbose] > │         }                                                                    │

00:00:30 #498 [Verbose] > │         impl core::fmt::Display for Fs_rs::UH2 {                             │

00:00:30 #499 [Verbose] > │             fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result │

00:00:30 #500 [Verbose] > │ {                                                                            │

00:00:30 #501 [Verbose] > │                 write!(f, "{}", core::any::type_name::<Self>())              │

00:00:30 #502 [Verbose] > │             }                                                                │

00:00:30 #503 [Verbose] > │         }                                                                    │

00:00:30 #504 [Verbose] > │         pub fn method0() {                                                   │

00:00:30 #505 [Verbose] > │             let v17: std::string::String =                                   │

00:00:30 #506 [Verbose] > │                 format!("{:#?}",                                             │

00:00:30 #507 [Verbose] > │ &LrcPtr::new(Fs_rs::UH2::UH2_0(LrcPtr::new(Fs_rs::UH0::UH0_1),               │

00:00:30 #508 [Verbose] > │                                                                              │

00:00:30 #509 [Verbose] > │ string("01"),                                                                │

00:00:30 #510 [Verbose] > │                                                                              │

00:00:30 #511 [Verbose] > │ Fs_rs::US4::US4_0(Fs_rs::US3::US3_0),                                        │

00:00:30 #512 [Verbose] > │                                                                              │

00:00:30 #513 [Verbose] > │ LrcPtr::new(Fs_rs::UH2::UH2_0(LrcPtr::new(Fs_rs::UH0::UH0_1),                │

00:00:30 #514 [Verbose] > │                                                                              │

00:00:30 #515 [Verbose] > │ string("02"),                                                                │

00:00:30 #516 [Verbose] > │                                                                              │

00:00:30 #517 [Verbose] > │ Fs_rs::US4::US4_0(Fs_rs::US3::US3_0),                                        │

00:00:30 #518 [Verbose] > │                                                                              │

00:00:30 #519 [Verbose] > │ LrcPtr::new(Fs_rs::UH2::UH2_0(LrcPtr::new(Fs_rs::UH0::UH0_1),                │

00:00:30 #520 [Verbose] > │                                                                              │

00:00:30 #521 [Verbose] > │ string("03"),                                                                │

00:00:30 #522 [Verbose] > │                                                                              │

00:00:30 #523 [Verbose] > │ Fs_rs::US4::US4_0(Fs_rs::US3::US3_0),                                        │

00:00:30 #524 [Verbose] > │                                                                              │

00:00:30 #525 [Verbose] > │ LrcPtr::new(Fs_rs::UH2::UH2_1))))))));                                       │

00:00:30 #526 [Verbose] > │             println!("{0}", &v17,);                                          │

00:00:30 #527 [Verbose] > │             ()                                                               │

00:00:30 #528 [Verbose] > │         }                                                                    │

00:00:30 #529 [Verbose] > │         on_startup!(Fs_rs::method0());                                       │

00:00:30 #530 [Verbose] > │     }                                                                        │

00:00:30 #531 [Verbose] > │ }                                                                            │

00:00:30 #532 [Verbose] > │ pub use module_e32d1f60::*;                                                  │

00:00:30 #533 [Verbose] > │                                                                              │

00:00:30 #534 [Verbose] > │                                                                              │

00:00:30 #535 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:30 #536 [Verbose] >

00:00:30 #537 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:30 #538 [Verbose] > // // test

00:00:30 #539 [Verbose] > // // rust=

00:00:30 #540 [Verbose] >

00:00:30 #541 [Verbose] > get_tasks ()

00:00:30 #542 [Verbose] > |> listm'.try_item 0i32

00:00:30 #543 [Verbose] > |> fun (Some task) => task.task.name

00:00:30 #544 [Verbose] > |> _equal (task_name "01")

00:00:30 #545 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1632-5733-3327-39c5d2869f04\main.spi

00:00:36 #546 [Verbose] >

00:00:36 #547 [Verbose] > ╭─[ 5.84s - return value ]─────────────────────────────────────────────────────╮

00:00:36 #548 [Verbose] > │ .rs output:                                                                  │

00:00:36 #549 [Verbose] > │                                                                              │

00:00:36 #550 [Verbose] > │                                                                              │

00:00:36 #551 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:36 #552 [Verbose] >

00:00:36 #553 [Verbose] > ╭─[ 5.84s - stdout ]───────────────────────────────────────────────────────────╮

00:00:36 #554 [Verbose] > │                                                                              │

00:00:36 #555 [Verbose] > │ .fsx:                                                                        │

00:00:36 #556 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:36 #557 [Verbose] > │     let v0 : string = "01"                                                   │

00:00:36 #558 [Verbose] > │     let v1 : string = $"__expect / actual: %A{v0} / expected: %A{v0}"        │

00:00:36 #559 [Verbose] > │     ()                                                                       │

00:00:36 #560 [Verbose] > │ method0()                                                                    │

00:00:36 #561 [Verbose] > │                                                                              │

00:00:36 #562 [Verbose] > │ .rs:                                                                         │

00:00:36 #563 [Verbose] > │ #![allow(dead_code,)]                                                        │

00:00:36 #564 [Verbose] > │ #![allow(non_camel_case_types,)]                                             │

00:00:36 #565 [Verbose] > │ #![allow(non_snake_case,)]                                                   │

00:00:36 #566 [Verbose] > │ #![allow(non_upper_case_globals,)]                                           │

00:00:36 #567 [Verbose] > │ #![allow(unreachable_code,)]                                                 │

00:00:36 #568 [Verbose] > │ #![allow(unused_attributes,)]                                                │

00:00:36 #569 [Verbose] > │ #![allow(unused_imports,)]                                                   │

00:00:36 #570 [Verbose] > │ #![allow(unused_macros,)]                                                    │

00:00:36 #571 [Verbose] > │ #![allow(unused_parens,)]                                                    │

00:00:36 #572 [Verbose] > │ #![allow(unused_variables,)]                                                 │

00:00:36 #573 [Verbose] > │ mod module_e32d1f60 {                                                        │

00:00:36 #574 [Verbose] > │     pub mod Fs_rs {                                                          │

00:00:36 #575 [Verbose] > │         use super::*;                                                        │

00:00:36 #576 [Verbose] > │         use fable_library_rust::Native_::Any;                                │

00:00:36 #577 [Verbose] > │         use fable_library_rust::Native_::on_startup;                         │

00:00:36 #578 [Verbose] > │         use fable_library_rust::String_::sprintf;                            │

00:00:36 #579 [Verbose] > │         use fable_library_rust::String_::string;                             │

00:00:36 #580 [Verbose] > │         pub fn method0() {                                                   │

00:00:36 #581 [Verbose] > │             let v1: string =                                                 │

00:00:36 #582 [Verbose] > │                 sprintf!("__expect / actual: {:?} / expected: {:?}",         │

00:00:36 #583 [Verbose] > │                          &string("01"), &string("01"));                      │

00:00:36 #584 [Verbose] > │             ()                                                               │

00:00:36 #585 [Verbose] > │         }                                                                    │

00:00:36 #586 [Verbose] > │         on_startup!(Fs_rs::method0());                                       │

00:00:36 #587 [Verbose] > │     }                                                                        │

00:00:36 #588 [Verbose] > │ }                                                                            │

00:00:36 #589 [Verbose] > │ pub use module_e32d1f60::*;                                                  │

00:00:36 #590 [Verbose] > │                                                                              │

00:00:36 #591 [Verbose] > │                                                                              │

00:00:36 #592 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:36 #593 [Verbose] >

00:00:36 #594 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:36 #595 [Verbose] > // // test

00:00:36 #596 [Verbose] >

00:00:36 #597 [Verbose] > ()

00:00:36 #598 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1633-0319-1929-105c41b730e0\main.spi

00:00:36 #599 [Verbose] >

00:00:36 #600 [Verbose] > ╭─[ 441.09ms - stdout ]────────────────────────────────────────────────────────╮

00:00:36 #601 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:36 #602 [Verbose] > │     ()                                                                       │

00:00:36 #603 [Verbose] > │ method0()                                                                    │

00:00:36 #604 [Verbose] > │                                                                              │

00:00:36 #605 [Verbose] > │                                                                              │

00:00:36 #606 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:38 #607 [Verbose] > [NbConvertApp] Converting notebook Tasks.dib.ipynb to html

00:00:38 #608 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:00:38 #609 [Verbose] >   validate(nb)

00:00:39 #610 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:00:39 #611 [Verbose] >   return _pygments_highlight(

00:00:39 #612 [Verbose] > [NbConvertApp] Writing 304617 bytes to Tasks.dib.html

00:00:40 #613 [Debug] executeAsync / exitCode: 0 / output.Length: 36458

00:00:40 #614 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] writeDibCode / output: Spi / path: Tasks.dib

00:00:00 #2 [Debug] parseDibCode / output: Spi / file: Tasks.dib

In [ ]:
{ . "$ScriptDir/../apps/spiral/temp/test/build.ps1" } | Invoke-Block

── pwsh ────────────────────────────────────────────────────────────────────────

. ../../../../scripts/nbs_header.ps1

. ../../../../scripts/core.ps1



── pwsh ────────────────────────────────────────────────────────────────────────

{ . ../../../../apps/spiral/dist/Supervisor$(GetExecutableSuffix) --build-file 

test.spi test.fsx --timeout 10000 } | Invoke-Block



╭─[ 5.34s - stdout ]───────────────────────────────────────────────────────────╮

│ 00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60                        │

│ 00:00:00 #2 [Debug] executeAsync / options: { Command =                      │

│    "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral         │

│ Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll"           │

│ port=13805"                                                                  │

│   WorkingDirectory = None                                                    │

│   CancellationToken = Some System.Threading.CancellationToken                │

│   OnLine = Some <fun:main@411-297> }                                         │

│ 00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\apps\spiral\temp\test      │

│ 00:00:00 #4 [Verbose] > dll_path:                                            │

│ C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language            │

│ 2\artifacts\bin\The Spiral Language 2\release                                │

│ 00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500                       │

│ 00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0             │

│ 00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} /           │

│ result.Length:                                                               │

│ 00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port:      │

│ 13805 / retry: 0                                                             │

│ 00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805              │

│ 00:00:01 #10 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:01 #11 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:01 #12 [Debug] sendJson / port: 13805 / json:                          │

│ {"FileOpen":{"spiText":"inl app () =\r\n    \u0022test\u0022 |\u003E         │

│ console.write_line\r\n    0i32\r\n\r\ninl main () =\r\n    print_static      │

│ \u0022\u003Ctest\u003E\u0022\r\n\r\n    app\r\n    |\u003E dyn\r\n           │

│ |\u003E ignore\r\n\r\n    print_static                                       │

│ \u0022\u003C/test\u003E\u0022\r\n","uri":"file:///C:\\home\\git\\polyglot\\a │

│ pps\\spiral\\temp\\test\\test.spi"}} / result.Length:                        │

│ 00:00:01 #13 [Debug] sendJson / port: 13805 / json:                          │

│ {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\home\\git\\polyglot\\app │

│ s\\spiral\\temp\\test\\test.spi"}} / result.Length:                          │

│ 00:00:02 #14 [Verbose] > Building                                            │

│ C:\home\git\polyglot\apps\spiral\temp\test\test.spi                          │

│ 00:00:02 #15 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:03 #16 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: │

│ [] / typeErrorCount: 0                                                       │

│ 00:00:04 #17 [Verbose] > <test>                                              │

│ 00:00:04 #18 [Verbose] > </test>                                             │

│ 00:00:04 #19 [Debug] buildFile / takeWhileInclusive / fsxContent: let rec    │

│ closure0 () () : int32 =                                                     │

│     let v0 : string = "test"                                                 │

│     System.Console.WriteLine v0                                              │

│     0                                                                        │

│ let v0 : (unit -> int32) = closure0()                                        │

│ ()                                                                           │

│  / errors: [] / typeErrorCount: 0                                            │

│ 00:00:04 #20 [Debug] watchWithFilter / Disposing watch stream / filter:      │

│ FileName, LastWrite                                                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── pwsh ────────────────────────────────────────────────────────────────────────

dotnet fable --optimize --lang rs --extension .rs



╭─[ 4.64s - stdout ]───────────────────────────────────────────────────────────╮

│ Fable 4.5.0: F# to Rust compiler (status: alpha)                             │

│                                                                              │

│ Thanks to the contributor! @jwosty                                           │

│ Stand with Ukraine! https://standwithukraine.com.ua/                         │

│                                                                              │

│ Parsing test.fsproj...                                                       │

│ Retrieving project options from cache, in case of issues run `dotnet fable   │

│ clean` or try `--noCache` option.                                            │

│ Project and references (1 source files) parsed in 236ms                      │

│                                                                              │

│ Started Fable compilation...                                                 │

│ Fable compilation finished in 2280ms                                         │

│                                                                              │

│ .\test.fsx(6,0): (6,2) warning FABLE: For Rust, support for F# static and    │

│ module do bindings is disabled by default. It can be enabled with the        │

│ 'static_do_bindings' feature. Use at your own risk!                          │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── pwsh ────────────────────────────────────────────────────────────────────────

cargo fmt --



── pwsh ────────────────────────────────────────────────────────────────────────

cargo build --release



╭─[ 13.40s - stdout ]──────────────────────────────────────────────────────────╮

│    Compiling test v0.0.1 (C:\home\git\polyglot\apps\spiral\temp\test) │

│ warning: unused import: `info`                                        │

│    --> apps\spiral\temp\test\./main.rs:190:15                         │

│     |                                                                 │

│ 190 | use tracing::{info, Level};                                     │

│     |               ^^^^                                              │

│     |                                                                 │

│     = note: `#[warn(unused_imports)]` on by default                   │

│                                                                       │

│ warning: associated items `new`, `add_item`, and `remove_item` are      │

│ never used                                                                 │

│   --> apps\spiral\temp\test\./main.rs:46:8                            │

│    |                                                                  │

│ 45 | impl Cart {                                                      │

│    | --------- associated items in this implementation                │

│ 46 |     fn new() -> Cart {                                           │

│    |        ^^^                                                       │

│ ...                                                                   │

│ 50 |     fn add_item(&mut self, item: Item) {                         │

│    |        ^^^^^^^^                                                  │

│ ...                                                                   │

│ 56 |     fn remove_item(&mut self, item: &Item) {                     │

│    |        ^^^^^^^^^^^                                               │

│    |                                                                  │

│    = note: `#[warn(dead_code)]` on by default                         │

│                                                                       │

│ warning: function `parse_comment` is never used                       │

│    --> apps\spiral\temp\test\./main.rs:124:4                          │

│     |                                                                 │

│ 124 | fn parse_comment(input: &str) -> IResult<&str, SpiralToken> {   │

│     |    ^^^^^^^^^^^^^                                                │

│                                                                       │

│ warning: function `parse_string` is never used                        │

│    --> apps\spiral\temp\test\./main.rs:130:4                          │

│     |                                                                 │

│ 130 | fn parse_string(input: &str) -> IResult<&str, SpiralToken> {    │

│     |    ^^^^^^^^^^^^                                                 │

│                                                                       │

│ warning: function `parse_identifier` is never used                    │

│    --> apps\spiral\temp\test\./main.rs:145:4                          │

│     |                                                                 │

│ 145 | fn parse_identifier(input: &str) -> IResult<&str, SpiralToken> {[  │

│ 0m                                                                           │

│     |    ^^^^^^^^^^^^^^^^                                             │

│                                                                       │

│ warning: function `parse_integer` is never used                       │

│    --> apps\spiral\temp\test\./main.rs:157:4                          │

│     |                                                                 │

│ 157 | fn parse_integer(input: &str) -> IResult<&str, SpiralToken> {   │

│     |    ^^^^^^^^^^^^^                                                │

│                                                                       │

│ warning: function `parse_operator` is never used                      │

│    --> apps\spiral\temp\test\./main.rs:165:4                          │

│     |                                                                 │

│ 165 | fn parse_operator(input: &str) -> IResult<&str, SpiralToken> {  │

│     |    ^^^^^^^^^^^^^^                                               │

│                                                                       │

│ warning: function `parse_token` is never used                         │

│    --> apps\spiral\temp\test\./main.rs:170:4                          │

│     |                                                                 │

│ 170 | fn parse_token(input: &str) -> IResult<&str, SpiralToken> {     │

│     |    ^^^^^^^^^^^                                                  │

│                                                                       │

│ warning: function `format_token` is never used                        │

│    --> apps\spiral\temp\test\./main.rs:180:4                          │

│     |                                                                 │

│ 180 | fn format_token(token: &SpiralToken) -> String {                │

│     |    ^^^^^^^^^^^^                                                 │

│                                                                       │

│ warning: function `parse_expression` is never used                    │

│    --> apps\spiral\temp\test\./main.rs:213:4                          │

│     |                                                                 │

│ 213 | fn parse_expression(input: &str) -> IResult<&str, SpiralToken> {[  │

│ 0m                                                                           │

│     |    ^^^^^^^^^^^^^^^^                                             │

│                                                                       │

│ warning: `test` (bin "test") generated 10 warnings (run `cargo fix      │

│ --bin "test"` to apply 1 suggestion)                                       │

│     Finished release [optimized] target(s) in 13.15s                  │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── pwsh ────────────────────────────────────────────────────────────────────────

$env:RUST_LOG="info"

{ cargo test --release } | Invoke-Block



╭─[ 33.12s - stdout ]──────────────────────────────────────────────────────────╮

│    Compiling test v0.0.1 (C:\home\git\polyglot\apps\spiral\temp\test) │

│     Finished release [optimized] target(s) in 32.48s                  │

│      Running unittests main.rs                                          │

│ (C:\home\git\polyglot\target\release\deps\test-60aa49752f9be082.exe)       │

│                                                                              │

│ running 3 tests                                                              │

│ test test_parse_number ... ok                                                │

│ 2024-02-08T20:34:09.231960Z  INFO test:                     │

│ input=Integer(-2502890268536189285)                                          │

│ 2024-02-08T20:34:09.232130Z  INFO test:                     │

│ input=Integer(1419743746307457457)                                           │

│ 2024-02-08T20:34:09.232316Z  INFO test:                     │

│ input=StringLiteral("~")                                                     │

│ 2024-02-08T20:34:09.232584Z  INFO test: input=Operator("-") │

│ 2024-02-08T20:34:09.232736Z  INFO test:                     │

│ input=Integer(4388916774872405091)                                           │

│ 2024-02-08T20:34:09.232899Z  INFO test:                     │

│ input=Identifier("XXyypH6")                                                  │

│ 2024-02-08T20:34:09.232983Z  INFO test:                     │

│ input=StringLiteral("")                                                      │

│ 2024-02-08T20:34:09.233053Z  INFO test:                     │

│ input=Integer(-415945797843198155)                                           │

│ 2024-02-08T20:34:09.233226Z  INFO test:                     │

│ input=Comment("p'Ca:=<.':")                                                  │

│ 2024-02-08T20:34:09.233336Z  INFO test:                     │

│ input=StringLiteral("8<x. 6l'1|F}ZZ:d&MwN")                                  │

│ 2024-02-08T20:34:09.233414Z  INFO test: input=Operator("*") │

│ 2024-02-08T20:34:09.233510Z  INFO test:                     │

│ input=Comment(".z?I.`9K`/T")                                                 │

│ 2024-02-08T20:34:09.233600Z  INFO test: input=Comment("Xuy' │

│ %y<ZT")                                                                      │

│ 2024-02-08T20:34:09.233718Z  INFO test:                     │

│ input=Integer(361702680187182077)                                            │

│ 2024-02-08T20:34:09.233822Z  INFO test:                     │

│ input=Identifier("hqf7pC6GwqpslUlo41N9QnJF1nf24C5")                          │

│ 2024-02-08T20:34:09.233943Z  INFO test:                     │

│ input=StringLiteral("C??I:unDTL?*/K)Rl..]h!*&}^h(")                          │

│ 2024-02-08T20:34:09.234080Z  INFO test:                     │

│ input=Integer(1345903385226452180)                                           │

│ 2024-02-08T20:34:09.234182Z  INFO test:                     │

│ input=StringLiteral("7'1'$b>1/6*n}")                                         │

│ 2024-02-08T20:34:09.234261Z  INFO test: input=Operator("/") │

│ 2024-02-08T20:34:09.234369Z  INFO test:                     │

│ input=Identifier("Kou3TpL3o7XN")                                             │

│ 2024-02-08T20:34:09.234433Z  INFO test:                     │

│ input=Integer(-6280593125807086076)                                          │

│ 2024-02-08T20:34:09.234503Z  INFO test: input=Operator("(") │

│ 2024-02-08T20:34:09.234564Z  INFO test:                     │

│ input=Integer(-7378116244838240229)                                          │

│ 2024-02-08T20:34:09.234619Z  INFO test:                     │

│ input=Integer(-2875522779503974357)                                          │

│ 2024-02-08T20:34:09.234709Z  INFO test:                     │

│ input=StringLiteral("!ks9Z=`:=x}<=*<j [^")                                   │

│ 2024-02-08T20:34:09.234811Z  INFO test:                     │

│ input=Identifier("SN9vdlZCfAvFE23nrtx1vYcTvjnnJv0F4")                        │

│ 2024-02-08T20:34:09.234877Z  INFO test: input=Operator("+") │

│ 2024-02-08T20:34:09.234932Z  INFO test:                     │

│ input=Identifier("E")                                                        │

│ 2024-02-08T20:34:09.235065Z  INFO test:                     │

│ input=Identifier("Owueih5u0GLypQ1a5NDi710yCQqla0ZC6")                        │

│ 2024-02-08T20:34:09.235142Z  INFO test: input=Operator(")") │

│ 2024-02-08T20:34:09.235223Z  INFO test:                     │

│ input=StringLiteral("&[FB(K&pvy^Z")                                          │

│ 2024-02-08T20:34:09.235303Z  INFO test:                     │

│ input=Comment("69':D\\A")                                                    │

│ 2024-02-08T20:34:09.235374Z  INFO test: input=Operator("/") │

│ 2024-02-08T20:34:09.235464Z  INFO test:                     │

│ input=Identifier("v9367NA1HDm0w15Vm6GXHt")                                   │

│ 2024-02-08T20:34:09.235625Z  INFO test:                     │

│ input=Comment("{Q`4`g7c%%U]?9ag!75${}<SlQV$7-`l")                            │

│ 2024-02-08T20:34:09.235738Z  INFO test:                     │

│ input=StringLiteral("Q=aC}F#0(`FBDE*.)=")                                    │

│ 2024-02-08T20:34:09.235820Z  INFO test: input=Operator(")") │

│ 2024-02-08T20:34:09.236114Z  INFO test:                     │

│ input=StringLiteral("r!5{}F'N&`[")                                           │

│ 2024-02-08T20:34:09.236257Z  INFO test:                     │

│ input=Integer(5065915409448783376)                                           │

│ 2024-02-08T20:34:09.236518Z  INFO test:                     │

│ input=Comment("/2oNA!.&<.*E([cZ~7Ed*ga0'-")                                  │

│ 2024-02-08T20:34:09.236618Z  INFO test:                     │

│ input=Identifier("Glj5QCk4")                                                 │

│ 2024-02-08T20:34:09.236713Z  INFO test:                     │

│ input=Comment(":q;H00{+.6vr.K$dEO%&//r^{")                                   │

│ 2024-02-08T20:34:09.236776Z  INFO test:                     │

│ input=Integer(6923665559934231233)                                           │

│ 2024-02-08T20:34:09.236841Z  INFO test:                     │

│ input=Identifier("kdUvWl")                                                   │

│ 2024-02-08T20:34:09.236917Z  INFO test:                     │

│ input=StringLiteral("NK%Q%pq?</`")                                           │

│ 2024-02-08T20:34:09.236994Z  INFO test:                     │

│ input=Comment("\\mBgKH>F")                                                   │

│ 2024-02-08T20:34:09.237054Z  INFO test:                     │

│ input=Integer(-2883055430372376599)                                          │

│ 2024-02-08T20:34:09.237143Z  INFO test:                     │

│ input=StringLiteral("Hk/-0E>W=&h3?J_@&$d%B4J(")                              │

│ 2024-02-08T20:34:09.237219Z  INFO test:                     │

│ input=Identifier("WZ4R")                                                     │

│ 2024-02-08T20:34:09.237309Z  INFO test:                     │

│ input=Comment("O=%ke''# /wa=\\L")                                            │

│ 2024-02-08T20:34:09.237402Z  INFO test:                     │

│ input=Identifier("xOujtPfTPA46UqGZZsbke0pIS0lS7c")                           │

│ 2024-02-08T20:34:09.237536Z  INFO test:                     │

│ input=Comment("<s%c&s'.Z)O`9Q%yZ:7460~jK5}('Zn\"")                           │

│ 2024-02-08T20:34:09.237631Z  INFO test:                     │

│ input=Identifier("kXn0ZqoiVWi5UG65me")                                       │

│ 2024-02-08T20:34:09.237690Z  INFO test:                     │

│ input=Integer(5645066533609882399)                                           │

│ 2024-02-08T20:34:09.237745Z  INFO test:                     │

│ input=Identifier("G")                                                        │

│ 2024-02-08T20:34:09.237814Z  INFO test:                     │

│ input=Identifier("zPp2eliXCmeBAWh22")                                        │

│ 2024-02-08T20:34:09.237912Z  INFO test:                     │

│ input=Identifier("WSUGVHMdG7j565vLaOwL6CKTSq1GuFFZ")                         │

│ 2024-02-08T20:34:09.237972Z  INFO test:                     │

│ input=Integer(-4993539224262129127)                                          │

│ 2024-02-08T20:34:09.238032Z  INFO test: input=Operator("*") │

│ 2024-02-08T20:34:09.238085Z  INFO test: input=Operator("*") │

│ 2024-02-08T20:34:09.238161Z  INFO test:                     │

│ input=StringLiteral("/%xDE:NrS*")                                            │

│ 2024-02-08T20:34:09.238230Z  INFO test:                     │

│ input=Integer(-788392897922846303)                                           │

│ 2024-02-08T20:34:09.238312Z  INFO test:                     │

│ input=Comment("'v'C|a^x|K%Wo3l^M")                                           │

│ 2024-02-08T20:34:09.238374Z  INFO test:                     │

│ input=Integer(-2036774643826107251)                                          │

│ 2024-02-08T20:34:09.238450Z  INFO test:                     │

│ input=StringLiteral("]<</},?{rn+Y*L")                                        │

│ 2024-02-08T20:34:09.238525Z  INFO test: input=Operator("(") │

│ 2024-02-08T20:34:09.238601Z  INFO test:                     │

│ input=StringLiteral("2_UI+/{?")                                              │

│ 2024-02-08T20:34:09.238665Z  INFO test:                     │

│ input=Integer(-56651619066521696)                                            │

│ 2024-02-08T20:34:09.238774Z  INFO test:                     │

│ input=Comment("&-cMWT':r<\"m%jnUoQV\"3I\"W$E@\\L")                           │

│ 2024-02-08T20:34:09.238872Z  INFO test:                     │

│ input=Identifier("bBo85e0Zi2TLZ7c")                                          │

│ 2024-02-08T20:34:09.238964Z  INFO test:                     │

│ input=Identifier("RiqL4s0yENZ7")                                             │

│ 2024-02-08T20:34:09.239045Z  INFO test:                     │

│ input=Identifier("TdR6YdpF7N8X")                                             │

│ 2024-02-08T20:34:09.239138Z  INFO test:                     │

│ input=StringLiteral("q6X}<'}W@5a<+7#]`i3'e,1")                               │

│ 2024-02-08T20:34:09.239271Z  INFO test:                     │

│ input=Comment("F`E0dys==$|$D/\\A'%*Pj_.Tci0yf!$")                            │

│ 2024-02-08T20:34:09.239367Z  INFO test:                     │

│ input=StringLiteral(":H=~l)ja:")                                             │

│ 2024-02-08T20:34:09.239449Z  INFO test: input=Operator("/") │

│ 2024-02-08T20:34:09.239569Z  INFO test:                     │

│ input=StringLiteral("aY{'o|&$jS+=J;${N+:|Lzbc")                              │

│ 2024-02-08T20:34:09.239651Z  INFO test:                     │

│ input=Comment("-\"\\")                                                       │

│ 2024-02-08T20:34:09.239712Z  INFO test:                     │

│ input=Integer(-6768629626221881455)                                          │

│ 2024-02-08T20:34:09.239866Z  INFO test:                     │

│ input=Comment("-\\?TheO\"=sG{+VW{dP7)j.iS*e$")                               │

│ 2024-02-08T20:34:09.240308Z  INFO test:                     │

│ input=Identifier("dO7MfSQt6eFz2AVzh")                                        │

│ 2024-02-08T20:34:09.240424Z  INFO test:                     │

│ input=Identifier("KZ9Djg6MssVmO2Q16rt7wL9z")                                 │

│ 2024-02-08T20:34:09.240626Z  INFO test: input=Comment(":[   │

│ +:&n?jk/'B{f;")                                                              │

│ 2024-02-08T20:34:09.240769Z  INFO test:                     │

│ input=Identifier("nHvUV8e4mOznTAUha8WLepVKPe22wgXZ")                         │

│ 2024-02-08T20:34:09.240890Z  INFO test:                     │

│ input=Identifier("BFBOKH8y60afatf9395Cg2D26LCRu6t0K")                        │

│ 2024-02-08T20:34:09.240974Z  INFO test: input=Operator("-") │

│ 2024-02-08T20:34:09.241076Z  INFO test:                     │

│ input=Identifier("O0HeylECm9j4SkGI")                                         │

│ 2024-02-08T20:34:09.241217Z  INFO test: input=Comment("[    │

│ ?s:=:!_&L?0.6^6?")                                                           │

│ 2024-02-08T20:34:09.241322Z  INFO test: input=Operator("/") │

│ 2024-02-08T20:34:09.241403Z  INFO test: input=Operator("*") │

│ 2024-02-08T20:34:09.241471Z  INFO test:                     │

│ input=Integer(8633382889368900547)                                           │

│ 2024-02-08T20:34:09.241581Z  INFO test:                     │

│ input=Comment("{/<&{P@e&%cA$\\>+*x")                                         │

│ 2024-02-08T20:34:09.241662Z  INFO test:                     │

│ input=Integer(-6765296223409779399)                                          │

│ 2024-02-08T20:34:09.241750Z  INFO test:                     │

│ input=Comment("g${Lu)")                                                      │

│ 2024-02-08T20:34:09.241826Z  INFO test:                     │

│ input=Integer(595264270321510165)                                            │

│ 2024-02-08T20:34:09.241925Z  INFO test:                     │

│ input=Identifier("uhm7Yv1tvOLDr")                                            │

│ 2024-02-08T20:34:09.241996Z  INFO test:                     │

│ input=Integer(-38037044263014481)                                            │

│ 2024-02-08T20:34:09.242089Z  INFO test:                     │

│ input=Comment("`\\Gm*;h/")                                                   │

│ 2024-02-08T20:34:09.242210Z  INFO test: input=Operator("*") │

│ 2024-02-08T20:34:09.242321Z  INFO test:                     │

│ input=Identifier("em2QyeSygwor71WVd")                                        │

│ 2024-02-08T20:34:09.242428Z  INFO test:                     │

│ input=StringLiteral("B?Qk{.p'>C:$Y?wI`")                                     │

│ 2024-02-08T20:34:09.242543Z  INFO test:                     │

│ input=Identifier("n0gPs")                                                    │

│ 2024-02-08T20:34:09.242640Z  INFO test: input=Operator("(") │

│ 2024-02-08T20:34:09.242792Z  INFO test:                     │

│ input=StringLiteral("Yfj{[,/S~05=a;/s#J'9$w.Xw")                             │

│ 2024-02-08T20:34:09.242887Z  INFO test:                     │

│ input=Integer(-7242529789860342029)                                          │

│ 2024-02-08T20:34:09.242976Z  INFO test:                     │

│ input=Identifier("Mk0")                                                      │

│ 2024-02-08T20:34:09.243066Z  INFO test:                     │

│ input=StringLiteral("s-2")                                                   │

│ 2024-02-08T20:34:09.243239Z  INFO test:                     │

│ input=Identifier("AR")                                                       │

│ 2024-02-08T20:34:09.243388Z  INFO test:                     │

│ input=Identifier("lB8yYP0ykdNJcIgNiZDWfKDN")                                 │

│ 2024-02-08T20:34:09.243640Z  INFO test:                     │

│ input=Integer(-1387789982980026245)                                          │

│ 2024-02-08T20:34:09.243818Z  INFO test: input=Operator("(") │

│ 2024-02-08T20:34:09.243913Z  INFO test: input=Operator("-") │

│ 2024-02-08T20:34:09.244112Z  INFO test:                     │

│ input=StringLiteral("xniY+^e[P{7:;~&")                                       │

│ 2024-02-08T20:34:09.244322Z  INFO test:                     │

│ input=StringLiteral("G:MQt@)x7!rX")                                          │

│ 2024-02-08T20:34:09.244484Z  INFO test:                     │

│ input=Integer(-6005070635778917405)                                          │

│ 2024-02-08T20:34:09.244601Z  INFO test:                     │

│ input=StringLiteral("':d;v")                                                 │

│ 2024-02-08T20:34:09.244823Z  INFO test:                     │

│ input=Comment("yHh")                                                         │

│ 2024-02-08T20:34:09.244984Z  INFO test:                     │

│ input=Identifier("m5Ac7aKXBlpM298c758J1jV6D9448T")                           │

│ 2024-02-08T20:34:09.245098Z  INFO test:                     │

│ input=Integer(-6881376415930763677)                                          │

│ 2024-02-08T20:34:09.245257Z  INFO test:                     │

│ input=Integer(7575305271121261840)                                           │

│ 2024-02-08T20:34:09.245524Z  INFO test:                     │

│ input=Identifier("mGDTy4ZqJX6a")                                             │

│ 2024-02-08T20:34:09.245664Z  INFO test:                     │

│ input=StringLiteral("*L7'Ax@>(x3&)^As**d^c")                                 │

│ 2024-02-08T20:34:09.245774Z  INFO test: input=Operator("/") │

│ 2024-02-08T20:34:09.246093Z  INFO test:                     │

│ input=StringLiteral("wKo&<?'v~?0P,yH*7?")                                    │

│ 2024-02-08T20:34:09.246277Z  INFO test: input=Operator("(") │

│ 2024-02-08T20:34:09.246657Z  INFO test:                     │

│ input=Identifier("k")                                                        │

│ 2024-02-08T20:34:09.246832Z  INFO test:                     │

│ input=Identifier("LC985m6FksmcXhJv")                                         │

│ 2024-02-08T20:34:09.246931Z  INFO test: input=Operator("-") │

│ 2024-02-08T20:34:09.247011Z  INFO test:                     │

│ input=StringLiteral("")                                                      │

│ 2024-02-08T20:34:09.247077Z  INFO test:                     │

│ input=Integer(-7462777000908381944)                                          │

│ 2024-02-08T20:34:09.247217Z  INFO test:                     │

│ input=StringLiteral("{ _S@+!%,`QUG/$,>? 4'@&Re?&,")                          │

│ 2024-02-08T20:34:09.247304Z  INFO test:                     │

│ input=Integer(6753342296974245595)                                           │

│ 2024-02-08T20:34:09.247398Z  INFO test:                     │

│ input=Comment("7!-I'.7A")                                                    │

│ 2024-02-08T20:34:09.247470Z  INFO test:                     │

│ input=Integer(-8999099733964367942)                                          │

│ 2024-02-08T20:34:09.247584Z  INFO test:                     │

│ input=Comment("C}Y.$Iti'|=\\`pTIW$O |T=a>")                                  │

│ 2024-02-08T20:34:09.247696Z  INFO test:                     │

│ input=Comment("/*@:ii%'>c[k'W3:X5")                                          │

│ 2024-02-08T20:34:09.247794Z  INFO test:                     │

│ input=StringLiteral("qHi*<a`*-4*")                                           │

│ 2024-02-08T20:34:09.247864Z  INFO test:                     │

│ input=Integer(-5752997056598779509)                                          │

│ 2024-02-08T20:34:09.248033Z  INFO test:                     │

│ input=Comment("0|%Bn=k)` *")                                                 │

│ 2024-02-08T20:34:09.248193Z  INFO test: input=Comment("s4[  │

│ E\\}(`te`$j))7$dy\"")                                                        │

│ 2024-02-08T20:34:09.248325Z  INFO test:                     │

│ input=StringLiteral("9x/%{i /w *}!M:*&{zax%mr-uaE")                          │

│ 2024-02-08T20:34:09.248417Z  INFO test:                     │

│ input=StringLiteral("m")                                                     │

│ 2024-02-08T20:34:09.248480Z  INFO test:                     │

│ input=Integer(-3885808721776322904)                                          │

│ 2024-02-08T20:34:09.248589Z  INFO test:                     │

│ input=StringLiteral("%C?YH`:;i=Z.V3Ung-$'$YHO^")                             │

│ 2024-02-08T20:34:09.248679Z  INFO test:                     │

│ input=StringLiteral(".q")                                                    │

│ 2024-02-08T20:34:09.248784Z  INFO test:                     │

│ input=Comment("|/|")                                                         │

│ 2024-02-08T20:34:09.248924Z  INFO test:                     │

│ input=Comment("$V%6k KfC/yI:H@!?&:;)Xqb![N")                                 │

│ 2024-02-08T20:34:09.249047Z  INFO test:                     │

│ input=StringLiteral(";=%'")                                                  │

│ 2024-02-08T20:34:09.249226Z  INFO test: input=Operator("-") │

│ 2024-02-08T20:34:09.249418Z  INFO test:                     │

│ input=Comment("Zl\"lC\"_L.")                                                 │

│ 2024-02-08T20:34:09.249536Z  INFO test:                     │

│ input=Comment("vrChA*%`W)`'r%r`,<:t$\"<'\"")                                 │

│ 2024-02-08T20:34:09.249675Z  INFO test:                     │

│ input=Comment("O5rsf%PIJq.FISceTD}g=<Z'sW1x!-?")                             │

│ 2024-02-08T20:34:09.249772Z  INFO test:                     │

│ input=Comment("\"\\m*:{E")                                                   │

│ 2024-02-08T20:34:09.249874Z  INFO test:                     │

│ input=Identifier("tZUX1gSXd")                                                │

│ 2024-02-08T20:34:09.250001Z  INFO test:                     │

│ input=Identifier("AgKuoUt4GatQ1uT0qRN8UVDgDOg1j")                            │

│ 2024-02-08T20:34:09.250092Z  INFO test:                     │

│ input=Integer(-5752096577880226550)                                          │

│ 2024-02-08T20:34:09.250251Z  INFO test:                     │

│ input=Comment("U+/era.V]uo\" ${vF3-A.1Kl")                                   │

│ 2024-02-08T20:34:09.250354Z  INFO test: input=Operator("/") │

│ 2024-02-08T20:34:09.250432Z  INFO test: input=Operator("-") │

│ 2024-02-08T20:34:09.250524Z  INFO test:                     │

│ input=Comment("/]``MPl&7")                                                   │

│ 2024-02-08T20:34:09.250616Z  INFO test: input=Operator("/") │

│ 2024-02-08T20:34:09.250722Z  INFO test: input=Operator("(") │

│ 2024-02-08T20:34:09.250829Z  INFO test:                     │

│ input=Comment("d/_\"")                                                       │

│ 2024-02-08T20:34:09.250969Z  INFO test:                     │

│ input=Identifier("sZjE45Hs0DI3h2nYBca224FMaT")                               │

│ 2024-02-08T20:34:09.251099Z  INFO test:                     │

│ input=Integer(9078659082042793255)                                           │

│ 2024-02-08T20:34:09.251399Z  INFO test: input=Operator("/") │

│ 2024-02-08T20:34:09.251624Z  INFO test:                     │

│ input=Comment("<JL\"n`c?K[I{*:O/=)ru&-\"S&")                                 │

│ 2024-02-08T20:34:09.251732Z  INFO test: input=Operator("(") │

│ 2024-02-08T20:34:09.251805Z  INFO test:                     │

│ input=Integer(3839219205929944107)                                           │

│ 2024-02-08T20:34:09.251923Z  INFO test:                     │

│ input=Identifier("NMC71W9S4p62qeD2D2q7gV")                                   │

│ 2024-02-08T20:34:09.252004Z  INFO test:                     │

│ input=Integer(8552912854049099423)                                           │

│ 2024-02-08T20:34:09.252068Z  INFO test:                     │

│ input=Integer(5929779099553986649)                                           │

│ 2024-02-08T20:34:09.252189Z  INFO test:                     │

│ input=Comment("HI\\]-vv9`Qd\\_^<S:G\"yj.CH")                                 │

│ 2024-02-08T20:34:09.252282Z  INFO test:                     │

│ input=StringLiteral("]W8%nlDR5H")                                            │

│ 2024-02-08T20:34:09.252388Z  INFO test:                     │

│ input=StringLiteral(",& <:{^k4JT?S{%hP.")                                    │

│ 2024-02-08T20:34:09.252521Z  INFO test:                     │

│ input=Comment("*&BkM^&$=&)i9hN")                                             │

│ 2024-02-08T20:34:09.252632Z  INFO test:                     │

│ input=StringLiteral("z)M./REm<.;O%KJ")                                       │

│ 2024-02-08T20:34:09.252730Z  INFO test:                     │

│ input=Comment("@r{l/{l`f6")                                                  │

│ 2024-02-08T20:34:09.252816Z  INFO test:                     │

│ input=Comment("%}oa")                                                        │

│ 2024-02-08T20:34:09.252965Z  INFO test:                     │

│ input=Identifier("QIz2S028hMw3c6An")                                         │

│ 2024-02-08T20:34:09.253075Z  INFO test:                     │

│ input=Comment("\"=P4ZT(=V;GC")                                               │

│ 2024-02-08T20:34:09.253179Z  INFO test:                     │

│ input=StringLiteral("ZH:Cs?{K`<>z&b 'hM}6:`")                                │

│ 2024-02-08T20:34:09.253290Z  INFO test:                     │

│ input=StringLiteral("v?8'S/9WS;$!?l{+'54p:[v")                               │

│ 2024-02-08T20:34:09.253444Z  INFO test:                     │

│ input=Comment("4l\\{FH2=Fi<y7C")                                             │

│ 2024-02-08T20:34:09.253550Z  INFO test:                     │

│ input=StringLiteral("%M|D*")                                                 │

│ 2024-02-08T20:34:09.253662Z  INFO test:                     │

│ input=StringLiteral("C<=jf")                                                 │

│ 2024-02-08T20:34:09.253759Z  INFO test:                     │

│ input=Integer(-2105688394754884842)                                          │

│ 2024-02-08T20:34:09.253902Z  INFO test:                     │

│ input=Comment("O\"L/w.%-6X+H1?4\"D2a'lI{x\"l*#\\")                           │

│ 2024-02-08T20:34:09.254045Z  INFO test:                     │

│ input=StringLiteral("!r`{u&mBR&qyrL,&MO$9uO:")                               │

│ 2024-02-08T20:34:09.254183Z  INFO test:                     │

│ input=StringLiteral("%g8Tt~7!n>iG.")                                         │

│ 2024-02-08T20:34:09.254311Z  INFO test:                     │

│ input=Identifier("Xki2j7W83Lf5RM7nfF4AQK")                                   │

│ 2024-02-08T20:34:09.254434Z  INFO test:                     │

│ input=Comment("Z\\\"W%@\\u=$,e*9&v>")                                        │

│ 2024-02-08T20:34:09.254544Z  INFO test:                     │

│ input=StringLiteral("=EP<")                                                  │

│ 2024-02-08T20:34:09.254667Z  INFO test:                     │

│ input=Comment("rc]tLQa_:t$E9=1*)wr")                                         │

│ 2024-02-08T20:34:09.254772Z  INFO test:                     │

│ input=Identifier("JxYKkWY")                                                  │

│ 2024-02-08T20:34:09.254903Z  INFO test:                     │

│ input=Comment("z\\|!P:/`eh\\QSY7wz ja\\2Xc&")                                │

│ 2024-02-08T20:34:09.255036Z  INFO test:                     │

│ input=StringLiteral(")=@%l$&3+")                                             │

│ 2024-02-08T20:34:09.255138Z  INFO test:                     │

│ input=Integer(-899949587509400255)                                           │

│ 2024-02-08T20:34:09.255335Z  INFO test:                     │

│ input=Identifier("L32LRVQVJTxW59YEnSpOiqk")                                  │

│ 2024-02-08T20:34:09.255484Z  INFO test:                     │

│ input=StringLiteral("EK*Qd)YC`azJl5shI./B%j%Hek{&=`7%")                      │

│ 2024-02-08T20:34:09.255581Z  INFO test:                     │

│ input=Integer(-5361416471450668715)                                          │

│ 2024-02-08T20:34:09.255716Z  INFO test:                     │

│ input=Comment("i\"f=\\Nm?q9xEd?)")                                           │

│ 2024-02-08T20:34:09.255893Z  INFO test:                     │

│ input=Comment("1@\\'?gk3.vUJH<x\"N`O'w")                                     │

│ 2024-02-08T20:34:09.256029Z  INFO test:                     │

│ input=Integer(-3123803022064817654)                                          │

│ 2024-02-08T20:34:09.256203Z  INFO test:                     │

│ input=Identifier("K2JY7xtUvX98addP9jXRyJ0E4NVr0bKC8")                        │

│ 2024-02-08T20:34:09.256323Z  INFO test:                     │

│ input=Identifier("L7kU6zpV23Vd68N")                                          │

│ 2024-02-08T20:34:09.256408Z  INFO test: input=Operator("-") │

│ 2024-02-08T20:34:09.256540Z  INFO test:                     │

│ input=Identifier("nlT88Z0qvKbTQ7e2Kkk6ar2IdO8t7o")                           │

│ 2024-02-08T20:34:09.256673Z  INFO test:                     │

│ input=Comment("AJk`^l*1<IwCjT'jM@t^k?`.O")                                   │

│ 2024-02-08T20:34:09.256762Z  INFO test:                     │

│ input=Integer(1881536378209346084)                                           │

│ 2024-02-08T20:34:09.256872Z  INFO test:                     │

│ input=StringLiteral("?1(OK*Vk(L'/&R")                                        │

│ 2024-02-08T20:34:09.256979Z  INFO test:                     │

│ input=Identifier("A38ZlbF0aCN7Ju06H0tTAA0P")                                 │

│ 2024-02-08T20:34:09.257070Z  INFO test: input=Comment("bz") │

│ 2024-02-08T20:34:09.257185Z  INFO test:                     │

│ input=Comment("n%}:\\E$a{.~")                                                │

│ 2024-02-08T20:34:09.257302Z  INFO test:                     │

│ input=Comment("@U7$nJt:q<gs?g?%")                                            │

│ 2024-02-08T20:34:09.257387Z  INFO test:                     │

│ input=Integer(-6992269743158948461)                                          │

│ 2024-02-08T20:34:09.257472Z  INFO test:                     │

│ input=StringLiteral("'e~/no7?Q")                                             │

│ 2024-02-08T20:34:09.257597Z  INFO test:                     │

│ input=Identifier("q2NQ6JfO2m9Xi4aQ")                                         │

│ 2024-02-08T20:34:09.257718Z  INFO test:                     │

│ input=StringLiteral("&H*.u!3]M]$&*.+c</")                                    │

│ 2024-02-08T20:34:09.257850Z  INFO test:                     │

│ input=Identifier("VvUkaRiI5QBqbrZuMDBl64")                                   │

│ 2024-02-08T20:34:09.257983Z  INFO test:                     │

│ input=StringLiteral("I/rS1AN%sx.Mz")                                         │

│ 2024-02-08T20:34:09.258123Z  INFO test:                     │

│ input=Comment("/?=1rBto3\\.%-%]=.\"5}`C")                                    │

│ 2024-02-08T20:34:09.258219Z  INFO test:                     │

│ input=Integer(5003579427905959048)                                           │

│ 2024-02-08T20:34:09.258382Z  INFO test:                     │

│ input=StringLiteral(".ou$6:E`?%/'QA2@K4")                                    │

│ 2024-02-08T20:34:09.258478Z  INFO test:                     │

│ input=Integer(-3696894149273062111)                                          │

│ 2024-02-08T20:34:09.258551Z  INFO test:                     │

│ input=Integer(6604329698865773866)                                           │

│ 2024-02-08T20:34:09.258778Z  INFO test:                     │

│ input=Comment("O_QKi\\'\"0.{iJLm\\=Cn'?koGj*V{c")                            │

│ 2024-02-08T20:34:09.258907Z  INFO test:                     │

│ input=Integer(2259398661576649090)                                           │

│ 2024-02-08T20:34:09.259273Z  INFO test:                     │

│ input=Identifier("iPS1kJcFDWy0trHu1Xcg1qj741")                               │

│ 2024-02-08T20:34:09.259443Z  INFO test: input=Operator("=") │

│ 2024-02-08T20:34:09.259523Z  INFO test:                     │

│ input=Integer(6433208187011360770)                                           │

│ 2024-02-08T20:34:09.259582Z  INFO test:                     │

│ input=Integer(-8426497328236768041)                                          │

│ 2024-02-08T20:34:09.259700Z  INFO test:                     │

│ input=StringLiteral(" y<,A`8RxYKEc`zW1D{<:`.")                               │

│ 2024-02-08T20:34:09.259825Z  INFO test:                     │

│ input=Comment("&%wB44-\\}SXVd/s=/z*/TJY:pR")                                 │

│ 2024-02-08T20:34:09.259943Z  INFO test:                     │

│ input=Identifier("bSkRh6niyJ72J")                                            │

│ 2024-02-08T20:34:09.260087Z  INFO test:                     │

│ input=StringLiteral("{ uM?Q8eA")                                             │

│ 2024-02-08T20:34:09.260192Z  INFO test:                     │

│ input=StringLiteral("%[J%")                                                  │

│ 2024-02-08T20:34:09.260276Z  INFO test:                     │

│ input=Integer(-2949275907280931688)                                          │

│ 2024-02-08T20:34:09.260374Z  INFO test:                     │

│ input=StringLiteral("!%pC{I/ruA;8f/")                                        │

│ 2024-02-08T20:34:09.260546Z  INFO test:                     │

│ input=StringLiteral("`q'=**6?9c #+{8]T`Pz@H?&4B*PC:I")                       │

│ 2024-02-08T20:34:09.260684Z  INFO test:                     │

│ input=StringLiteral("%$L'vq:%K.|/{I")                                        │

│ 2024-02-08T20:34:09.260787Z  INFO test: input=Operator("(") │

│ 2024-02-08T20:34:09.260849Z  INFO test:                     │

│ input=Integer(-1600188288978978891)                                          │

│ 2024-02-08T20:34:09.260939Z  INFO test:                     │

│ input=Integer(1908520233504111188)                                           │

│ 2024-02-08T20:34:09.261050Z  INFO test:                     │

│ input=StringLiteral("&[ ZW,$,c*LQ")                                          │

│ 2024-02-08T20:34:09.261191Z  INFO test:                     │

│ input=Comment("`\"&%*?%Y=?V$(nlW\">]n`S A&\"G\\n`")                          │

│ 2024-02-08T20:34:09.261377Z  INFO test:                     │

│ input=StringLiteral("w:6}<i0?v?&_'B/B?<ol.@P:")                              │

│ 2024-02-08T20:34:09.261564Z  INFO test: input=Operator("=") │

│ 2024-02-08T20:34:09.261655Z  INFO test:                     │

│ input=Integer(5824401004694884596)                                           │

│ 2024-02-08T20:34:09.261795Z  INFO test:                     │

│ input=StringLiteral("RE.&E7Vr4%]$M}+V}}i'#,?rx[")                            │

│ 2024-02-08T20:34:09.261869Z  INFO test:                     │

│ input=StringLiteral(":7x)")                                                  │

│ 2024-02-08T20:34:09.261912Z  INFO test:                     │

│ input=Integer(-38016337977788866)                                            │

│ 2024-02-08T20:34:09.262001Z  INFO test: input=Operator("*") │

│ 2024-02-08T20:34:09.262075Z  INFO test:                     │

│ input=Integer(155618965933675853)                                            │

│ 2024-02-08T20:34:09.262149Z  INFO test: input=Operator("(") │

│ 2024-02-08T20:34:09.262500Z  INFO test:                     │

│ input=StringLiteral("%%?$`',P,Zj$Z8")                                        │

│ test prop_parse_format_idempotent ... ok                                     │

│ test                                                                         │

│ adding_and_then_removing_an_item_from_the_cart_leaves_the_cart_unchanged ... │

│ ok                                                                           │

│                                                                              │

│ test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out;  │

│ finished in 0.27s                                                            │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── pwsh ────────────────────────────────────────────────────────────────────────

{ . $ScriptDir/../../../../target/release/test$(GetExecutableSuffix) } | 

Invoke-Block



╭─[ 95.94ms - stdout ]─────────────────────────────────────────────────────────╮

│ app=test                                                                     │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook build.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 316722 bytes to build.dib.html

In [ ]:
{ . "$ScriptDir/../apps/plot/build.ps1" } | Invoke-Block
    Finished release [optimized] target(s) in 0.70s

In [ ]:
{ . "$ScriptDir/../lib/spiral/build.ps1" } | Invoke-Block
00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\lib\spiral

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 testing.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:04 #11 [Verbose] >

00:00:04 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:04 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:04 #14 [Verbose] > │ # testing                                                                    │

00:00:04 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:04 #16 [Verbose] >

00:00:04 #17 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:04 #18 [Verbose] > inl __expect fn log b a =

00:00:04 #19 [Verbose] >     if log

00:00:04 #20 [Verbose] >     then $"$\"__expect / actual: %A{!a} / expected: %A{!b}\""

00:00:04 #21 [Verbose] >     else "__expect"

00:00:04 #22 [Verbose] >     |> assert (fn a b)

00:00:04 #23 [Verbose] >

00:00:04 #24 [Verbose] > inl __almost_equal log b a = __expect (fun a b => abs (b - a) < 0.00000001) log

00:00:04 #25 [Verbose] > b a

00:00:04 #26 [Verbose] > inl _almost_equal b a = __almost_equal true b a

00:00:04 #27 [Verbose] >

00:00:04 #28 [Verbose] > inl __equal log b a = __expect (=) log b a

00:00:04 #29 [Verbose] > inl _equal b a = __equal true b a

00:00:04 #30 [Verbose] >

00:00:04 #31 [Verbose] > inl __is_greater_than log b a = __expect (>) log b a

00:00:04 #32 [Verbose] > inl _is_greater_than b a = __is_greater_than true b a

00:00:04 #33 [Verbose] >

00:00:04 #34 [Verbose] > inl __is_greater_than_or_equal log b a = __expect (>=) log b a

00:00:04 #35 [Verbose] > inl _is_greater_than_or_equal b a = __is_greater_than_or_equal true b a

00:00:04 #36 [Verbose] >

00:00:04 #37 [Verbose] > inl __is_less_than log b a = __expect (<) log b a

00:00:04 #38 [Verbose] > inl _is_less_than b a = __is_less_than true b a

00:00:04 #39 [Verbose] >

00:00:04 #40 [Verbose] > inl __is_less_than_or_equal log b a = __expect (<=) log b a

00:00:04 #41 [Verbose] > inl _is_less_than_or_equal b a = __is_less_than_or_equal true b a

00:00:04 #42 [Verbose] >

00:00:04 #43 [Verbose] > inl _throws (fn : () -> ()) : option string =

00:00:04 #44 [Verbose] >     inl none = None : option string

00:00:04 #45 [Verbose] >     inl some (s : string) = Some s

00:00:04 #46 [Verbose] >     $"try !fn (); !none with ex -> !some ex.Message"

00:00:08 #47 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-2354-5421-5d4a6fbd9eb3\main.spi

00:00:11 #48 [Verbose] >

00:00:11 #49 [Verbose] > ╭─[ 6.99s - stdout ]───────────────────────────────────────────────────────────╮

00:00:11 #50 [Verbose] > │ ()                                                                           │

00:00:11 #51 [Verbose] > │                                                                              │

00:00:11 #52 [Verbose] > │                                                                              │

00:00:11 #53 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #54 [Verbose] >

00:00:11 #55 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:11 #56 [Verbose] > inl print_and_return x =

00:00:11 #57 [Verbose] >     $"printfn $\"print_and_return / x: {!x}\""

00:00:11 #58 [Verbose] >     x

00:00:11 #59 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-2778-7825-7a8846c4460c\main.spi

00:00:11 #60 [Verbose] >

00:00:11 #61 [Verbose] > ╭─[ 229.61ms - stdout ]────────────────────────────────────────────────────────╮

00:00:11 #62 [Verbose] > │ ()                                                                           │

00:00:11 #63 [Verbose] > │                                                                              │

00:00:11 #64 [Verbose] > │                                                                              │

00:00:11 #65 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #66 [Verbose] > [NbConvertApp] Converting notebook testing.dib.ipynb to html

00:00:14 #67 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:00:14 #68 [Verbose] >   validate(nb)

00:00:15 #69 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:00:15 #70 [Verbose] >   return _pygments_highlight(

00:00:15 #71 [Verbose] > [NbConvertApp] Writing 278256 bytes to testing.dib.html

00:00:16 #72 [Debug] executeAsync / exitCode: 0 / output.Length: 3117

00:00:16 #73 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\lib\spiral

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 common.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:04 #11 [Verbose] >

00:00:04 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:04 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:04 #14 [Verbose] > │ # common                                                                     │

00:00:04 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:04 #16 [Verbose] >

00:00:04 #17 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:04 #18 [Verbose] > // // test

00:00:04 #19 [Verbose] >

00:00:04 #20 [Verbose] > open testing

00:00:08 #21 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-4120-2093-2459675615ab\main.spi

00:00:11 #22 [Verbose] >

00:00:11 #23 [Verbose] > ╭─[ 7.14s - stdout ]───────────────────────────────────────────────────────────╮

00:00:11 #24 [Verbose] > │ ()                                                                           │

00:00:11 #25 [Verbose] > │                                                                              │

00:00:11 #26 [Verbose] > │                                                                              │

00:00:11 #27 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #28 [Verbose] >

00:00:11 #29 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:11 #30 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:11 #31 [Verbose] > │ ## types                                                                     │

00:00:11 #32 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #33 [Verbose] >

00:00:11 #34 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:11 #35 [Verbose] > nominal any = $"obj"

00:00:11 #36 [Verbose] > nominal disposable = $"System.IDisposable"

00:00:11 #37 [Verbose] > nominal exn = $"exn"

00:00:11 #38 [Verbose] > nominal guid = $"System.Guid"

00:00:11 #39 [Verbose] > nominal unativeint = $"unativeint"

00:00:11 #40 [Verbose] >

00:00:11 #41 [Verbose] > let array x = x

00:00:11 #42 [Verbose] >

00:00:11 #43 [Verbose] > inl unativeint forall t {int}. (n : t) : unativeint =

00:00:11 #44 [Verbose] >     $"unativeint !n"

00:00:12 #45 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-4560-6070-6a195e0bdd37\main.spi

00:00:12 #46 [Verbose] >

00:00:12 #47 [Verbose] > ╭─[ 246.35ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #48 [Verbose] > │ ()                                                                           │

00:00:12 #49 [Verbose] > │                                                                              │

00:00:12 #50 [Verbose] > │                                                                              │

00:00:12 #51 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #52 [Verbose] >

00:00:12 #53 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #54 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #55 [Verbose] > │ ## prototype                                                                 │

00:00:12 #56 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #57 [Verbose] >

00:00:12 #58 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #59 [Verbose] > prototype (~:>) r : forall t. t -> r

00:00:12 #60 [Verbose] > prototype append t : t -> t -> t

00:00:12 #61 [Verbose] > prototype of_string t : string -> t

00:00:12 #62 [Verbose] > prototype to_string t : t -> string

00:00:12 #63 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-4585-8583-8bc8692e0362\main.spi

00:00:12 #64 [Verbose] >

00:00:12 #65 [Verbose] > ╭─[ 274.91ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #66 [Verbose] > │ ()                                                                           │

00:00:12 #67 [Verbose] > │                                                                              │

00:00:12 #68 [Verbose] > │                                                                              │

00:00:12 #69 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #70 [Verbose] >

00:00:12 #71 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #72 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #73 [Verbose] > │ ## null                                                                      │

00:00:12 #74 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #75 [Verbose] >

00:00:12 #76 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #77 [Verbose] > inl null forall t. () : t =

00:00:12 #78 [Verbose] >     $"null |> unbox<`t>"

00:00:12 #79 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-4614-1413-13d6a7a683ad\main.spi

00:00:12 #80 [Verbose] >

00:00:12 #81 [Verbose] > ╭─[ 224.97ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #82 [Verbose] > │ ()                                                                           │

00:00:12 #83 [Verbose] > │                                                                              │

00:00:12 #84 [Verbose] > │                                                                              │

00:00:12 #85 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #86 [Verbose] >

00:00:12 #87 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #88 [Verbose] > inl i64 forall t. (x : t) : i64 =

00:00:12 #89 [Verbose] >     $"int64 !x"

00:00:12 #90 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-4636-3680-34ef6ace9a7e\main.spi

00:00:12 #91 [Verbose] >

00:00:12 #92 [Verbose] > ╭─[ 213.34ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #93 [Verbose] > │ ()                                                                           │

00:00:12 #94 [Verbose] > │                                                                              │

00:00:12 #95 [Verbose] > │                                                                              │

00:00:12 #96 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #97 [Verbose] >

00:00:12 #98 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #99 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #100 [Verbose] > │ ## pair                                                                      │

00:00:12 #101 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #102 [Verbose] >

00:00:12 #103 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #104 [Verbose] > type pair a b = $"(`a * `b)"

00:00:12 #105 [Verbose] >

00:00:12 #106 [Verbose] > inl pair x y =

00:00:12 #107 [Verbose] >     x, y

00:00:13 #108 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-4658-5853-50bbd8c8290b\main.spi

00:00:13 #109 [Verbose] >

00:00:13 #110 [Verbose] > ╭─[ 221.42ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #111 [Verbose] > │ ()                                                                           │

00:00:13 #112 [Verbose] > │                                                                              │

00:00:13 #113 [Verbose] > │                                                                              │

00:00:13 #114 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #115 [Verbose] >

00:00:13 #116 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:13 #117 [Verbose] > // // test

00:00:13 #118 [Verbose] >

00:00:13 #119 [Verbose] > pair 1i32 2i32

00:00:13 #120 [Verbose] > |> _equal (1, 2)

00:00:13 #121 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-4681-8110-8f3d6c2ea334\main.spi

00:00:14 #122 [Verbose] >

00:00:14 #123 [Verbose] > ╭─[ 1.04s - stdout ]───────────────────────────────────────────────────────────╮

00:00:14 #124 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:14 #125 [Verbose] > │     let v0 : string = $"__expect / actual: %A{struct (1, 2)} / expected:     │

00:00:14 #126 [Verbose] > │ %A{struct (1, 2)}"                                                           │

00:00:14 #127 [Verbose] > │     ()                                                                       │

00:00:14 #128 [Verbose] > │ method0()                                                                    │

00:00:14 #129 [Verbose] > │                                                                              │

00:00:14 #130 [Verbose] > │                                                                              │

00:00:14 #131 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #132 [Verbose] >

00:00:14 #133 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:14 #134 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:14 #135 [Verbose] > │ ## new_pair                                                                  │

00:00:14 #136 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #137 [Verbose] >

00:00:14 #138 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #139 [Verbose] > inl new_pair forall a b. (a : a) (b : b) : pair a b =

00:00:14 #140 [Verbose] >     $"!a, !b"

00:00:14 #141 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-4785-8593-8cd3dc0152dd\main.spi

00:00:14 #142 [Verbose] >

00:00:14 #143 [Verbose] > ╭─[ 248.28ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #144 [Verbose] > │ ()                                                                           │

00:00:14 #145 [Verbose] > │                                                                              │

00:00:14 #146 [Verbose] > │                                                                              │

00:00:14 #147 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #148 [Verbose] >

00:00:14 #149 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:14 #150 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:14 #151 [Verbose] > │ ## from_pair                                                                 │

00:00:14 #152 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #153 [Verbose] >

00:00:14 #154 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #155 [Verbose] > inl from_pair forall a b. (pair : pair a b) : a * b =

00:00:14 #156 [Verbose] >     $"let (a, b) = !pair"

00:00:14 #157 [Verbose] >     $"a", $"b"

00:00:14 #158 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-4811-1131-1fbb6ca6eb5d\main.spi

00:00:14 #159 [Verbose] >

00:00:14 #160 [Verbose] > ╭─[ 231.50ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #161 [Verbose] > │ ()                                                                           │

00:00:14 #162 [Verbose] > │                                                                              │

00:00:14 #163 [Verbose] > │                                                                              │

00:00:14 #164 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #165 [Verbose] >

00:00:14 #166 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #167 [Verbose] > // // test

00:00:14 #168 [Verbose] >

00:00:14 #169 [Verbose] > new_pair "a" 1i32

00:00:14 #170 [Verbose] > |> from_pair

00:00:14 #171 [Verbose] > |> _equal ("a", 1i32)

00:00:14 #172 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-4834-3466-3ed0b8bedde7\main.spi

00:00:15 #173 [Verbose] >

00:00:15 #174 [Verbose] > ╭─[ 431.13ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #175 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:15 #176 [Verbose] > │     let v0 : string = "a"                                                    │

00:00:15 #177 [Verbose] > │     let v1 : (string * int32) = v0, 1                                        │

00:00:15 #178 [Verbose] > │     let (a, b) = v1                                                          │

00:00:15 #179 [Verbose] > │     let v2 : string = a                                                      │

00:00:15 #180 [Verbose] > │     let v3 : int32 = b                                                       │

00:00:15 #181 [Verbose] > │     let v4 : string = $"__expect / actual: %A{struct (v2, v3)} / expected:   │

00:00:15 #182 [Verbose] > │ %A{struct (v0, 1)}"                                                          │

00:00:15 #183 [Verbose] > │     let v5 : bool = v2 = "a"                                                 │

00:00:15 #184 [Verbose] > │     let v7 : bool =                                                          │

00:00:15 #185 [Verbose] > │         if v5 then                                                           │

00:00:15 #186 [Verbose] > │             let v6 : bool = v3 = 1                                           │

00:00:15 #187 [Verbose] > │             v6                                                               │

00:00:15 #188 [Verbose] > │         else                                                                 │

00:00:15 #189 [Verbose] > │             false                                                            │

00:00:15 #190 [Verbose] > │     let v8 : bool = v7 = false                                               │

00:00:15 #191 [Verbose] > │     if v8 then                                                               │

00:00:15 #192 [Verbose] > │         failwith<unit> v4                                                    │

00:00:15 #193 [Verbose] > │ method0()                                                                    │

00:00:15 #194 [Verbose] > │                                                                              │

00:00:15 #195 [Verbose] > │                                                                              │

00:00:15 #196 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #197 [Verbose] >

00:00:15 #198 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #199 [Verbose] > // // test

00:00:15 #200 [Verbose] >

00:00:15 #201 [Verbose] > new_pair "a" (new_pair 1i32 "b")

00:00:15 #202 [Verbose] > |> from_pair

00:00:15 #203 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-4879-7936-7eebd7505f08\main.spi

00:00:15 #204 [Verbose] >

00:00:15 #205 [Verbose] > ╭─[ 419.60ms - return value ]──────────────────────────────────────────────────╮

00:00:15 #206 [Verbose] > │ <details open="open" class="dni-treeview"><summary><span                     │

00:00:15 #207 [Verbose] > │ class="dni-code-hint"><code>(a, (1,                                          │

00:00:15 #208 [Verbose] > │ b))</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><t │

00:00:15 #209 [Verbose] > │ d>Item1</td><td><div                                                         │

00:00:15 #210 [Verbose] > │ class="dni-plaintext"><pre>a</pre></div></td></tr><tr><td>Item2</td><td><det │

00:00:15 #211 [Verbose] > │ ails class="dni-treeview"><summary><span class="dni-code-hint"><code>(1,     │

00:00:15 #212 [Verbose] > │ b)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr><td │

00:00:15 #213 [Verbose] > │ >Item1</td><td><div                                                          │

00:00:15 #214 [Verbose] > │ class="dni-plaintext"><pre>1</pre></div></td></tr><tr><td>Item2</td><td><div │

00:00:15 #215 [Verbose] > │ class="dni-plaintext"><pre>b</pre></div></td></tr></tbody></table></div></de │

00:00:15 #216 [Verbose] > │ tails></td></tr></tbody></table></div></details><style>                      │

00:00:15 #217 [Verbose] > │ .dni-code-hint {                                                             │

00:00:15 #218 [Verbose] > │     font-style: italic;                                                      │

00:00:15 #219 [Verbose] > │     overflow: hidden;                                                        │

00:00:15 #220 [Verbose] > │     white-space: nowrap;                                                     │

00:00:15 #221 [Verbose] > │ }                                                                            │

00:00:15 #222 [Verbose] > │ .dni-treev...                                                                │

00:00:15 #223 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #224 [Verbose] >

00:00:15 #225 [Verbose] > ╭─[ 446.54ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #226 [Verbose] > │ let rec method0 () : struct (string * (int32 * string)) =                    │

00:00:15 #227 [Verbose] > │     let v0 : string = "b"                                                    │

00:00:15 #228 [Verbose] > │     let v1 : (int32 * string) = 1, v0                                        │

00:00:15 #229 [Verbose] > │     let v2 : string = "a"                                                    │

00:00:15 #230 [Verbose] > │     let v3 : (string * (int32 * string)) = v2, v1                            │

00:00:15 #231 [Verbose] > │     let (a, b) = v3                                                          │

00:00:15 #232 [Verbose] > │     let v4 : string = a                                                      │

00:00:15 #233 [Verbose] > │     let v5 : (int32 * string) = b                                            │

00:00:15 #234 [Verbose] > │     struct (v4, v5)                                                          │

00:00:15 #235 [Verbose] > │ method0()                                                                    │

00:00:15 #236 [Verbose] > │                                                                              │

00:00:15 #237 [Verbose] > │                                                                              │

00:00:15 #238 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #239 [Verbose] >

00:00:15 #240 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #241 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #242 [Verbose] > │ ## log_level_type                                                            │

00:00:15 #243 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #244 [Verbose] >

00:00:15 #245 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #246 [Verbose] > union log_level_type =

00:00:15 #247 [Verbose] >     | Verbose

00:00:15 #248 [Verbose] >     | Debug

00:00:15 #249 [Verbose] >     | Info

00:00:15 #250 [Verbose] >     | Warning

00:00:15 #251 [Verbose] >     | Critical

00:00:15 #252 [Verbose] >

00:00:15 #253 [Verbose] > instance to_string log_level_type = function

00:00:15 #254 [Verbose] >     | Verbose => "Verbose"

00:00:15 #255 [Verbose] >     | Debug => "Debug"

00:00:15 #256 [Verbose] >     | Info => "Info"

00:00:15 #257 [Verbose] >     | Warning => "Warning"

00:00:15 #258 [Verbose] >     | Critical => "Critical"

00:00:15 #259 [Verbose] >

00:00:15 #260 [Verbose] > instance of_string log_level_type = function

00:00:15 #261 [Verbose] >     | "Verbose" => Verbose

00:00:15 #262 [Verbose] >     | "Debug" => Debug

00:00:15 #263 [Verbose] >     | "Info" => Info

00:00:15 #264 [Verbose] >     | "Warning" => Warning

00:00:15 #265 [Verbose] >     | "Critical" => Critical

00:00:15 #266 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-4925-2561-21d4f2795f1f\main.spi

00:00:15 #267 [Verbose] >

00:00:15 #268 [Verbose] > ╭─[ 273.78ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #269 [Verbose] > │ ()                                                                           │

00:00:15 #270 [Verbose] > │                                                                              │

00:00:15 #271 [Verbose] > │                                                                              │

00:00:15 #272 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #273 [Verbose] >

00:00:15 #274 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #275 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #276 [Verbose] > │ ## to_any                                                                    │

00:00:15 #277 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #278 [Verbose] >

00:00:15 #279 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #280 [Verbose] > inl to_any forall t. (obj : t) : any =

00:00:15 #281 [Verbose] >     $"!obj"

00:00:15 #282 [Verbose] >

00:00:15 #283 [Verbose] > instance (~:>) any = to_any

00:00:15 #284 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-4953-5323-581d75df23ba\main.spi

00:00:16 #285 [Verbose] >

00:00:16 #286 [Verbose] > ╭─[ 347.91ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #287 [Verbose] > │ ()                                                                           │

00:00:16 #288 [Verbose] > │                                                                              │

00:00:16 #289 [Verbose] > │                                                                              │

00:00:16 #290 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #291 [Verbose] >

00:00:16 #292 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #293 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #294 [Verbose] > │ ## (/@)                                                                      │

00:00:16 #295 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #296 [Verbose] >

00:00:16 #297 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #298 [Verbose] > inl (/@) a b =

00:00:16 #299 [Verbose] >     b |> append a

00:00:16 #300 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-4988-8861-88bd523bf987\main.spi

00:00:16 #301 [Verbose] >

00:00:16 #302 [Verbose] > ╭─[ 213.61ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #303 [Verbose] > │ ()                                                                           │

00:00:16 #304 [Verbose] > │                                                                              │

00:00:16 #305 [Verbose] > │                                                                              │

00:00:16 #306 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #307 [Verbose] >

00:00:16 #308 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #309 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #310 [Verbose] > │ ## unbox                                                                     │

00:00:16 #311 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #312 [Verbose] >

00:00:16 #313 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #314 [Verbose] > inl unbox forall t u. (x : t) : u =

00:00:16 #315 [Verbose] >     $"!x |> unbox<`u>"

00:00:16 #316 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-5010-1056-11c9f64de880\main.spi

00:00:16 #317 [Verbose] >

00:00:16 #318 [Verbose] > ╭─[ 196.27ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #319 [Verbose] > │ ()                                                                           │

00:00:16 #320 [Verbose] > │                                                                              │

00:00:16 #321 [Verbose] > │                                                                              │

00:00:16 #322 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #323 [Verbose] >

00:00:16 #324 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #325 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #326 [Verbose] > │ ## (/+)                                                                      │

00:00:16 #327 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #328 [Verbose] >

00:00:16 #329 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #330 [Verbose] > inl (/+) forall t. (a : t) (b : t) : t =

00:00:16 #331 [Verbose] >     $"!a + !b"

00:00:16 #332 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-5030-3066-3cd29fa9f115\main.spi

00:00:16 #333 [Verbose] >

00:00:16 #334 [Verbose] > ╭─[ 234.32ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #335 [Verbose] > │ ()                                                                           │

00:00:16 #336 [Verbose] > │                                                                              │

00:00:16 #337 [Verbose] > │                                                                              │

00:00:16 #338 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #339 [Verbose] >

00:00:16 #340 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #341 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #342 [Verbose] > │ ## (||>)                                                                     │

00:00:16 #343 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #344 [Verbose] >

00:00:16 #345 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #346 [Verbose] > inl (||>) (arg1, arg2) fn =

00:00:16 #347 [Verbose] >     arg2 |> fn arg1

00:00:17 #348 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-5054-5489-558cdbebd2fd\main.spi

00:00:17 #349 [Verbose] >

00:00:17 #350 [Verbose] > ╭─[ 223.93ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #351 [Verbose] > │ ()                                                                           │

00:00:17 #352 [Verbose] > │                                                                              │

00:00:17 #353 [Verbose] > │                                                                              │

00:00:17 #354 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #355 [Verbose] >

00:00:17 #356 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #357 [Verbose] > // // test

00:00:17 #358 [Verbose] >

00:00:17 #359 [Verbose] > (3i32, 2i32)

00:00:17 #360 [Verbose] > ||> fun a b => a - b

00:00:17 #361 [Verbose] > |> _equal 1

00:00:17 #362 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-5077-7764-7b5d8665ee96\main.spi

00:00:17 #363 [Verbose] >

00:00:17 #364 [Verbose] > ╭─[ 198.35ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #365 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:17 #366 [Verbose] > │     let v0 : string = $"__expect / actual: %A{1} / expected: %A{1}"          │

00:00:17 #367 [Verbose] > │     ()                                                                       │

00:00:17 #368 [Verbose] > │ method0()                                                                    │

00:00:17 #369 [Verbose] > │                                                                              │

00:00:17 #370 [Verbose] > │                                                                              │

00:00:17 #371 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #372 [Verbose] >

00:00:17 #373 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #374 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #375 [Verbose] > │ ## flip                                                                      │

00:00:17 #376 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #377 [Verbose] >

00:00:17 #378 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #379 [Verbose] > inl flip fn a b =

00:00:17 #380 [Verbose] >     fn b a

00:00:17 #381 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-5098-9811-9b7f7ff8de86\main.spi

00:00:17 #382 [Verbose] >

00:00:17 #383 [Verbose] > ╭─[ 196.01ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #384 [Verbose] > │ ()                                                                           │

00:00:17 #385 [Verbose] > │                                                                              │

00:00:17 #386 [Verbose] > │                                                                              │

00:00:17 #387 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #388 [Verbose] >

00:00:17 #389 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #390 [Verbose] > // // test

00:00:17 #391 [Verbose] >

00:00:17 #392 [Verbose] > (1i32, 2i32)

00:00:17 #393 [Verbose] > ||> flip pair

00:00:17 #394 [Verbose] > |> _equal (2, 1)

00:00:17 #395 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-5118-1825-1d0f42166563\main.spi

00:00:17 #396 [Verbose] >

00:00:17 #397 [Verbose] > ╭─[ 185.34ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #398 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:17 #399 [Verbose] > │     let v0 : string = $"__expect / actual: %A{struct (2, 1)} / expected:     │

00:00:17 #400 [Verbose] > │ %A{struct (2, 1)}"                                                           │

00:00:17 #401 [Verbose] > │     ()                                                                       │

00:00:17 #402 [Verbose] > │ method0()                                                                    │

00:00:17 #403 [Verbose] > │                                                                              │

00:00:17 #404 [Verbose] > │                                                                              │

00:00:17 #405 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #406 [Verbose] >

00:00:17 #407 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #408 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #409 [Verbose] > │ ## join_body                                                                 │

00:00:17 #410 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #411 [Verbose] >

00:00:17 #412 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #413 [Verbose] > inl join_body body acc x =

00:00:17 #414 [Verbose] >     if var_is x |> not

00:00:17 #415 [Verbose] >     then body acc x

00:00:17 #416 [Verbose] >     else

00:00:17 #417 [Verbose] >         inl acc = dyn acc

00:00:17 #418 [Verbose] >         join body acc x

00:00:17 #419 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-5137-3773-3ea3587c2f63\main.spi

00:00:17 #420 [Verbose] >

00:00:17 #421 [Verbose] > ╭─[ 223.03ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #422 [Verbose] > │ ()                                                                           │

00:00:17 #423 [Verbose] > │                                                                              │

00:00:17 #424 [Verbose] > │                                                                              │

00:00:17 #425 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #426 [Verbose] >

00:00:17 #427 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #428 [Verbose] > // // test

00:00:17 #429 [Verbose] >

00:00:17 #430 [Verbose] > inl rec fold_list f s = function

00:00:17 #431 [Verbose] >     | Cons (x, x') => fold_list f (f s x) x'

00:00:17 #432 [Verbose] >     | Nil => s

00:00:18 #433 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-5160-6037-631540e95a71\main.spi

00:00:18 #434 [Verbose] >

00:00:18 #435 [Verbose] > ╭─[ 187.88ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #436 [Verbose] > │ ()                                                                           │

00:00:18 #437 [Verbose] > │                                                                              │

00:00:18 #438 [Verbose] > │                                                                              │

00:00:18 #439 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #440 [Verbose] >

00:00:18 #441 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #442 [Verbose] > // // test

00:00:18 #443 [Verbose] >

00:00:18 #444 [Verbose] > [[5i32; 4; join 3; 2; 1]]

00:00:18 #445 [Verbose] > |> fold_list (+) 0

00:00:18 #446 [Verbose] > |> _equal 15

00:00:18 #447 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-5179-7946-79841b81051d\main.spi

00:00:18 #448 [Verbose] >

00:00:18 #449 [Verbose] > ╭─[ 494.00ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #450 [Verbose] > │ let rec method1 () : int32 =                                                 │

00:00:18 #451 [Verbose] > │     3                                                                        │

00:00:18 #452 [Verbose] > │ and method0 () : unit =                                                      │

00:00:18 #453 [Verbose] > │     let v0 : int32 = method1()                                               │

00:00:18 #454 [Verbose] > │     let v1 : int32 = 9 + v0                                                  │

00:00:18 #455 [Verbose] > │     let v2 : int32 = v1 + 2                                                  │

00:00:18 #456 [Verbose] > │     let v3 : int32 = v2 + 1                                                  │

00:00:18 #457 [Verbose] > │     let v4 : string = $"__expect / actual: %A{v3} / expected: %A{15}"        │

00:00:18 #458 [Verbose] > │     let v5 : bool = v3 = 15                                                  │

00:00:18 #459 [Verbose] > │     let v6 : bool = v5 = false                                               │

00:00:18 #460 [Verbose] > │     if v6 then                                                               │

00:00:18 #461 [Verbose] > │         failwith<unit> v4                                                    │

00:00:18 #462 [Verbose] > │ method0()                                                                    │

00:00:18 #463 [Verbose] > │                                                                              │

00:00:18 #464 [Verbose] > │                                                                              │

00:00:18 #465 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #466 [Verbose] >

00:00:18 #467 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #468 [Verbose] > // // test

00:00:18 #469 [Verbose] >

00:00:18 #470 [Verbose] > [[5i32; 4; join 3; 2; 1]]

00:00:18 #471 [Verbose] > |> fold_list (join_body (+)) 0

00:00:18 #472 [Verbose] > |> _equal 15

00:00:18 #473 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-5231-3179-3317ac0b77cb\main.spi

00:00:19 #474 [Verbose] >

00:00:19 #475 [Verbose] > ╭─[ 410.88ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #476 [Verbose] > │ let rec method1 () : int32 =                                                 │

00:00:19 #477 [Verbose] > │     3                                                                        │

00:00:19 #478 [Verbose] > │ and method2 (v0 : int32, v1 : int32) : int32 =                               │

00:00:19 #479 [Verbose] > │     let v2 : int32 = v1 + v0                                                 │

00:00:19 #480 [Verbose] > │     v2                                                                       │

00:00:19 #481 [Verbose] > │ and method0 () : unit =                                                      │

00:00:19 #482 [Verbose] > │     let v0 : int32 = method1()                                               │

00:00:19 #483 [Verbose] > │     let v1 : int32 = 9                                                       │

00:00:19 #484 [Verbose] > │     let v2 : int32 = method2(v0, v1)                                         │

00:00:19 #485 [Verbose] > │     let v3 : int32 = v2 + 2                                                  │

00:00:19 #486 [Verbose] > │     let v4 : int32 = v3 + 1                                                  │

00:00:19 #487 [Verbose] > │     let v5 : string = $"__expect / actual: %A{v4} / expected: %A{15}"        │

00:00:19 #488 [Verbose] > │     let v6 : bool = v4 = 15                                                  │

00:00:19 #489 [Verbose] > │     let v7 : bool = v6 = false                                               │

00:00:19 #490 [Verbose] > │     if v7 then                                                               │

00:00:19 #491 [Verbose] > │         failwith<unit> v5                                                    │

00:00:19 #492 [Verbose] > │ method0()                                                                    │

00:00:19 #493 [Verbose] > │                                                                              │

00:00:19 #494 [Verbose] > │                                                                              │

00:00:19 #495 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #496 [Verbose] >

00:00:19 #497 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:19 #498 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:19 #499 [Verbose] > │ ## join_body_unit                                                            │

00:00:19 #500 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #501 [Verbose] >

00:00:19 #502 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #503 [Verbose] > inl join_body_unit body d x =

00:00:19 #504 [Verbose] >     if var_is d |> not

00:00:19 #505 [Verbose] >     then body x

00:00:19 #506 [Verbose] >     else

00:00:19 #507 [Verbose] >         inl x = dyn x

00:00:19 #508 [Verbose] >         join body x

00:00:19 #509 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-5272-7251-733805f8ec1e\main.spi

00:00:19 #510 [Verbose] >

00:00:19 #511 [Verbose] > ╭─[ 212.38ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #512 [Verbose] > │ ()                                                                           │

00:00:19 #513 [Verbose] > │                                                                              │

00:00:19 #514 [Verbose] > │                                                                              │

00:00:19 #515 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #516 [Verbose] >

00:00:19 #517 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #518 [Verbose] > // // test

00:00:19 #519 [Verbose] >

00:00:19 #520 [Verbose] > [[5i32; 4; join 3; 2; 1]]

00:00:19 #521 [Verbose] > |> fold_list (fun acc n => join_body_unit ((+) acc) n n) 0

00:00:19 #522 [Verbose] > |> _equal 15

00:00:19 #523 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-5294-9404-9854a284190e\main.spi

00:00:19 #524 [Verbose] >

00:00:19 #525 [Verbose] > ╭─[ 225.85ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #526 [Verbose] > │ let rec method1 () : int32 =                                                 │

00:00:19 #527 [Verbose] > │     3                                                                        │

00:00:19 #528 [Verbose] > │ and method2 (v0 : int32) : int32 =                                           │

00:00:19 #529 [Verbose] > │     let v1 : int32 = 9 + v0                                                  │

00:00:19 #530 [Verbose] > │     v1                                                                       │

00:00:19 #531 [Verbose] > │ and method0 () : unit =                                                      │

00:00:19 #532 [Verbose] > │     let v0 : int32 = method1()                                               │

00:00:19 #533 [Verbose] > │     let v1 : int32 = method2(v0)                                             │

00:00:19 #534 [Verbose] > │     let v2 : int32 = v1 + 2                                                  │

00:00:19 #535 [Verbose] > │     let v3 : int32 = v2 + 1                                                  │

00:00:19 #536 [Verbose] > │     let v4 : string = $"__expect / actual: %A{v3} / expected: %A{15}"        │

00:00:19 #537 [Verbose] > │     let v5 : bool = v3 = 15                                                  │

00:00:19 #538 [Verbose] > │     let v6 : bool = v5 = false                                               │

00:00:19 #539 [Verbose] > │     if v6 then                                                               │

00:00:19 #540 [Verbose] > │         failwith<unit> v4                                                    │

00:00:19 #541 [Verbose] > │ method0()                                                                    │

00:00:19 #542 [Verbose] > │                                                                              │

00:00:19 #543 [Verbose] > │                                                                              │

00:00:19 #544 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #545 [Verbose] >

00:00:19 #546 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:19 #547 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:19 #548 [Verbose] > │ ## run_target                                                                │

00:00:19 #549 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #550 [Verbose] >

00:00:19 #551 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #552 [Verbose] > union target_runtime =

00:00:19 #553 [Verbose] >     | Native

00:00:19 #554 [Verbose] >     | Wasm

00:00:19 #555 [Verbose] >

00:00:19 #556 [Verbose] > union target =

00:00:19 #557 [Verbose] >     | Rust : target_runtime

00:00:19 #558 [Verbose] >     | Fsharp

00:00:19 #559 [Verbose] >

00:00:19 #560 [Verbose] > inl run_target forall t. (fn : target -> (() -> t)) : t =

00:00:19 #561 [Verbose] >     $"let mutable result = None"

00:00:19 #562 [Verbose] >     $"#if FABLE_COMPILER_RUST"

00:00:19 #563 [Verbose] >     $"#if \!WASM"

00:00:19 #564 [Verbose] >     fn (Rust Native) () |> fun x => $"!x"

00:00:19 #565 [Verbose] >     $"#else"

00:00:19 #566 [Verbose] >     fn (Rust Wasm) () |> fun x => $"!x"

00:00:19 #567 [Verbose] >     $"#endif"

00:00:19 #568 [Verbose] >     $"#else"

00:00:19 #569 [Verbose] >     fn Fsharp () |> fun x => $"!x"

00:00:19 #570 [Verbose] >     $"#endif"

00:00:19 #571 [Verbose] >     $"|> fun x -> result <- Some x"

00:00:19 #572 [Verbose] >     $"result |> Option.get"

00:00:19 #573 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-5318-1811-1f765dc82f00\main.spi

00:00:19 #574 [Verbose] >

00:00:19 #575 [Verbose] > ╭─[ 169.10ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #576 [Verbose] > │ ()                                                                           │

00:00:19 #577 [Verbose] > │                                                                              │

00:00:19 #578 [Verbose] > │                                                                              │

00:00:19 #579 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #580 [Verbose] >

00:00:19 #581 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #582 [Verbose] > // // test

00:00:19 #583 [Verbose] >

00:00:19 #584 [Verbose] > run_target function

00:00:19 #585 [Verbose] >     | Fsharp => fun () => $"1uy"

00:00:19 #586 [Verbose] >     | Rust (Native) => fun () => $"2uy"

00:00:19 #587 [Verbose] >     | Rust (Wasm) => fun () => $"3uy"

00:00:19 #588 [Verbose] > |> _equal 1u8

00:00:19 #589 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-5335-3515-3b12cf2ddcff\main.spi

00:00:20 #590 [Verbose] >

00:00:20 #591 [Verbose] > ╭─[ 360.43ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #592 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:20 #593 [Verbose] > │     let mutable result = None                                                │

00:00:20 #594 [Verbose] > │     #if FABLE_COMPILER_RUST                                                  │

00:00:20 #595 [Verbose] > │     #if !WASM                                                                │

00:00:20 #596 [Verbose] > │     let v0 : uint8 = 2uy                                                     │

00:00:20 #597 [Verbose] > │     v0                                                                       │

00:00:20 #598 [Verbose] > │     #else                                                                    │

00:00:20 #599 [Verbose] > │     let v1 : uint8 = 3uy                                                     │

00:00:20 #600 [Verbose] > │     v1                                                                       │

00:00:20 #601 [Verbose] > │     #endif                                                                   │

00:00:20 #602 [Verbose] > │     #else                                                                    │

00:00:20 #603 [Verbose] > │     let v2 : uint8 = 1uy                                                     │

00:00:20 #604 [Verbose] > │     v2                                                                       │

00:00:20 #605 [Verbose] > │     #endif                                                                   │

00:00:20 #606 [Verbose] > │     |> fun x -> result <- Some x                                             │

00:00:20 #607 [Verbose] > │     let v3 : uint8 = result |> Option.get                                    │

00:00:20 #608 [Verbose] > │     let v4 : string = $"__expect / actual: %A{v3} / expected: %A{1uy}"       │

00:00:20 #609 [Verbose] > │     let v5 : bool = v3 = 1uy                                                 │

00:00:20 #610 [Verbose] > │     let v6 : bool = v5 = false                                               │

00:00:20 #611 [Verbose] > │     if v6 then                                                               │

00:00:20 #612 [Verbose] > │         failwith<unit> v4                                                    │

00:00:20 #613 [Verbose] > │ method0()                                                                    │

00:00:20 #614 [Verbose] > │                                                                              │

00:00:20 #615 [Verbose] > │                                                                              │

00:00:20 #616 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #617 [Verbose] >

00:00:20 #618 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #619 [Verbose] > // // test

00:00:20 #620 [Verbose] > // // rust=

00:00:20 #621 [Verbose] >

00:00:20 #622 [Verbose] > run_target function

00:00:20 #623 [Verbose] >     | Fsharp => fun () => $"1uy"

00:00:20 #624 [Verbose] >     | Rust (Native) => fun () => $"2uy"

00:00:20 #625 [Verbose] >     | Rust (Wasm) => fun () => $"3uy"

00:00:20 #626 [Verbose] > |> (=) 2u8

00:00:20 #627 [Verbose] > |> _equal true

00:00:20 #628 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1634-5372-7290-71d9121a8e1d\main.spi

00:00:27 #629 [Verbose] >

00:00:27 #630 [Verbose] > ╭─[ 7.07s - return value ]─────────────────────────────────────────────────────╮

00:00:27 #631 [Verbose] > │ .rs output:                                                                  │

00:00:27 #632 [Verbose] > │                                                                              │

00:00:27 #633 [Verbose] > │                                                                              │

00:00:27 #634 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:27 #635 [Verbose] >

00:00:27 #636 [Verbose] > ╭─[ 7.08s - stdout ]───────────────────────────────────────────────────────────╮

00:00:27 #637 [Verbose] > │                                                                              │

00:00:27 #638 [Verbose] > │ .fsx:                                                                        │

00:00:27 #639 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:27 #640 [Verbose] > │     let mutable result = None                                                │

00:00:27 #641 [Verbose] > │     #if FABLE_COMPILER_RUST                                                  │

00:00:27 #642 [Verbose] > │     #if !WASM                                                                │

00:00:27 #643 [Verbose] > │     let v0 : uint8 = 2uy                                                     │

00:00:27 #644 [Verbose] > │     v0                                                                       │

00:00:27 #645 [Verbose] > │     #else                                                                    │

00:00:27 #646 [Verbose] > │     let v1 : uint8 = 3uy                                                     │

00:00:27 #647 [Verbose] > │     v1                                                                       │

00:00:27 #648 [Verbose] > │     #endif                                                                   │

00:00:27 #649 [Verbose] > │     #else                                                                    │

00:00:27 #650 [Verbose] > │     let v2 : uint8 = 1uy                                                     │

00:00:27 #651 [Verbose] > │     v2                                                                       │

00:00:27 #652 [Verbose] > │     #endif                                                                   │

00:00:27 #653 [Verbose] > │     |> fun x -> result <- Some x                                             │

00:00:27 #654 [Verbose] > │     let v3 : uint8 = result |> Option.get                                    │

00:00:27 #655 [Verbose] > │     let v4 : bool = 2uy = v3                                                 │

00:00:27 #656 [Verbose] > │     let v5 : string = $"__expect / actual: %A{v4} / expected: %A{true}"      │

00:00:27 #657 [Verbose] > │     let v6 : bool = v4 = false                                               │

00:00:27 #658 [Verbose] > │     if v6 then                                                               │

00:00:27 #659 [Verbose] > │         failwith<unit> v5                                                    │

00:00:27 #660 [Verbose] > │ method0()                                                                    │

00:00:27 #661 [Verbose] > │                                                                              │

00:00:27 #662 [Verbose] > │ .rs:                                                                         │

00:00:27 #663 [Verbose] > │ #![allow(dead_code,)]                                                        │

00:00:27 #664 [Verbose] > │ #![allow(non_camel_case_types,)]                                             │

00:00:27 #665 [Verbose] > │ #![allow(non_snake_case,)]                                                   │

00:00:27 #666 [Verbose] > │ #![allow(non_upper_case_globals,)]                                           │

00:00:27 #667 [Verbose] > │ #![allow(unreachable_code,)]                                                 │

00:00:27 #668 [Verbose] > │ #![allow(unused_attributes,)]                                                │

00:00:27 #669 [Verbose] > │ #![allow(unused_imports,)]                                                   │

00:00:27 #670 [Verbose] > │ #![allow(unused_macros,)]                                                    │

00:00:27 #671 [Verbose] > │ #![allow(unused_parens,)]                                                    │

00:00:27 #672 [Verbose] > │ #![allow(unused_variables,)]                                                 │

00:00:27 #673 [Verbose] > │ mod module_e32d1f60 {                                                        │

00:00:27 #674 [Verbose] > │     pub mod Fs_rs {                                                          │

00:00:27 #675 [Verbose] > │         use super::*;                                                        │

00:00:27 #676 [Verbose] > │         use fable_library_rust::Native_::Any;                                │

00:00:27 #677 [Verbose] > │         use fable_library_rust::Native_::MutCell;                            │

00:00:27 #678 [Verbose] > │         use fable_library_rust::Native_::on_startup;                         │

00:00:27 #679 [Verbose] > │         use fable_library_rust::Option_::getValue;                           │

00:00:27 #680 [Verbose] > │         use fable_library_rust::String_::sprintf;                            │

00:00:27 #681 [Verbose] > │         pub fn method0() {                                                   │

00:00:27 #682 [Verbose] > │             let result: MutCell<Option<u8>> = MutCell::new(None::<u8>);      │

00:00:27 #683 [Verbose] > │             result.set(Some(2_u8));                                          │

00:00:27 #684 [Verbose] > │             {                                                                │

00:00:27 #685 [Verbose] > │                 let v4: bool = 2_u8 == getValue(result.get());               │

00:00:27 #686 [Verbose] > │                 if v4 == false {                                             │

00:00:27 #687 [Verbose] > │                     panic!("{}",                                             │

00:00:27 #688 [Verbose] > │                            sprintf!("__expect / actual: {:?} / expected:     │

00:00:27 #689 [Verbose] > │ {:?}", &v4, &true));                                                         │

00:00:27 #690 [Verbose] > │                 }                                                            │

00:00:27 #691 [Verbose] > │             }                                                                │

00:00:27 #692 [Verbose] > │         }                                                                    │

00:00:27 #693 [Verbose] > │         on_startup!(Fs_rs::method0());                                       │

00:00:27 #694 [Verbose] > │     }                                                                        │

00:00:27 #695 [Verbose] > │ }                                                                            │

00:00:27 #696 [Verbose] > │ pub use module_e32d1f60::*;                                                  │

00:00:27 #697 [Verbose] > │                                                                              │

00:00:27 #698 [Verbose] > │                                                                              │

00:00:27 #699 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:27 #700 [Verbose] >

00:00:27 #701 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:27 #702 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:27 #703 [Verbose] > │ ## nameof                                                                    │

00:00:27 #704 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:27 #705 [Verbose] >

00:00:27 #706 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:27 #707 [Verbose] > inl nameof x : string =

00:00:27 #708 [Verbose] >     $"nameof !x"

00:00:27 #709 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-0085-8502-8a367833ad7e\main.spi

00:00:27 #710 [Verbose] >

00:00:27 #711 [Verbose] > ╭─[ 237.95ms - stdout ]────────────────────────────────────────────────────────╮

00:00:27 #712 [Verbose] > │ ()                                                                           │

00:00:27 #713 [Verbose] > │                                                                              │

00:00:27 #714 [Verbose] > │                                                                              │

00:00:27 #715 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:27 #716 [Verbose] >

00:00:27 #717 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:27 #718 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:27 #719 [Verbose] > │ ## get_environment_variable                                                  │

00:00:27 #720 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:27 #721 [Verbose] >

00:00:27 #722 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:27 #723 [Verbose] > inl get_environment_variable (var : string) : string =

00:00:27 #724 [Verbose] >     $"System.Environment.GetEnvironmentVariable !var"

00:00:27 #725 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-0109-0963-04fd07b1cc52\main.spi

00:00:27 #726 [Verbose] >

00:00:27 #727 [Verbose] > ╭─[ 217.87ms - stdout ]────────────────────────────────────────────────────────╮

00:00:27 #728 [Verbose] > │ ()                                                                           │

00:00:27 #729 [Verbose] > │                                                                              │

00:00:27 #730 [Verbose] > │                                                                              │

00:00:27 #731 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:30 #732 [Verbose] > [NbConvertApp] Converting notebook common.dib.ipynb to html

00:00:30 #733 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:00:30 #734 [Verbose] >   validate(nb)

00:00:31 #735 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:00:31 #736 [Verbose] >   return _pygments_highlight(

00:00:32 #737 [Verbose] > [NbConvertApp] Writing 335525 bytes to common.dib.html

00:00:33 #738 [Debug] executeAsync / exitCode: 0 / output.Length: 40366

00:00:33 #739 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\lib\spiral

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 console.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:05 #11 [Verbose] >

00:00:05 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:05 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:05 #14 [Verbose] > │ # console                                                                    │

00:00:05 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:05 #16 [Verbose] >

00:00:05 #17 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:05 #18 [Verbose] > // // test

00:00:05 #19 [Verbose] >

00:00:05 #20 [Verbose] > open testing

00:00:09 #21 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-1547-4745-47aa18d89787\main.spi

00:00:12 #22 [Verbose] >

00:00:12 #23 [Verbose] > ╭─[ 7.17s - stdout ]───────────────────────────────────────────────────────────╮

00:00:12 #24 [Verbose] > │ ()                                                                           │

00:00:12 #25 [Verbose] > │                                                                              │

00:00:12 #26 [Verbose] > │                                                                              │

00:00:12 #27 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #28 [Verbose] >

00:00:12 #29 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #30 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #31 [Verbose] > │ ## write_line                                                                │

00:00:12 #32 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #33 [Verbose] >

00:00:12 #34 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #35 [Verbose] > inl write_line obj : () =

00:00:12 #36 [Verbose] >     $"System.Console.WriteLine !obj"

00:00:12 #37 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-1989-8953-82985b4baee0\main.spi

00:00:12 #38 [Verbose] >

00:00:12 #39 [Verbose] > ╭─[ 233.74ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #40 [Verbose] > │ ()                                                                           │

00:00:12 #41 [Verbose] > │                                                                              │

00:00:12 #42 [Verbose] > │                                                                              │

00:00:12 #43 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #44 [Verbose] >

00:00:12 #45 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #46 [Verbose] > inl write_line_ ~obj : () =

00:00:12 #47 [Verbose] >     $"System.Console.WriteLine !obj"

00:00:12 #48 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-2012-1241-146da62513c7\main.spi

00:00:12 #49 [Verbose] >

00:00:12 #50 [Verbose] > ╭─[ 250.19ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #51 [Verbose] > │ ()                                                                           │

00:00:12 #52 [Verbose] > │                                                                              │

00:00:12 #53 [Verbose] > │                                                                              │

00:00:12 #54 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #55 [Verbose] >

00:00:12 #56 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #57 [Verbose] > nominal console_color = $"System.ConsoleColor"

00:00:12 #58 [Verbose] >

00:00:12 #59 [Verbose] > inl reset_color () : () =

00:00:12 #60 [Verbose] >     run_target function

00:00:12 #61 [Verbose] >         | Fsharp => fun () => $"System.Console.ResetColor ()"

00:00:12 #62 [Verbose] >         | _ => fun () => ()

00:00:12 #63 [Verbose] >

00:00:12 #64 [Verbose] > inl set_foreground_color (color : console_color) : () =

00:00:12 #65 [Verbose] >     run_target function

00:00:12 #66 [Verbose] >         | Fsharp => fun () => $"System.Console.ForegroundColor <- !color"

00:00:12 #67 [Verbose] >         | _ => fun () => ()

00:00:13 #68 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-2037-3788-305b41a45b51\main.spi

00:00:13 #69 [Verbose] >

00:00:13 #70 [Verbose] > ╭─[ 232.10ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #71 [Verbose] > │ ()                                                                           │

00:00:13 #72 [Verbose] > │                                                                              │

00:00:13 #73 [Verbose] > │                                                                              │

00:00:13 #74 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #75 [Verbose] > [NbConvertApp] Converting notebook console.dib.ipynb to html

00:00:15 #76 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:00:15 #77 [Verbose] >   validate(nb)

00:00:16 #78 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:00:16 #79 [Verbose] >   return _pygments_highlight(

00:00:16 #80 [Verbose] > [NbConvertApp] Writing 276933 bytes to console.dib.html

00:00:17 #81 [Debug] executeAsync / exitCode: 0 / output.Length: 3869

00:00:17 #82 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\lib\spiral

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 math.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:05 #11 [Verbose] >

00:00:05 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:05 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:05 #14 [Verbose] > │ # math                                                                       │

00:00:05 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:05 #16 [Verbose] >

00:00:05 #17 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:05 #18 [Verbose] > // // test

00:00:05 #19 [Verbose] >

00:00:05 #20 [Verbose] > open testing

00:00:09 #21 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-3382-8296-8b6447b0d1bb\main.spi

00:00:12 #22 [Verbose] >

00:00:12 #23 [Verbose] > ╭─[ 7.11s - stdout ]───────────────────────────────────────────────────────────╮

00:00:12 #24 [Verbose] > │ ()                                                                           │

00:00:12 #25 [Verbose] > │                                                                              │

00:00:12 #26 [Verbose] > │                                                                              │

00:00:12 #27 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #28 [Verbose] >

00:00:12 #29 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #30 [Verbose] > // // test

00:00:12 #31 [Verbose] >

00:00:12 #32 [Verbose] > 2 * 2 / 0.4f64 |> sqrt

00:00:12 #33 [Verbose] > |> _almost_equal 3.1622776601683795

00:00:12 #34 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-3801-0137-06bf9c233983\main.spi

00:00:13 #35 [Verbose] >

00:00:13 #36 [Verbose] > ╭─[ 918.55ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #37 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:13 #38 [Verbose] > │     let v0 : string = $"__expect / actual: %A{3.1622776601683795} /          │

00:00:13 #39 [Verbose] > │ expected: %A{3.1622776601683795}"                                            │

00:00:13 #40 [Verbose] > │     ()                                                                       │

00:00:13 #41 [Verbose] > │ method0()                                                                    │

00:00:13 #42 [Verbose] > │                                                                              │

00:00:13 #43 [Verbose] > │                                                                              │

00:00:13 #44 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #45 [Verbose] >

00:00:13 #46 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:13 #47 [Verbose] > // // test

00:00:13 #48 [Verbose] >

00:00:13 #49 [Verbose] > 2f64 / 3

00:00:13 #50 [Verbose] > |> _almost_equal 0.6666666666666666

00:00:13 #51 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-3893-9368-9b9c6e0a7991\main.spi

00:00:13 #52 [Verbose] >

00:00:13 #53 [Verbose] > ╭─[ 226.80ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #54 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:13 #55 [Verbose] > │     let v0 : string = $"__expect / actual: %A{0.6666666666666666} /          │

00:00:13 #56 [Verbose] > │ expected: %A{0.6666666666666666}"                                            │

00:00:13 #57 [Verbose] > │     ()                                                                       │

00:00:13 #58 [Verbose] > │ method0()                                                                    │

00:00:13 #59 [Verbose] > │                                                                              │

00:00:13 #60 [Verbose] > │                                                                              │

00:00:13 #61 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #62 [Verbose] >

00:00:13 #63 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:13 #64 [Verbose] > // // test

00:00:13 #65 [Verbose] >

00:00:13 #66 [Verbose] > 2f64 |> log

00:00:13 #67 [Verbose] > |> _almost_equal 0.6931471805599453

00:00:13 #68 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-3916-1664-154008437d71\main.spi

00:00:13 #69 [Verbose] >

00:00:13 #70 [Verbose] > ╭─[ 216.66ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #71 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:13 #72 [Verbose] > │     let v0 : string = $"__expect / actual: %A{0.6931471805599453} /          │

00:00:13 #73 [Verbose] > │ expected: %A{0.6931471805599453}"                                            │

00:00:13 #74 [Verbose] > │     ()                                                                       │

00:00:13 #75 [Verbose] > │ method0()                                                                    │

00:00:13 #76 [Verbose] > │                                                                              │

00:00:13 #77 [Verbose] > │                                                                              │

00:00:13 #78 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #79 [Verbose] >

00:00:13 #80 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:13 #81 [Verbose] > // // test

00:00:13 #82 [Verbose] >

00:00:13 #83 [Verbose] > pi

00:00:13 #84 [Verbose] > |> _almost_equal 3.141592653589793f64

00:00:13 #85 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-3938-3881-333d85567509\main.spi

00:00:13 #86 [Verbose] >

00:00:13 #87 [Verbose] > ╭─[ 229.44ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #88 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:13 #89 [Verbose] > │     let v0 : string = $"__expect / actual: %A{3.141592653589793} / expected: │

00:00:13 #90 [Verbose] > │ %A{3.141592653589793}"                                                       │

00:00:13 #91 [Verbose] > │     ()                                                                       │

00:00:13 #92 [Verbose] > │ method0()                                                                    │

00:00:13 #93 [Verbose] > │                                                                              │

00:00:13 #94 [Verbose] > │                                                                              │

00:00:13 #95 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #96 [Verbose] >

00:00:13 #97 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:13 #98 [Verbose] > // // test

00:00:13 #99 [Verbose] >

00:00:13 #100 [Verbose] > pi |> cos

00:00:13 #101 [Verbose] > |> _equal -1f64

00:00:13 #102 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-3962-6209-6a001b83ee4e\main.spi

00:00:14 #103 [Verbose] >

00:00:14 #104 [Verbose] > ╭─[ 242.01ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #105 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:14 #106 [Verbose] > │     let v0 : string = $"__expect / actual: %A{-1.0} / expected: %A{-1.0}"    │

00:00:14 #107 [Verbose] > │     ()                                                                       │

00:00:14 #108 [Verbose] > │ method0()                                                                    │

00:00:14 #109 [Verbose] > │                                                                              │

00:00:14 #110 [Verbose] > │                                                                              │

00:00:14 #111 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #112 [Verbose] >

00:00:14 #113 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #114 [Verbose] > // // test

00:00:14 #115 [Verbose] >

00:00:14 #116 [Verbose] > pi

00:00:14 #117 [Verbose] > |> cos

00:00:14 #118 [Verbose] > |> fun n => n / 2f64

00:00:14 #119 [Verbose] > |> _almost_equal -0.5

00:00:14 #120 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-3987-8702-85a051e1665c\main.spi

00:00:14 #121 [Verbose] >

00:00:14 #122 [Verbose] > ╭─[ 193.06ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #123 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:14 #124 [Verbose] > │     let v0 : string = $"__expect / actual: %A{-0.5} / expected: %A{-0.5}"    │

00:00:14 #125 [Verbose] > │     ()                                                                       │

00:00:14 #126 [Verbose] > │ method0()                                                                    │

00:00:14 #127 [Verbose] > │                                                                              │

00:00:14 #128 [Verbose] > │                                                                              │

00:00:14 #129 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #130 [Verbose] >

00:00:14 #131 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #132 [Verbose] > // // test

00:00:14 #133 [Verbose] >

00:00:14 #134 [Verbose] > pi / 2 |> cos

00:00:14 #135 [Verbose] > |> _almost_equal 0.00000000000000006123233995736766f64

00:00:14 #136 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-4006-0683-0c8b0a5bc1bb\main.spi

00:00:14 #137 [Verbose] >

00:00:14 #138 [Verbose] > ╭─[ 237.09ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #139 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:14 #140 [Verbose] > │     let v0 : string = $"__expect / actual: %A{6.123233995736766E-17} /       │

00:00:14 #141 [Verbose] > │ expected: %A{6.123233995736766E-17}"                                         │

00:00:14 #142 [Verbose] > │     ()                                                                       │

00:00:14 #143 [Verbose] > │ method0()                                                                    │

00:00:14 #144 [Verbose] > │                                                                              │

00:00:14 #145 [Verbose] > │                                                                              │

00:00:14 #146 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #147 [Verbose] >

00:00:14 #148 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:14 #149 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:14 #150 [Verbose] > │ ## atan2                                                                     │

00:00:14 #151 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #152 [Verbose] >

00:00:14 #153 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #154 [Verbose] > inl atan2 (y : f64) (x : f64) =

00:00:14 #155 [Verbose] >     $"System.Math.Atan2 (!y, !x)" : f64

00:00:14 #156 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-4032-3234-303df99a5e3c\main.spi

00:00:14 #157 [Verbose] >

00:00:14 #158 [Verbose] > ╭─[ 264.17ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #159 [Verbose] > │ ()                                                                           │

00:00:14 #160 [Verbose] > │                                                                              │

00:00:14 #161 [Verbose] > │                                                                              │

00:00:14 #162 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #163 [Verbose] >

00:00:14 #164 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #165 [Verbose] > // // test

00:00:14 #166 [Verbose] >

00:00:14 #167 [Verbose] > 0 |> atan2 1

00:00:14 #168 [Verbose] > |> _equal 1.5707963267948966

00:00:14 #169 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-4058-5835-50630bb4ccfc\main.spi

00:00:15 #170 [Verbose] >

00:00:15 #171 [Verbose] > ╭─[ 671.90ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #172 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:15 #173 [Verbose] > │     let v0 : float = System.Math.Atan2 (1.0, 0.0)                            │

00:00:15 #174 [Verbose] > │     let v1 : string = $"__expect / actual: %A{v0} / expected:                │

00:00:15 #175 [Verbose] > │ %A{1.5707963267948966}"                                                      │

00:00:15 #176 [Verbose] > │     let v2 : bool = v0 = 1.5707963267948966                                  │

00:00:15 #177 [Verbose] > │     let v3 : bool = v2 = false                                               │

00:00:15 #178 [Verbose] > │     if v3 then                                                               │

00:00:15 #179 [Verbose] > │         failwith<unit> v1                                                    │

00:00:15 #180 [Verbose] > │ method0()                                                                    │

00:00:15 #181 [Verbose] > │                                                                              │

00:00:15 #182 [Verbose] > │                                                                              │

00:00:15 #183 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #184 [Verbose] >

00:00:15 #185 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #186 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #187 [Verbose] > │ ## e                                                                         │

00:00:15 #188 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #189 [Verbose] >

00:00:15 #190 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #191 [Verbose] > inl e () =

00:00:15 #192 [Verbose] >     exp 1f64

00:00:15 #193 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-4126-2695-2607392ae281\main.spi

00:00:15 #194 [Verbose] >

00:00:15 #195 [Verbose] > ╭─[ 338.03ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #196 [Verbose] > │ ()                                                                           │

00:00:15 #197 [Verbose] > │                                                                              │

00:00:15 #198 [Verbose] > │                                                                              │

00:00:15 #199 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #200 [Verbose] >

00:00:15 #201 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #202 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #203 [Verbose] > │ ## floor                                                                     │

00:00:15 #204 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #205 [Verbose] >

00:00:15 #206 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #207 [Verbose] > inl floor forall t {float}. (x : t) : t =

00:00:15 #208 [Verbose] >     $"floor !x"

00:00:15 #209 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-4161-6134-621fa39b73bf\main.spi

00:00:16 #210 [Verbose] >

00:00:16 #211 [Verbose] > ╭─[ 182.63ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #212 [Verbose] > │ ()                                                                           │

00:00:16 #213 [Verbose] > │                                                                              │

00:00:16 #214 [Verbose] > │                                                                              │

00:00:16 #215 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #216 [Verbose] >

00:00:16 #217 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #218 [Verbose] > // // test

00:00:16 #219 [Verbose] >

00:00:16 #220 [Verbose] > 0.6 |> floor

00:00:16 #221 [Verbose] > |> _equal 0f64

00:00:16 #222 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-4179-7972-7132da0049c0\main.spi

00:00:16 #223 [Verbose] >

00:00:16 #224 [Verbose] > ╭─[ 240.62ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #225 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:16 #226 [Verbose] > │     let v0 : float = floor 0.6                                               │

00:00:16 #227 [Verbose] > │     let v1 : string = $"__expect / actual: %A{v0} / expected: %A{0.0}"       │

00:00:16 #228 [Verbose] > │     let v2 : bool = v0 = 0.0                                                 │

00:00:16 #229 [Verbose] > │     let v3 : bool = v2 = false                                               │

00:00:16 #230 [Verbose] > │     if v3 then                                                               │

00:00:16 #231 [Verbose] > │         failwith<unit> v1                                                    │

00:00:16 #232 [Verbose] > │ method0()                                                                    │

00:00:16 #233 [Verbose] > │                                                                              │

00:00:16 #234 [Verbose] > │                                                                              │

00:00:16 #235 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #236 [Verbose] >

00:00:16 #237 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #238 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #239 [Verbose] > │ ## log_base                                                                  │

00:00:16 #240 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #241 [Verbose] >

00:00:16 #242 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #243 [Verbose] > inl log_base (new_base : f64) (a : f64) =

00:00:16 #244 [Verbose] >     $"System.Math.Log (!a, !new_base)" : f64

00:00:16 #245 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-4205-0515-06fd1ea57242\main.spi

00:00:16 #246 [Verbose] >

00:00:16 #247 [Verbose] > ╭─[ 210.18ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #248 [Verbose] > │ ()                                                                           │

00:00:16 #249 [Verbose] > │                                                                              │

00:00:16 #250 [Verbose] > │                                                                              │

00:00:16 #251 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #252 [Verbose] >

00:00:16 #253 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #254 [Verbose] > // // test

00:00:16 #255 [Verbose] >

00:00:16 #256 [Verbose] > 100 |> log_base 10

00:00:16 #257 [Verbose] > |> _equal 2

00:00:16 #258 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-4226-2649-24b8331341db\main.spi

00:00:16 #259 [Verbose] >

00:00:16 #260 [Verbose] > ╭─[ 211.77ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #261 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:16 #262 [Verbose] > │     let v0 : float = System.Math.Log (100.0, 10.0)                           │

00:00:16 #263 [Verbose] > │     let v1 : string = $"__expect / actual: %A{v0} / expected: %A{2.0}"       │

00:00:16 #264 [Verbose] > │     let v2 : bool = v0 = 2.0                                                 │

00:00:16 #265 [Verbose] > │     let v3 : bool = v2 = false                                               │

00:00:16 #266 [Verbose] > │     if v3 then                                                               │

00:00:16 #267 [Verbose] > │         failwith<unit> v1                                                    │

00:00:16 #268 [Verbose] > │ method0()                                                                    │

00:00:16 #269 [Verbose] > │                                                                              │

00:00:16 #270 [Verbose] > │                                                                              │

00:00:16 #271 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #272 [Verbose] >

00:00:16 #273 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #274 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #275 [Verbose] > │ ## round                                                                     │

00:00:16 #276 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #277 [Verbose] >

00:00:16 #278 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #279 [Verbose] > inl round forall t {float}. (x : t) : t =

00:00:16 #280 [Verbose] >     $"round !x"

00:00:16 #281 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-4248-4867-436c745d200b\main.spi

00:00:16 #282 [Verbose] >

00:00:16 #283 [Verbose] > ╭─[ 198.42ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #284 [Verbose] > │ ()                                                                           │

00:00:16 #285 [Verbose] > │                                                                              │

00:00:16 #286 [Verbose] > │                                                                              │

00:00:16 #287 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #288 [Verbose] >

00:00:16 #289 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #290 [Verbose] > // // test

00:00:16 #291 [Verbose] >

00:00:16 #292 [Verbose] > 0.5 |> round

00:00:16 #293 [Verbose] > |> _equal 0f64

00:00:17 #294 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-4268-6895-66c984215bda\main.spi

00:00:17 #295 [Verbose] >

00:00:17 #296 [Verbose] > ╭─[ 198.93ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #297 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:17 #298 [Verbose] > │     let v0 : float = round 0.5                                               │

00:00:17 #299 [Verbose] > │     let v1 : string = $"__expect / actual: %A{v0} / expected: %A{0.0}"       │

00:00:17 #300 [Verbose] > │     let v2 : bool = v0 = 0.0                                                 │

00:00:17 #301 [Verbose] > │     let v3 : bool = v2 = false                                               │

00:00:17 #302 [Verbose] > │     if v3 then                                                               │

00:00:17 #303 [Verbose] > │         failwith<unit> v1                                                    │

00:00:17 #304 [Verbose] > │ method0()                                                                    │

00:00:17 #305 [Verbose] > │                                                                              │

00:00:17 #306 [Verbose] > │                                                                              │

00:00:17 #307 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #308 [Verbose] >

00:00:17 #309 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #310 [Verbose] > // // test

00:00:17 #311 [Verbose] >

00:00:17 #312 [Verbose] > 0.6 |> round

00:00:17 #313 [Verbose] > |> _equal 1f64

00:00:17 #314 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-4289-8963-8d17764ce15a\main.spi

00:00:17 #315 [Verbose] >

00:00:17 #316 [Verbose] > ╭─[ 224.63ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #317 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:17 #318 [Verbose] > │     let v0 : float = round 0.6                                               │

00:00:17 #319 [Verbose] > │     let v1 : string = $"__expect / actual: %A{v0} / expected: %A{1.0}"       │

00:00:17 #320 [Verbose] > │     let v2 : bool = v0 = 1.0                                                 │

00:00:17 #321 [Verbose] > │     let v3 : bool = v2 = false                                               │

00:00:17 #322 [Verbose] > │     if v3 then                                                               │

00:00:17 #323 [Verbose] > │         failwith<unit> v1                                                    │

00:00:17 #324 [Verbose] > │ method0()                                                                    │

00:00:17 #325 [Verbose] > │                                                                              │

00:00:17 #326 [Verbose] > │                                                                              │

00:00:17 #327 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #328 [Verbose] >

00:00:17 #329 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #330 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #331 [Verbose] > │ ## square                                                                    │

00:00:17 #332 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #333 [Verbose] >

00:00:17 #334 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #335 [Verbose] > inl square x =

00:00:17 #336 [Verbose] >     x ** 2

00:00:17 #337 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-4313-1341-18044435f59c\main.spi

00:00:17 #338 [Verbose] >

00:00:17 #339 [Verbose] > ╭─[ 230.20ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #340 [Verbose] > │ ()                                                                           │

00:00:17 #341 [Verbose] > │                                                                              │

00:00:17 #342 [Verbose] > │                                                                              │

00:00:17 #343 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #344 [Verbose] >

00:00:17 #345 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #346 [Verbose] > // // test

00:00:17 #347 [Verbose] >

00:00:17 #348 [Verbose] > 5f64

00:00:17 #349 [Verbose] > |> sqrt

00:00:17 #350 [Verbose] > |> square

00:00:17 #351 [Verbose] > |> _almost_equal 5

00:00:17 #352 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-4336-3670-3efe0d7b6ef3\main.spi

00:00:17 #353 [Verbose] >

00:00:17 #354 [Verbose] > ╭─[ 239.40ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #355 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:17 #356 [Verbose] > │     let v0 : string = $"__expect / actual: %A{5.000000000000001} / expected: │

00:00:17 #357 [Verbose] > │ %A{5.0}"                                                                     │

00:00:17 #358 [Verbose] > │     ()                                                                       │

00:00:17 #359 [Verbose] > │ method0()                                                                    │

00:00:17 #360 [Verbose] > │                                                                              │

00:00:17 #361 [Verbose] > │                                                                              │

00:00:17 #362 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #363 [Verbose] >

00:00:17 #364 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #365 [Verbose] > // // test

00:00:17 #366 [Verbose] >

00:00:17 #367 [Verbose] > e () |> square

00:00:17 #368 [Verbose] > |> _almost_equal 7.3890560989306495

00:00:17 #369 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-4361-6116-6ed141a3f094\main.spi

00:00:18 #370 [Verbose] >

00:00:18 #371 [Verbose] > ╭─[ 200.18ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #372 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:18 #373 [Verbose] > │     let v0 : string = $"__expect / actual: %A{7.3890560989306495} /          │

00:00:18 #374 [Verbose] > │ expected: %A{7.3890560989306495}"                                            │

00:00:18 #375 [Verbose] > │     ()                                                                       │

00:00:18 #376 [Verbose] > │ method0()                                                                    │

00:00:18 #377 [Verbose] > │                                                                              │

00:00:18 #378 [Verbose] > │                                                                              │

00:00:18 #379 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #380 [Verbose] > [NbConvertApp] Converting notebook math.dib.ipynb to html

00:00:20 #381 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:00:20 #382 [Verbose] >   validate(nb)

00:00:21 #383 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:00:21 #384 [Verbose] >   return _pygments_highlight(

00:00:21 #385 [Verbose] > [NbConvertApp] Writing 301930 bytes to math.dib.html

00:00:22 #386 [Debug] executeAsync / exitCode: 0 / output.Length: 20039

00:00:22 #387 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\lib\spiral

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 \"optionm'.dib\"""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:04 #11 [Verbose] >

00:00:04 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:04 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:04 #14 [Verbose] > │ # optionm                                                                    │

00:00:04 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:04 #16 [Verbose] >

00:00:04 #17 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:04 #18 [Verbose] > // // test

00:00:04 #19 [Verbose] >

00:00:04 #20 [Verbose] > open testing

00:00:08 #21 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1635-5704-0475-0626e6434c21\main.spi

00:00:11 #22 [Verbose] >

00:00:11 #23 [Verbose] > ╭─[ 7.02s - stdout ]───────────────────────────────────────────────────────────╮

00:00:11 #24 [Verbose] > │ ()                                                                           │

00:00:11 #25 [Verbose] > │                                                                              │

00:00:11 #26 [Verbose] > │                                                                              │

00:00:11 #27 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #28 [Verbose] >

00:00:11 #29 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:11 #30 [Verbose] > open rust_operators

00:00:11 #31 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0130-3035-3a84116fb8b4\main.spi

00:00:12 #32 [Verbose] >

00:00:12 #33 [Verbose] > ╭─[ 228.01ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #34 [Verbose] > │ ()                                                                           │

00:00:12 #35 [Verbose] > │                                                                              │

00:00:12 #36 [Verbose] > │                                                                              │

00:00:12 #37 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #38 [Verbose] >

00:00:12 #39 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #40 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #41 [Verbose] > │ ## default_value                                                             │

00:00:12 #42 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #43 [Verbose] >

00:00:12 #44 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #45 [Verbose] > inl default_value d =

00:00:12 #46 [Verbose] >     optionm.defaultWith d

00:00:12 #47 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0154-5419-5bdf2115cdcf\main.spi

00:00:12 #48 [Verbose] >

00:00:12 #49 [Verbose] > ╭─[ 240.69ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #50 [Verbose] > │ ()                                                                           │

00:00:12 #51 [Verbose] > │                                                                              │

00:00:12 #52 [Verbose] > │                                                                              │

00:00:12 #53 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #54 [Verbose] >

00:00:12 #55 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #56 [Verbose] > // // test

00:00:12 #57 [Verbose] >

00:00:12 #58 [Verbose] > None

00:00:12 #59 [Verbose] > |> default_value 3i32

00:00:12 #60 [Verbose] > |> _equal 3i32

00:00:12 #61 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0178-7806-76ec053eefb0\main.spi

00:00:13 #62 [Verbose] >

00:00:13 #63 [Verbose] > ╭─[ 1.06s - stdout ]───────────────────────────────────────────────────────────╮

00:00:13 #64 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:13 #65 [Verbose] > │     let v0 : string = $"__expect / actual: %A{3} / expected: %A{3}"          │

00:00:13 #66 [Verbose] > │     ()                                                                       │

00:00:13 #67 [Verbose] > │ method0()                                                                    │

00:00:13 #68 [Verbose] > │                                                                              │

00:00:13 #69 [Verbose] > │                                                                              │

00:00:13 #70 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #71 [Verbose] >

00:00:13 #72 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:13 #73 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:13 #74 [Verbose] > │ ## (/??)                                                                     │

00:00:13 #75 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #76 [Verbose] >

00:00:13 #77 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:13 #78 [Verbose] > inl (/??) a b =

00:00:13 #79 [Verbose] >     a |> default_value b

00:00:13 #80 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0285-8548-87bd54cf1523\main.spi

00:00:13 #81 [Verbose] >

00:00:13 #82 [Verbose] > ╭─[ 197.30ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #83 [Verbose] > │ ()                                                                           │

00:00:13 #84 [Verbose] > │                                                                              │

00:00:13 #85 [Verbose] > │                                                                              │

00:00:13 #86 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #87 [Verbose] >

00:00:13 #88 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:13 #89 [Verbose] > // // test

00:00:13 #90 [Verbose] >

00:00:13 #91 [Verbose] > None /?? 3i32

00:00:13 #92 [Verbose] > |> _equal 3i32

00:00:13 #93 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0304-0483-00f9fe09de88\main.spi

00:00:13 #94 [Verbose] >

00:00:13 #95 [Verbose] > ╭─[ 241.57ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #96 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:13 #97 [Verbose] > │     let v0 : string = $"__expect / actual: %A{3} / expected: %A{3}"          │

00:00:13 #98 [Verbose] > │     ()                                                                       │

00:00:13 #99 [Verbose] > │ method0()                                                                    │

00:00:13 #100 [Verbose] > │                                                                              │

00:00:13 #101 [Verbose] > │                                                                              │

00:00:13 #102 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #103 [Verbose] >

00:00:13 #104 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:13 #105 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:13 #106 [Verbose] > │ ## default_with                                                              │

00:00:13 #107 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #108 [Verbose] >

00:00:13 #109 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:13 #110 [Verbose] > inl default_with fn =

00:00:13 #111 [Verbose] >     function Some x => x | None => fn ()

00:00:13 #112 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0329-2996-22f107b13188\main.spi

00:00:14 #113 [Verbose] >

00:00:14 #114 [Verbose] > ╭─[ 236.96ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #115 [Verbose] > │ ()                                                                           │

00:00:14 #116 [Verbose] > │                                                                              │

00:00:14 #117 [Verbose] > │                                                                              │

00:00:14 #118 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #119 [Verbose] >

00:00:14 #120 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #121 [Verbose] > // // test

00:00:14 #122 [Verbose] >

00:00:14 #123 [Verbose] > None

00:00:14 #124 [Verbose] > |> default_with (fun () => 3i32)

00:00:14 #125 [Verbose] > |> _equal 3i32

00:00:14 #126 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0354-5415-5caea4bea813\main.spi

00:00:14 #127 [Verbose] >

00:00:14 #128 [Verbose] > ╭─[ 229.14ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #129 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:14 #130 [Verbose] > │     let v0 : string = $"__expect / actual: %A{3} / expected: %A{3}"          │

00:00:14 #131 [Verbose] > │     ()                                                                       │

00:00:14 #132 [Verbose] > │ method0()                                                                    │

00:00:14 #133 [Verbose] > │                                                                              │

00:00:14 #134 [Verbose] > │                                                                              │

00:00:14 #135 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #136 [Verbose] >

00:00:14 #137 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:14 #138 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:14 #139 [Verbose] > │ ## choose                                                                    │

00:00:14 #140 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #141 [Verbose] >

00:00:14 #142 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #143 [Verbose] > inl choose fn a b =

00:00:14 #144 [Verbose] >     match a, b with

00:00:14 #145 [Verbose] >     | Some x, Some y => fn x y |> Some

00:00:14 #146 [Verbose] >     | _ => None

00:00:14 #147 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0377-7774-7ea20288f808\main.spi

00:00:14 #148 [Verbose] >

00:00:14 #149 [Verbose] > ╭─[ 247.04ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #150 [Verbose] > │ ()                                                                           │

00:00:14 #151 [Verbose] > │                                                                              │

00:00:14 #152 [Verbose] > │                                                                              │

00:00:14 #153 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #154 [Verbose] >

00:00:14 #155 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #156 [Verbose] > // // test

00:00:14 #157 [Verbose] >

00:00:14 #158 [Verbose] > (Some 2i32, Some 3)

00:00:14 #159 [Verbose] > ||> choose (+)

00:00:14 #160 [Verbose] > |> _equal (Some 5)

00:00:14 #161 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0402-0258-00a5d39d29e9\main.spi

00:00:15 #162 [Verbose] >

00:00:15 #163 [Verbose] > ╭─[ 989.45ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #164 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:15 #165 [Verbose] > │     | US0_0                                                                  │

00:00:15 #166 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:15 #167 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:15 #168 [Verbose] > │     let v0 : US0 = US0_1(5)                                                  │

00:00:15 #169 [Verbose] > │     let v1 : US0 = US0_1(5)                                                  │

00:00:15 #170 [Verbose] > │     let v2 : string = $"__expect / actual: %A{v0} / expected: %A{v1}"        │

00:00:15 #171 [Verbose] > │     ()                                                                       │

00:00:15 #172 [Verbose] > │ method0()                                                                    │

00:00:15 #173 [Verbose] > │                                                                              │

00:00:15 #174 [Verbose] > │                                                                              │

00:00:15 #175 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #176 [Verbose] >

00:00:15 #177 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #178 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #179 [Verbose] > │ ## iter                                                                      │

00:00:15 #180 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #181 [Verbose] >

00:00:15 #182 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #183 [Verbose] > inl iter fn = function

00:00:15 #184 [Verbose] >     | Some x => fn x

00:00:15 #185 [Verbose] >     | None => ()

00:00:15 #186 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0502-0287-00469c7e4581\main.spi

00:00:15 #187 [Verbose] >

00:00:15 #188 [Verbose] > ╭─[ 216.13ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #189 [Verbose] > │ ()                                                                           │

00:00:15 #190 [Verbose] > │                                                                              │

00:00:15 #191 [Verbose] > │                                                                              │

00:00:15 #192 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #193 [Verbose] >

00:00:15 #194 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #195 [Verbose] > // // test

00:00:15 #196 [Verbose] >

00:00:15 #197 [Verbose] > inl n = mut 1i32

00:00:15 #198 [Verbose] > inl fn =

00:00:15 #199 [Verbose] >     fun n' =>

00:00:15 #200 [Verbose] >         n <- *n + n'

00:00:15 #201 [Verbose] > Some 1i32 |> iter fn

00:00:15 #202 [Verbose] > None |> iter fn

00:00:15 #203 [Verbose] > *n

00:00:15 #204 [Verbose] > |> _equal 2i32

00:00:15 #205 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0524-2463-2d324746396a\main.spi

00:00:16 #206 [Verbose] >

00:00:16 #207 [Verbose] > ╭─[ 437.86ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #208 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:16 #209 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:16 #210 [Verbose] > │     let v0 : Mut0 = {l0 = 1} : Mut0                                          │

00:00:16 #211 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:16 #212 [Verbose] > │     let v2 : int32 = v1 + 1                                                  │

00:00:16 #213 [Verbose] > │     v0.l0 <- v2                                                              │

00:00:16 #214 [Verbose] > │     let v3 : int32 = v0.l0                                                   │

00:00:16 #215 [Verbose] > │     let v4 : string = $"__expect / actual: %A{v3} / expected: %A{2}"         │

00:00:16 #216 [Verbose] > │     let v5 : bool = v3 = 2                                                   │

00:00:16 #217 [Verbose] > │     let v6 : bool = v5 = false                                               │

00:00:16 #218 [Verbose] > │     if v6 then                                                               │

00:00:16 #219 [Verbose] > │         failwith<unit> v4                                                    │

00:00:16 #220 [Verbose] > │ method0()                                                                    │

00:00:16 #221 [Verbose] > │                                                                              │

00:00:16 #222 [Verbose] > │                                                                              │

00:00:16 #223 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #224 [Verbose] >

00:00:16 #225 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #226 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #227 [Verbose] > │ ## option'                                                                   │

00:00:16 #228 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #229 [Verbose] >

00:00:16 #230 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #231 [Verbose] > nominal option' t = $"`t option"

00:00:16 #232 [Verbose] >

00:00:16 #233 [Verbose] > inl unbox forall t. (x : option' t) : option t =

00:00:16 #234 [Verbose] >     inl some x : option t = Some x

00:00:16 #235 [Verbose] >     inl none : option t = None

00:00:16 #236 [Verbose] >     $"!x |> Option.map !some |> Option.defaultValue !none"

00:00:16 #237 [Verbose] >

00:00:16 #238 [Verbose] > inl box forall t. (x : option t) : option' t =

00:00:16 #239 [Verbose] >     match x with

00:00:16 #240 [Verbose] >     | Some x => $"Some !x"

00:00:16 #241 [Verbose] >     | None => $"None"

00:00:16 #242 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0570-7004-718c573b398b\main.spi

00:00:16 #243 [Verbose] >

00:00:16 #244 [Verbose] > ╭─[ 340.14ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #245 [Verbose] > │ ()                                                                           │

00:00:16 #246 [Verbose] > │                                                                              │

00:00:16 #247 [Verbose] > │                                                                              │

00:00:16 #248 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #249 [Verbose] >

00:00:16 #250 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #251 [Verbose] > // // test

00:00:16 #252 [Verbose] >

00:00:16 #253 [Verbose] > inl x = Some 3i32

00:00:16 #254 [Verbose] > inl y : option i32 = None

00:00:16 #255 [Verbose] > inl x' = x |> box |> unbox

00:00:16 #256 [Verbose] > inl y' = y |> box |> unbox

00:00:16 #257 [Verbose] > (x', y') |> _equal (x, y)

00:00:16 #258 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0604-0436-0b871f228f1d\main.spi

00:00:16 #259 [Verbose] >

00:00:16 #260 [Verbose] > ╭─[ 363.04ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #261 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:16 #262 [Verbose] > │     | US0_0                                                                  │

00:00:16 #263 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:16 #264 [Verbose] > │ let rec closure0 () (v0 : int32) : US0 =                                     │

00:00:16 #265 [Verbose] > │     US0_1(v0)                                                                │

00:00:16 #266 [Verbose] > │ and method0 () : unit =                                                      │

00:00:16 #267 [Verbose] > │     let v0 : int32 option = Some 3                                           │

00:00:16 #268 [Verbose] > │     let v1 : (int32 -> US0) = closure0()                                     │

00:00:16 #269 [Verbose] > │     let v2 : US0 = US0_0                                                     │

00:00:16 #270 [Verbose] > │     let v3 : US0 = v0 |> Option.map v1 |> Option.defaultValue v2             │

00:00:16 #271 [Verbose] > │     let v4 : int32 option = None                                             │

00:00:16 #272 [Verbose] > │     let v5 : US0 = US0_0                                                     │

00:00:16 #273 [Verbose] > │     let v6 : US0 = v4 |> Option.map v1 |> Option.defaultValue v5             │

00:00:16 #274 [Verbose] > │     let v7 : US0 = US0_1(3)                                                  │

00:00:16 #275 [Verbose] > │     let v8 : US0 = US0_0                                                     │

00:00:16 #276 [Verbose] > │     let v9 : string = $"__expect / actual: %A{struct (v3, v6)} / expected:   │

00:00:16 #277 [Verbose] > │ %A{struct (v7, v8)}"                                                         │

00:00:16 #278 [Verbose] > │     let v14 : bool =                                                         │

00:00:16 #279 [Verbose] > │         match v3 with                                                        │

00:00:16 #280 [Verbose] > │         | US0_1(v12) -> (* Some *)                                           │

00:00:16 #281 [Verbose] > │             let v13 : bool = v12 = 3                                         │

00:00:16 #282 [Verbose] > │             v13                                                              │

00:00:16 #283 [Verbose] > │         | _ ->                                                               │

00:00:16 #284 [Verbose] > │             false                                                            │

00:00:16 #285 [Verbose] > │     let v16 : bool =                                                         │

00:00:16 #286 [Verbose] > │         if v14 then                                                          │

00:00:16 #287 [Verbose] > │             match v6 with                                                    │

00:00:16 #288 [Verbose] > │             | US0_0 -> (* None *)                                            │

00:00:16 #289 [Verbose] > │                 true                                                         │

00:00:16 #290 [Verbose] > │             | _ ->                                                           │

00:00:16 #291 [Verbose] > │                 false                                                        │

00:00:16 #292 [Verbose] > │         else                                                                 │

00:00:16 #293 [Verbose] > │             false                                                            │

00:00:16 #294 [Verbose] > │     let v17 : bool = v16 = false                                             │

00:00:16 #295 [Verbose] > │     if v17 then                                                              │

00:00:16 #296 [Verbose] > │         failwith<unit> v9                                                    │

00:00:16 #297 [Verbose] > │ method0()                                                                    │

00:00:16 #298 [Verbose] > │                                                                              │

00:00:16 #299 [Verbose] > │                                                                              │

00:00:16 #300 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #301 [Verbose] >

00:00:16 #302 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #303 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #304 [Verbose] > │ ## map                                                                       │

00:00:16 #305 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #306 [Verbose] >

00:00:16 #307 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #308 [Verbose] > inl map forall t u. (fn : t -> u) (x : option' t) : option' u =

00:00:16 #309 [Verbose] >     inl x = join x

00:00:16 #310 [Verbose] >     inl fn = join fn

00:00:16 #311 [Verbose] >     !\($'"!x.map(|x| !fn(x))"')

00:00:17 #312 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0644-4409-4f66836a5c2f\main.spi

00:00:17 #313 [Verbose] >

00:00:17 #314 [Verbose] > ╭─[ 215.60ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #315 [Verbose] > │ ()                                                                           │

00:00:17 #316 [Verbose] > │                                                                              │

00:00:17 #317 [Verbose] > │                                                                              │

00:00:17 #318 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #319 [Verbose] >

00:00:17 #320 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #321 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #322 [Verbose] > │ ## flatten                                                                   │

00:00:17 #323 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #324 [Verbose] >

00:00:17 #325 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #326 [Verbose] > inl flatten x =

00:00:17 #327 [Verbose] >     match x with

00:00:17 #328 [Verbose] >     | Some (Some x) => Some x

00:00:17 #329 [Verbose] >     | _ => None

00:00:17 #330 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0666-6616-6130fbd2ee71\main.spi

00:00:17 #331 [Verbose] >

00:00:17 #332 [Verbose] > ╭─[ 196.81ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #333 [Verbose] > │ ()                                                                           │

00:00:17 #334 [Verbose] > │                                                                              │

00:00:17 #335 [Verbose] > │                                                                              │

00:00:17 #336 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #337 [Verbose] >

00:00:17 #338 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #339 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #340 [Verbose] > │ ## unwrap                                                                    │

00:00:17 #341 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #342 [Verbose] >

00:00:17 #343 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #344 [Verbose] > inl unwrap forall t. (x : option' t) : t =

00:00:17 #345 [Verbose] >     !\($'"!x.unwrap()"')

00:00:17 #346 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0686-8635-82126344f43a\main.spi

00:00:17 #347 [Verbose] >

00:00:17 #348 [Verbose] > ╭─[ 218.32ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #349 [Verbose] > │ ()                                                                           │

00:00:17 #350 [Verbose] > │                                                                              │

00:00:17 #351 [Verbose] > │                                                                              │

00:00:17 #352 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #353 [Verbose] >

00:00:17 #354 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #355 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #356 [Verbose] > │ ## unwrap_or                                                                 │

00:00:17 #357 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #358 [Verbose] >

00:00:17 #359 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #360 [Verbose] > inl unwrap_or forall t. (def : t) (x : option' t) : t =

00:00:17 #361 [Verbose] >     !\($'"!x.unwrap_or(!def)"')

00:00:17 #362 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0709-0903-0ddda5795c01\main.spi

00:00:17 #363 [Verbose] >

00:00:17 #364 [Verbose] > ╭─[ 196.05ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #365 [Verbose] > │ ()                                                                           │

00:00:17 #366 [Verbose] > │                                                                              │

00:00:17 #367 [Verbose] > │                                                                              │

00:00:17 #368 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #369 [Verbose] >

00:00:17 #370 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #371 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #372 [Verbose] > │ ## rc_upgrade                                                                │

00:00:17 #373 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #374 [Verbose] >

00:00:17 #375 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #376 [Verbose] > inl rc_upgrade forall t. (x : rust.weak_rc t) : option (rust.rc t) =

00:00:17 #377 [Verbose] >     inl x = join x

00:00:17 #378 [Verbose] >     !\($'"std::rc::Weak::upgrade(&!x)"')

00:00:17 #379 [Verbose] >     |> unbox

00:00:17 #380 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-0729-2904-2cb5425d7b00\main.spi

00:00:17 #381 [Verbose] >

00:00:17 #382 [Verbose] > ╭─[ 203.46ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #383 [Verbose] > │ ()                                                                           │

00:00:17 #384 [Verbose] > │                                                                              │

00:00:17 #385 [Verbose] > │                                                                              │

00:00:17 #386 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #387 [Verbose] > [NbConvertApp] Converting notebook optionm'.dib.ipynb to html

00:00:20 #388 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:00:20 #389 [Verbose] >   validate(nb)

00:00:21 #390 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:00:21 #391 [Verbose] >   return _pygments_highlight(

00:00:21 #392 [Verbose] > [NbConvertApp] Writing 306388 bytes to optionm'.dib.html

00:00:22 #393 [Debug] executeAsync / exitCode: 0 / output.Length: 20860

00:00:22 #394 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\lib\spiral

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 \"am'.dib\"""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:04 #11 [Verbose] >

00:00:04 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:04 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:04 #14 [Verbose] > │ # am                                                                         │

00:00:04 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:04 #16 [Verbose] >

00:00:04 #17 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:04 #18 [Verbose] > // // test

00:00:04 #19 [Verbose] >

00:00:04 #20 [Verbose] > open testing

00:00:04 #21 [Verbose] >

00:00:04 #22 [Verbose] > prototype append t : t -> t -> t

00:00:08 #23 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-2067-6719-6464a5d3302b\main.spi

00:00:11 #24 [Verbose] >

00:00:11 #25 [Verbose] > ╭─[ 7.06s - stdout ]───────────────────────────────────────────────────────────╮

00:00:11 #26 [Verbose] > │ ()                                                                           │

00:00:11 #27 [Verbose] > │                                                                              │

00:00:11 #28 [Verbose] > │                                                                              │

00:00:11 #29 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #30 [Verbose] >

00:00:11 #31 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:11 #32 [Verbose] > open rust_operators

00:00:12 #33 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-2486-8669-8e3b375d9b87\main.spi

00:00:12 #34 [Verbose] >

00:00:12 #35 [Verbose] > ╭─[ 212.77ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #36 [Verbose] > │ ()                                                                           │

00:00:12 #37 [Verbose] > │                                                                              │

00:00:12 #38 [Verbose] > │                                                                              │

00:00:12 #39 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #40 [Verbose] >

00:00:12 #41 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #42 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #43 [Verbose] > │ ## append                                                                    │

00:00:12 #44 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #45 [Verbose] >

00:00:12 #46 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #47 [Verbose] > instance append a dim {int; number} t =

00:00:12 #48 [Verbose] >     am.append

00:00:12 #49 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-2508-0843-0314870d89c3\main.spi

00:00:12 #50 [Verbose] >

00:00:12 #51 [Verbose] > ╭─[ 222.22ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #52 [Verbose] > │ ()                                                                           │

00:00:12 #53 [Verbose] > │                                                                              │

00:00:12 #54 [Verbose] > │                                                                              │

00:00:12 #55 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #56 [Verbose] >

00:00:12 #57 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #58 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #59 [Verbose] > │ ## /@                                                                        │

00:00:12 #60 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #61 [Verbose] >

00:00:12 #62 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #63 [Verbose] > inl (/@) a b =

00:00:12 #64 [Verbose] >     b |> append a

00:00:12 #65 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-2531-3172-387c6b3ea932\main.spi

00:00:12 #66 [Verbose] >

00:00:12 #67 [Verbose] > ╭─[ 257.40ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #68 [Verbose] > │ ()                                                                           │

00:00:12 #69 [Verbose] > │                                                                              │

00:00:12 #70 [Verbose] > │                                                                              │

00:00:12 #71 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #72 [Verbose] >

00:00:12 #73 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #74 [Verbose] > // // test

00:00:12 #75 [Verbose] >

00:00:12 #76 [Verbose] > a ;[[ "a"; "b" ]] /@ a ;[[ "c"; "d" ]]

00:00:12 #77 [Verbose] > |> _equal (a ;[[ "a"; "b"; "c"; "d" ]] : _ i32 _)

00:00:12 #78 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-2557-5736-51afe2de97ab\main.spi

00:00:14 #79 [Verbose] >

00:00:14 #80 [Verbose] > ╭─[ 2.17s - stdout ]───────────────────────────────────────────────────────────╮

00:00:14 #81 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:14 #82 [Verbose] > │ let rec method1 (v0 : (string [])) : (string []) =                           │

00:00:14 #83 [Verbose] > │     v0                                                                       │

00:00:14 #84 [Verbose] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

00:00:14 #85 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:14 #86 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:14 #87 [Verbose] > │     v3                                                                       │

00:00:14 #88 [Verbose] > │ and method3 (v0 : (string []), v1 : (string []), v2 : int32) : bool =        │

00:00:14 #89 [Verbose] > │     let v3 : int32 = v0.Length                                               │

00:00:14 #90 [Verbose] > │     let v4 : bool = v2 < v3                                                  │

00:00:14 #91 [Verbose] > │     if v4 then                                                               │

00:00:14 #92 [Verbose] > │         let v5 : string = v0.[int v2]                                        │

00:00:14 #93 [Verbose] > │         let v6 : string = v1.[int v2]                                        │

00:00:14 #94 [Verbose] > │         let v7 : bool = v5 = v6                                              │

00:00:14 #95 [Verbose] > │         if v7 then                                                           │

00:00:14 #96 [Verbose] > │             let v8 : int32 = v2 + 1                                          │

00:00:14 #97 [Verbose] > │             method3(v0, v1, v8)                                              │

00:00:14 #98 [Verbose] > │         else                                                                 │

00:00:14 #99 [Verbose] > │             false                                                            │

00:00:14 #100 [Verbose] > │     else                                                                     │

00:00:14 #101 [Verbose] > │         true                                                                 │

00:00:14 #102 [Verbose] > │ and method0 () : unit =                                                      │

00:00:14 #103 [Verbose] > │     let v0 : string = "a"                                                    │

00:00:14 #104 [Verbose] > │     let v1 : string = "b"                                                    │

00:00:14 #105 [Verbose] > │     let v2 : (string []) = [|v0; v1|]                                        │

00:00:14 #106 [Verbose] > │     let v3 : (string []) = method1(v2)                                       │

00:00:14 #107 [Verbose] > │     let v4 : string = "c"                                                    │

00:00:14 #108 [Verbose] > │     let v5 : string = "d"                                                    │

00:00:14 #109 [Verbose] > │     let v6 : (string []) = [|v4; v5|]                                        │

00:00:14 #110 [Verbose] > │     let v7 : (string []) = method1(v6)                                       │

00:00:14 #111 [Verbose] > │     let v8 : int32 = v3.Length                                               │

00:00:14 #112 [Verbose] > │     let v9 : int32 = v7.Length                                               │

00:00:14 #113 [Verbose] > │     let v10 : int32 = v8 + v9                                                │

00:00:14 #114 [Verbose] > │     let v11 : (string []) = Array.zeroCreate<string> (v10)                   │

00:00:14 #115 [Verbose] > │     let v12 : Mut0 = {l0 = 0} : Mut0                                         │

00:00:14 #116 [Verbose] > │     while method2(v10, v12) do                                               │

00:00:14 #117 [Verbose] > │         let v14 : int32 = v12.l0                                             │

00:00:14 #118 [Verbose] > │         let v15 : bool = v14 < v8                                            │

00:00:14 #119 [Verbose] > │         let v19 : string =                                                   │

00:00:14 #120 [Verbose] > │             if v15 then                                                      │

00:00:14 #121 [Verbose] > │                 let v16 : string = v3.[int v14]                              │

00:00:14 #122 [Verbose] > │                 v16                                                          │

00:00:14 #123 [Verbose] > │             else                                                             │

00:00:14 #124 [Verbose] > │                 let v17 : int32 = v14 - v8                                   │

00:00:14 #125 [Verbose] > │                 let v18 : string = v7.[int v17]                              │

00:00:14 #126 [Verbose] > │                 v18                                                          │

00:00:14 #127 [Verbose] > │         v11.[int v14] <- v19                                                 │

00:00:14 #128 [Verbose] > │         let v20 : int32 = v14 + 1                                            │

00:00:14 #129 [Verbose] > │         v12.l0 <- v20                                                        │

00:00:14 #130 [Verbose] > │         ()                                                                   │

00:00:14 #131 [Verbose] > │     let v21 : (string []) = [|v0; v1; v4; v5|]                               │

00:00:14 #132 [Verbose] > │     let v22 : (string []) = method1(v21)                                     │

00:00:14 #133 [Verbose] > │     let v23 : string = $"__expect / actual: %A{v11} / expected: %A{v22}"     │

00:00:14 #134 [Verbose] > │     let v24 : int32 = v11.Length                                             │

00:00:14 #135 [Verbose] > │     let v25 : int32 = v22.Length                                             │

00:00:14 #136 [Verbose] > │     let v26 : bool = v24 = v25                                               │

00:00:14 #137 [Verbose] > │     let v27 : bool = v26 <> true                                             │

00:00:14 #138 [Verbose] > │     let v30 : bool =                                                         │

00:00:14 #139 [Verbose] > │         if v27 then                                                          │

00:00:14 #140 [Verbose] > │             false                                                            │

00:00:14 #141 [Verbose] > │         else                                                                 │

00:00:14 #142 [Verbose] > │             let v28 : int32 = 0                                              │

00:00:14 #143 [Verbose] > │             method3(v11, v22, v28)                                           │

00:00:14 #144 [Verbose] > │     let v31 : bool = v30 = false                                             │

00:00:14 #145 [Verbose] > │     if v31 then                                                              │

00:00:14 #146 [Verbose] > │         failwith<unit> v23                                                   │

00:00:14 #147 [Verbose] > │ method0()                                                                    │

00:00:14 #148 [Verbose] > │                                                                              │

00:00:14 #149 [Verbose] > │                                                                              │

00:00:14 #150 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #151 [Verbose] >

00:00:14 #152 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:14 #153 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:14 #154 [Verbose] > │ ## collect                                                                   │

00:00:14 #155 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #156 [Verbose] >

00:00:14 #157 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #158 [Verbose] > inl collect forall t r. (fn : t -> a i32 r) (items : a i32 t) : a i32 r =

00:00:14 #159 [Verbose] >     items

00:00:14 #160 [Verbose] >     |> am.map fn

00:00:14 #161 [Verbose] >     |> am.fold (/@) (a ;[[]])

00:00:14 #162 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-2778-7884-72eb1558e52b\main.spi

00:00:15 #163 [Verbose] >

00:00:15 #164 [Verbose] > ╭─[ 192.22ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #165 [Verbose] > │ ()                                                                           │

00:00:15 #166 [Verbose] > │                                                                              │

00:00:15 #167 [Verbose] > │                                                                              │

00:00:15 #168 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #169 [Verbose] >

00:00:15 #170 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #171 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #172 [Verbose] > │ ## choose                                                                    │

00:00:15 #173 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #174 [Verbose] >

00:00:15 #175 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #176 [Verbose] > inl choose f l =

00:00:15 #177 [Verbose] >     (l, [[]])

00:00:15 #178 [Verbose] >     ||> am.foldBack fun x acc =>

00:00:15 #179 [Verbose] >         match f x with

00:00:15 #180 [Verbose] >         | Some y => y :: acc

00:00:15 #181 [Verbose] >         | None => acc

00:00:15 #182 [Verbose] >     |> listm.toArray

00:00:15 #183 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-2798-9832-93234e74d5c3\main.spi

00:00:15 #184 [Verbose] >

00:00:15 #185 [Verbose] > ╭─[ 216.88ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #186 [Verbose] > │ ()                                                                           │

00:00:15 #187 [Verbose] > │                                                                              │

00:00:15 #188 [Verbose] > │                                                                              │

00:00:15 #189 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #190 [Verbose] >

00:00:15 #191 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #192 [Verbose] > // // test

00:00:15 #193 [Verbose] >

00:00:15 #194 [Verbose] > (am.init 10i32 id : a _ _)

00:00:15 #195 [Verbose] > |> choose (fun x => if x % 2 = 0 then Some x else None)

00:00:15 #196 [Verbose] > |> _equal (a ;[[ 0; 2; 4; 6; 8 ]] : _ i32 _)

00:00:15 #197 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-2820-2025-2bd443491b03\main.spi

00:00:15 #198 [Verbose] >

00:00:15 #199 [Verbose] > ╭─[ 643.09ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #200 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:15 #201 [Verbose] > │ and UH0 =                                                                    │

00:00:15 #202 [Verbose] > │     | UH0_0 of int32 * UH0                                                   │

00:00:15 #203 [Verbose] > │     | UH0_1                                                                  │

00:00:15 #204 [Verbose] > │ and Mut1 = {mutable l0 : int32; mutable l1 : UH0}                            │

00:00:15 #205 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:15 #206 [Verbose] > │     | US0_0                                                                  │

00:00:15 #207 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:15 #208 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:15 #209 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:15 #210 [Verbose] > │     let v2 : bool = v1 < 10                                                  │

00:00:15 #211 [Verbose] > │     v2                                                                       │

00:00:15 #212 [Verbose] > │ and method2 (v0 : int32, v1 : Mut1) : bool =                                 │

00:00:15 #213 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:15 #214 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:15 #215 [Verbose] > │     v3                                                                       │

00:00:15 #216 [Verbose] > │ and method4 (v0 : UH0, v1 : int32) : int32 =                                 │

00:00:15 #217 [Verbose] > │     match v0 with                                                            │

00:00:15 #218 [Verbose] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

00:00:15 #219 [Verbose] > │         let v4 : int32 = v1 + 1                                              │

00:00:15 #220 [Verbose] > │         method4(v3, v4)                                                      │

00:00:15 #221 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:15 #222 [Verbose] > │         v1                                                                   │

00:00:15 #223 [Verbose] > │ and method5 (v0 : (int32 []), v1 : UH0, v2 : int32) : int32 =                │

00:00:15 #224 [Verbose] > │     match v1 with                                                            │

00:00:15 #225 [Verbose] > │     | UH0_0(v3, v4) -> (* Cons *)                                            │

00:00:15 #226 [Verbose] > │         v0.[int v2] <- v3                                                    │

00:00:15 #227 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:00:15 #228 [Verbose] > │         method5(v0, v4, v5)                                                  │

00:00:15 #229 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:15 #230 [Verbose] > │         v2                                                                   │

00:00:15 #231 [Verbose] > │ and method3 (v0 : UH0) : (int32 []) =                                        │

00:00:15 #232 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:15 #233 [Verbose] > │     let v2 : int32 = method4(v0, v1)                                         │

00:00:15 #234 [Verbose] > │     let v3 : (int32 []) = Array.zeroCreate<int32> (v2)                       │

00:00:15 #235 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:15 #236 [Verbose] > │     let v5 : int32 = method5(v3, v0, v4)                                     │

00:00:15 #237 [Verbose] > │     v3                                                                       │

00:00:15 #238 [Verbose] > │ and method6 (v0 : (int32 [])) : (int32 []) =                                 │

00:00:15 #239 [Verbose] > │     v0                                                                       │

00:00:15 #240 [Verbose] > │ and method7 (v0 : (int32 []), v1 : (int32 []), v2 : int32) : bool =          │

00:00:15 #241 [Verbose] > │     let v3 : int32 = v0.Length                                               │

00:00:15 #242 [Verbose] > │     let v4 : bool = v2 < v3                                                  │

00:00:15 #243 [Verbose] > │     if v4 then                                                               │

00:00:15 #244 [Verbose] > │         let v5 : int32 = v0.[int v2]                                         │

00:00:15 #245 [Verbose] > │         let v6 : int32 = v1.[int v2]                                         │

00:00:15 #246 [Verbose] > │         let v7 : bool = v5 = v6                                              │

00:00:15 #247 [Verbose] > │         if v7 then                                                           │

00:00:15 #248 [Verbose] > │             let v8 : int32 = v2 + 1                                          │

00:00:15 #249 [Verbose] > │             method7(v0, v1, v8)                                              │

00:00:15 #250 [Verbose] > │         else                                                                 │

00:00:15 #251 [Verbose] > │             false                                                            │

00:00:15 #252 [Verbose] > │     else                                                                     │

00:00:15 #253 [Verbose] > │         true                                                                 │

00:00:15 #254 [Verbose] > │ and method0 () : unit =                                                      │

00:00:15 #255 [Verbose] > │     let v0 : (int32 []) = Array.zeroCreate<int32> (10)                       │

00:00:15 #256 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:15 #257 [Verbose] > │     while method1(v1) do                                                     │

00:00:15 #258 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:15 #259 [Verbose] > │         v0.[int v3] <- v3                                                    │

00:00:15 #260 [Verbose] > │         let v4 : int32 = v3 + 1                                              │

00:00:15 #261 [Verbose] > │         v1.l0 <- v4                                                          │

00:00:15 #262 [Verbose] > │         ()                                                                   │

00:00:15 #263 [Verbose] > │     let v5 : int32 = v0.Length                                               │

00:00:15 #264 [Verbose] > │     let v6 : UH0 = UH0_1                                                     │

00:00:15 #265 [Verbose] > │     let v7 : Mut1 = {l0 = 0; l1 = v6} : Mut1                                 │

00:00:15 #266 [Verbose] > │     while method2(v5, v7) do                                                 │

00:00:15 #267 [Verbose] > │         let v9 : int32 = v7.l0                                               │

00:00:15 #268 [Verbose] > │         let v10 : int32 =  -v9                                               │

00:00:15 #269 [Verbose] > │         let v11 : int32 = v10 + v5                                           │

00:00:15 #270 [Verbose] > │         let v12 : int32 = v11 - 1                                            │

00:00:15 #271 [Verbose] > │         let v13 : UH0 = v7.l1                                                │

00:00:15 #272 [Verbose] > │         let v14 : int32 = v0.[int v12]                                       │

00:00:15 #273 [Verbose] > │         let v15 : int32 = v14 % 2                                            │

00:00:15 #274 [Verbose] > │         let v16 : bool = v15 = 0                                             │

00:00:15 #275 [Verbose] > │         let v19 : US0 =                                                      │

00:00:15 #276 [Verbose] > │             if v16 then                                                      │

00:00:15 #277 [Verbose] > │                 US0_1(v14)                                                   │

00:00:15 #278 [Verbose] > │             else                                                             │

00:00:15 #279 [Verbose] > │                 US0_0                                                        │

00:00:15 #280 [Verbose] > │         let v23 : UH0 =                                                      │

00:00:15 #281 [Verbose] > │             match v19 with                                                   │

00:00:15 #282 [Verbose] > │             | US0_0 -> (* None *)                                            │

00:00:15 #283 [Verbose] > │                 v13                                                          │

00:00:15 #284 [Verbose] > │             | US0_1(v20) -> (* Some *)                                       │

00:00:15 #285 [Verbose] > │                 UH0_0(v20, v13)                                              │

00:00:15 #286 [Verbose] > │         let v24 : int32 = v9 + 1                                             │

00:00:15 #287 [Verbose] > │         v7.l0 <- v24                                                         │

00:00:15 #288 [Verbose] > │         v7.l1 <- v23                                                         │

00:00:15 #289 [Verbose] > │         ()                                                                   │

00:00:15 #290 [Verbose] > │     let v25 : UH0 = v7.l1                                                    │

00:00:15 #291 [Verbose] > │     let v26 : (int32 []) = method3(v25)                                      │

00:00:15 #292 [Verbose] > │     let v27 : (int32 []) = [|0; 2; 4; 6; 8|]                                 │

00:00:15 #293 [Verbose] > │     let v28 : (int32 []) = method6(v27)                                      │

00:00:15 #294 [Verbose] > │     let v29 : string = $"__expect / actual: %A{v26} / expected: %A{v28}"     │

00:00:15 #295 [Verbose] > │     let v30 : int32 = v26.Length                                             │

00:00:15 #296 [Verbose] > │     let v31 : int32 = v28.Length                                             │

00:00:15 #297 [Verbose] > │     let v32 : bool = v30 = v31                                               │

00:00:15 #298 [Verbose] > │     let v33 : bool = v32 <> true                                             │

00:00:15 #299 [Verbose] > │     let v36 : bool =                                                         │

00:00:15 #300 [Verbose] > │         if v33 then                                                          │

00:00:15 #301 [Verbose] > │             false                                                            │

00:00:15 #302 [Verbose] > │         else                                                                 │

00:00:15 #303 [Verbose] > │             let v34 : int32 = 0                                              │

00:00:15 #304 [Verbose] > │             method7(v26, v28, v34)                                           │

00:00:15 #305 [Verbose] > │     let v37 : bool = v36 = false                                             │

00:00:15 #306 [Verbose] > │     if v37 then                                                              │

00:00:15 #307 [Verbose] > │         failwith<unit> v29                                                   │

00:00:15 #308 [Verbose] > │ method0()                                                                    │

00:00:15 #309 [Verbose] > │                                                                              │

00:00:15 #310 [Verbose] > │                                                                              │

00:00:15 #311 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #312 [Verbose] >

00:00:15 #313 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #314 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #315 [Verbose] > │ ## sum                                                                       │

00:00:15 #316 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #317 [Verbose] >

00:00:15 #318 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #319 [Verbose] > inl sum (a' : a _ _) =

00:00:15 #320 [Verbose] >     a' |> am.fold (+) 0

00:00:16 #321 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-2891-9115-92c49037c9ea\main.spi

00:00:16 #322 [Verbose] >

00:00:16 #323 [Verbose] > ╭─[ 258.92ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #324 [Verbose] > │ ()                                                                           │

00:00:16 #325 [Verbose] > │                                                                              │

00:00:16 #326 [Verbose] > │                                                                              │

00:00:16 #327 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #328 [Verbose] >

00:00:16 #329 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #330 [Verbose] > // // test

00:00:16 #331 [Verbose] >

00:00:16 #332 [Verbose] > am.init 10i32 id

00:00:16 #333 [Verbose] > |> sum

00:00:16 #334 [Verbose] > |> _equal 45

00:00:16 #335 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-2917-1729-1891dae69df7\main.spi

00:00:16 #336 [Verbose] >

00:00:16 #337 [Verbose] > ╭─[ 394.35ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #338 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:16 #339 [Verbose] > │ and Mut1 = {mutable l0 : int32; mutable l1 : int32}                          │

00:00:16 #340 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:16 #341 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:16 #342 [Verbose] > │     let v2 : bool = v1 < 10                                                  │

00:00:16 #343 [Verbose] > │     v2                                                                       │

00:00:16 #344 [Verbose] > │ and method2 (v0 : int32, v1 : Mut1) : bool =                                 │

00:00:16 #345 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:16 #346 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:16 #347 [Verbose] > │     v3                                                                       │

00:00:16 #348 [Verbose] > │ and method0 () : unit =                                                      │

00:00:16 #349 [Verbose] > │     let v0 : (int32 []) = Array.zeroCreate<int32> (10)                       │

00:00:16 #350 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:16 #351 [Verbose] > │     while method1(v1) do                                                     │

00:00:16 #352 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:16 #353 [Verbose] > │         v0.[int v3] <- v3                                                    │

00:00:16 #354 [Verbose] > │         let v4 : int32 = v3 + 1                                              │

00:00:16 #355 [Verbose] > │         v1.l0 <- v4                                                          │

00:00:16 #356 [Verbose] > │         ()                                                                   │

00:00:16 #357 [Verbose] > │     let v5 : int32 = v0.Length                                               │

00:00:16 #358 [Verbose] > │     let v6 : Mut1 = {l0 = 0; l1 = 0} : Mut1                                  │

00:00:16 #359 [Verbose] > │     while method2(v5, v6) do                                                 │

00:00:16 #360 [Verbose] > │         let v8 : int32 = v6.l0                                               │

00:00:16 #361 [Verbose] > │         let v9 : int32 = v6.l1                                               │

00:00:16 #362 [Verbose] > │         let v10 : int32 = v0.[int v8]                                        │

00:00:16 #363 [Verbose] > │         let v11 : int32 = v9 + v10                                           │

00:00:16 #364 [Verbose] > │         let v12 : int32 = v8 + 1                                             │

00:00:16 #365 [Verbose] > │         v6.l0 <- v12                                                         │

00:00:16 #366 [Verbose] > │         v6.l1 <- v11                                                         │

00:00:16 #367 [Verbose] > │         ()                                                                   │

00:00:16 #368 [Verbose] > │     let v13 : int32 = v6.l1                                                  │

00:00:16 #369 [Verbose] > │     let v14 : string = $"__expect / actual: %A{v13} / expected: %A{45}"      │

00:00:16 #370 [Verbose] > │     let v15 : bool = v13 = 45                                                │

00:00:16 #371 [Verbose] > │     let v16 : bool = v15 = false                                             │

00:00:16 #372 [Verbose] > │     if v16 then                                                              │

00:00:16 #373 [Verbose] > │         failwith<unit> v14                                                   │

00:00:16 #374 [Verbose] > │ method0()                                                                    │

00:00:16 #375 [Verbose] > │                                                                              │

00:00:16 #376 [Verbose] > │                                                                              │

00:00:16 #377 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #378 [Verbose] >

00:00:16 #379 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #380 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #381 [Verbose] > │ ## init_series                                                               │

00:00:16 #382 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #383 [Verbose] >

00:00:16 #384 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #385 [Verbose] > inl init_series start end inc =

00:00:16 #386 [Verbose] >     inl total = conv ((end - start) / inc) + 1

00:00:16 #387 [Verbose] >     am.init total (conv >> (*) inc >> (+) start) : a i32 _

00:00:16 #388 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-2960-6090-636a71810ced\main.spi

00:00:16 #389 [Verbose] >

00:00:16 #390 [Verbose] > ╭─[ 270.51ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #391 [Verbose] > │ ()                                                                           │

00:00:16 #392 [Verbose] > │                                                                              │

00:00:16 #393 [Verbose] > │                                                                              │

00:00:16 #394 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #395 [Verbose] >

00:00:16 #396 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #397 [Verbose] > // // test

00:00:16 #398 [Verbose] >

00:00:16 #399 [Verbose] > init_series 0 1 0.5

00:00:16 #400 [Verbose] > |> _equal (a ;[[0f64; 0.5; 1]])

00:00:17 #401 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-2988-8807-818e87209e25\main.spi

00:00:17 #402 [Verbose] >

00:00:17 #403 [Verbose] > ╭─[ 401.79ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #404 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:17 #405 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:17 #406 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:17 #407 [Verbose] > │     let v2 : bool = v1 < 3                                                   │

00:00:17 #408 [Verbose] > │     v2                                                                       │

00:00:17 #409 [Verbose] > │ and method2 (v0 : (float [])) : (float []) =                                 │

00:00:17 #410 [Verbose] > │     v0                                                                       │

00:00:17 #411 [Verbose] > │ and method3 (v0 : (float []), v1 : (float []), v2 : int32) : bool =          │

00:00:17 #412 [Verbose] > │     let v3 : int32 = v0.Length                                               │

00:00:17 #413 [Verbose] > │     let v4 : bool = v2 < v3                                                  │

00:00:17 #414 [Verbose] > │     if v4 then                                                               │

00:00:17 #415 [Verbose] > │         let v5 : float = v0.[int v2]                                         │

00:00:17 #416 [Verbose] > │         let v6 : float = v1.[int v2]                                         │

00:00:17 #417 [Verbose] > │         let v7 : bool = v5 = v6                                              │

00:00:17 #418 [Verbose] > │         if v7 then                                                           │

00:00:17 #419 [Verbose] > │             let v8 : int32 = v2 + 1                                          │

00:00:17 #420 [Verbose] > │             method3(v0, v1, v8)                                              │

00:00:17 #421 [Verbose] > │         else                                                                 │

00:00:17 #422 [Verbose] > │             false                                                            │

00:00:17 #423 [Verbose] > │     else                                                                     │

00:00:17 #424 [Verbose] > │         true                                                                 │

00:00:17 #425 [Verbose] > │ and method0 () : unit =                                                      │

00:00:17 #426 [Verbose] > │     let v0 : (float []) = Array.zeroCreate<float> (3)                        │

00:00:17 #427 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:17 #428 [Verbose] > │     while method1(v1) do                                                     │

00:00:17 #429 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:17 #430 [Verbose] > │         let v4 : float = float v3                                            │

00:00:17 #431 [Verbose] > │         let v5 : float = 0.5 * v4                                            │

00:00:17 #432 [Verbose] > │         v0.[int v3] <- v5                                                    │

00:00:17 #433 [Verbose] > │         let v6 : int32 = v3 + 1                                              │

00:00:17 #434 [Verbose] > │         v1.l0 <- v6                                                          │

00:00:17 #435 [Verbose] > │         ()                                                                   │

00:00:17 #436 [Verbose] > │     let v7 : (float []) = [|0.0; 0.5; 1.0|]                                  │

00:00:17 #437 [Verbose] > │     let v8 : (float []) = method2(v7)                                        │

00:00:17 #438 [Verbose] > │     let v9 : string = $"__expect / actual: %A{v0} / expected: %A{v8}"        │

00:00:17 #439 [Verbose] > │     let v10 : int32 = v0.Length                                              │

00:00:17 #440 [Verbose] > │     let v11 : int32 = v8.Length                                              │

00:00:17 #441 [Verbose] > │     let v12 : bool = v10 = v11                                               │

00:00:17 #442 [Verbose] > │     let v13 : bool = v12 <> true                                             │

00:00:17 #443 [Verbose] > │     let v16 : bool =                                                         │

00:00:17 #444 [Verbose] > │         if v13 then                                                          │

00:00:17 #445 [Verbose] > │             false                                                            │

00:00:17 #446 [Verbose] > │         else                                                                 │

00:00:17 #447 [Verbose] > │             let v14 : int32 = 0                                              │

00:00:17 #448 [Verbose] > │             method3(v0, v8, v14)                                             │

00:00:17 #449 [Verbose] > │     let v17 : bool = v16 = false                                             │

00:00:17 #450 [Verbose] > │     if v17 then                                                              │

00:00:17 #451 [Verbose] > │         failwith<unit> v9                                                    │

00:00:17 #452 [Verbose] > │ method0()                                                                    │

00:00:17 #453 [Verbose] > │                                                                              │

00:00:17 #454 [Verbose] > │                                                                              │

00:00:17 #455 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #456 [Verbose] >

00:00:17 #457 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #458 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #459 [Verbose] > │ ## head                                                                      │

00:00:17 #460 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #461 [Verbose] >

00:00:17 #462 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #463 [Verbose] > inl head (ar : a _ _) =

00:00:17 #464 [Verbose] >     if var_is ar || length ar > 0

00:00:17 #465 [Verbose] >     then index ar 0

00:00:17 #466 [Verbose] >     else error_type "The length of the array should be greater than 0."

00:00:17 #467 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-3031-3136-3e2885258c17\main.spi

00:00:17 #468 [Verbose] >

00:00:17 #469 [Verbose] > ╭─[ 198.17ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #470 [Verbose] > │ ()                                                                           │

00:00:17 #471 [Verbose] > │                                                                              │

00:00:17 #472 [Verbose] > │                                                                              │

00:00:17 #473 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #474 [Verbose] >

00:00:17 #475 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #476 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #477 [Verbose] > │ ## last                                                                      │

00:00:17 #478 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #479 [Verbose] >

00:00:17 #480 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #481 [Verbose] > inl last (ar : a _ _) =

00:00:17 #482 [Verbose] >     inl len = length ar

00:00:17 #483 [Verbose] >     if var_is ar || len > 0

00:00:17 #484 [Verbose] >     then index ar (len - 1)

00:00:17 #485 [Verbose] >     else error_type "The length of the array should be greater than 0."

00:00:17 #486 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-3051-5175-5370439dece1\main.spi

00:00:17 #487 [Verbose] >

00:00:17 #488 [Verbose] > ╭─[ 202.61ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #489 [Verbose] > │ ()                                                                           │

00:00:17 #490 [Verbose] > │                                                                              │

00:00:17 #491 [Verbose] > │                                                                              │

00:00:17 #492 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #493 [Verbose] >

00:00:17 #494 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #495 [Verbose] > // // test

00:00:17 #496 [Verbose] >

00:00:17 #497 [Verbose] > am.init 10i32 id

00:00:17 #498 [Verbose] > |> last

00:00:17 #499 [Verbose] > |> _equal 9

00:00:17 #500 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-3072-7241-7f91295b0f94\main.spi

00:00:18 #501 [Verbose] >

00:00:18 #502 [Verbose] > ╭─[ 248.48ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #503 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:18 #504 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:18 #505 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:18 #506 [Verbose] > │     let v2 : bool = v1 < 10                                                  │

00:00:18 #507 [Verbose] > │     v2                                                                       │

00:00:18 #508 [Verbose] > │ and method0 () : unit =                                                      │

00:00:18 #509 [Verbose] > │     let v0 : (int32 []) = Array.zeroCreate<int32> (10)                       │

00:00:18 #510 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:18 #511 [Verbose] > │     while method1(v1) do                                                     │

00:00:18 #512 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:18 #513 [Verbose] > │         v0.[int v3] <- v3                                                    │

00:00:18 #514 [Verbose] > │         let v4 : int32 = v3 + 1                                              │

00:00:18 #515 [Verbose] > │         v1.l0 <- v4                                                          │

00:00:18 #516 [Verbose] > │         ()                                                                   │

00:00:18 #517 [Verbose] > │     let v5 : int32 = v0.Length                                               │

00:00:18 #518 [Verbose] > │     let v6 : int32 = v5 - 1                                                  │

00:00:18 #519 [Verbose] > │     let v7 : int32 = v0.[int v6]                                             │

00:00:18 #520 [Verbose] > │     let v8 : string = $"__expect / actual: %A{v7} / expected: %A{9}"         │

00:00:18 #521 [Verbose] > │     let v9 : bool = v7 = 9                                                   │

00:00:18 #522 [Verbose] > │     let v10 : bool = v9 = false                                              │

00:00:18 #523 [Verbose] > │     if v10 then                                                              │

00:00:18 #524 [Verbose] > │         failwith<unit> v8                                                    │

00:00:18 #525 [Verbose] > │ method0()                                                                    │

00:00:18 #526 [Verbose] > │                                                                              │

00:00:18 #527 [Verbose] > │                                                                              │

00:00:18 #528 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #529 [Verbose] >

00:00:18 #530 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:18 #531 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:18 #532 [Verbose] > │ ## try_pick                                                                  │

00:00:18 #533 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #534 [Verbose] >

00:00:18 #535 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #536 [Verbose] > inl try_pick forall t u. (fn : t -> option u) (array : a _ t) : option u =

00:00:18 #537 [Verbose] >     (array, None)

00:00:18 #538 [Verbose] >     ||> am.foldBack fun x acc =>

00:00:18 #539 [Verbose] >         match acc with

00:00:18 #540 [Verbose] >         | Some _ => acc

00:00:18 #541 [Verbose] >         | None => x |> fn

00:00:18 #542 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-3099-9955-981be508cb0b\main.spi

00:00:18 #543 [Verbose] >

00:00:18 #544 [Verbose] > ╭─[ 200.82ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #545 [Verbose] > │ ()                                                                           │

00:00:18 #546 [Verbose] > │                                                                              │

00:00:18 #547 [Verbose] > │                                                                              │

00:00:18 #548 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #549 [Verbose] >

00:00:18 #550 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #551 [Verbose] > // // test

00:00:18 #552 [Verbose] >

00:00:18 #553 [Verbose] > am.init 10i32 id

00:00:18 #554 [Verbose] > |> try_pick (fun x => if x = 5i32 then Some x else None)

00:00:18 #555 [Verbose] > |> _equal (Some 5i32)

00:00:18 #556 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-3119-1981-13f12504be1d\main.spi

00:00:18 #557 [Verbose] >

00:00:18 #558 [Verbose] > ╭─[ 331.45ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #559 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:18 #560 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:18 #561 [Verbose] > │     | US0_0                                                                  │

00:00:18 #562 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:18 #563 [Verbose] > │ and Mut1 = {mutable l0 : int32; mutable l1 : US0}                            │

00:00:18 #564 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:18 #565 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:18 #566 [Verbose] > │     let v2 : bool = v1 < 10                                                  │

00:00:18 #567 [Verbose] > │     v2                                                                       │

00:00:18 #568 [Verbose] > │ and method2 (v0 : int32, v1 : Mut1) : bool =                                 │

00:00:18 #569 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:18 #570 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:18 #571 [Verbose] > │     v3                                                                       │

00:00:18 #572 [Verbose] > │ and method0 () : unit =                                                      │

00:00:18 #573 [Verbose] > │     let v0 : (int32 []) = Array.zeroCreate<int32> (10)                       │

00:00:18 #574 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:18 #575 [Verbose] > │     while method1(v1) do                                                     │

00:00:18 #576 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:18 #577 [Verbose] > │         v0.[int v3] <- v3                                                    │

00:00:18 #578 [Verbose] > │         let v4 : int32 = v3 + 1                                              │

00:00:18 #579 [Verbose] > │         v1.l0 <- v4                                                          │

00:00:18 #580 [Verbose] > │         ()                                                                   │

00:00:18 #581 [Verbose] > │     let v5 : int32 = v0.Length                                               │

00:00:18 #582 [Verbose] > │     let v6 : US0 = US0_0                                                     │

00:00:18 #583 [Verbose] > │     let v7 : Mut1 = {l0 = 0; l1 = v6} : Mut1                                 │

00:00:18 #584 [Verbose] > │     while method2(v5, v7) do                                                 │

00:00:18 #585 [Verbose] > │         let v9 : int32 = v7.l0                                               │

00:00:18 #586 [Verbose] > │         let v10 : int32 =  -v9                                               │

00:00:18 #587 [Verbose] > │         let v11 : int32 = v10 + v5                                           │

00:00:18 #588 [Verbose] > │         let v12 : int32 = v11 - 1                                            │

00:00:18 #589 [Verbose] > │         let v13 : US0 = v7.l1                                                │

00:00:18 #590 [Verbose] > │         let v14 : int32 = v0.[int v12]                                       │

00:00:18 #591 [Verbose] > │         let v21 : US0 =                                                      │

00:00:18 #592 [Verbose] > │             match v13 with                                                   │

00:00:18 #593 [Verbose] > │             | US0_0 -> (* None *)                                            │

00:00:18 #594 [Verbose] > │                 let v16 : bool = v14 = 5                                     │

00:00:18 #595 [Verbose] > │                 if v16 then                                                  │

00:00:18 #596 [Verbose] > │                     US0_1(v14)                                               │

00:00:18 #597 [Verbose] > │                 else                                                         │

00:00:18 #598 [Verbose] > │                     US0_0                                                    │

00:00:18 #599 [Verbose] > │             | US0_1(v15) -> (* Some *)                                       │

00:00:18 #600 [Verbose] > │                 v13                                                          │

00:00:18 #601 [Verbose] > │         let v22 : int32 = v9 + 1                                             │

00:00:18 #602 [Verbose] > │         v7.l0 <- v22                                                         │

00:00:18 #603 [Verbose] > │         v7.l1 <- v21                                                         │

00:00:18 #604 [Verbose] > │         ()                                                                   │

00:00:18 #605 [Verbose] > │     let v23 : US0 = v7.l1                                                    │

00:00:18 #606 [Verbose] > │     let v24 : US0 = US0_1(5)                                                 │

00:00:18 #607 [Verbose] > │     let v25 : string = $"__expect / actual: %A{v23} / expected: %A{v24}"     │

00:00:18 #608 [Verbose] > │     let v29 : bool =                                                         │

00:00:18 #609 [Verbose] > │         match v23 with                                                       │

00:00:18 #610 [Verbose] > │         | US0_1(v27) -> (* Some *)                                           │

00:00:18 #611 [Verbose] > │             let v28 : bool = v27 = 5                                         │

00:00:18 #612 [Verbose] > │             v28                                                              │

00:00:18 #613 [Verbose] > │         | _ ->                                                               │

00:00:18 #614 [Verbose] > │             false                                                            │

00:00:18 #615 [Verbose] > │     let v30 : bool = v29 = false                                             │

00:00:18 #616 [Verbose] > │     if v30 then                                                              │

00:00:18 #617 [Verbose] > │         failwith<unit> v25                                                   │

00:00:18 #618 [Verbose] > │ method0()                                                                    │

00:00:18 #619 [Verbose] > │                                                                              │

00:00:18 #620 [Verbose] > │                                                                              │

00:00:18 #621 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #622 [Verbose] >

00:00:18 #623 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:18 #624 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:18 #625 [Verbose] > │ ## from_vec                                                                  │

00:00:18 #626 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #627 [Verbose] >

00:00:18 #628 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #629 [Verbose] > inl from_vec forall dim el. (vec : rust.vec el) : a dim el =

00:00:18 #630 [Verbose] >     inl vec = join vec

00:00:18 #631 [Verbose] >     !\($'"fable_library_rust::NativeArray_::array_from(!vec)"')

00:00:18 #632 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-3156-5644-55ae6cb49691\main.spi

00:00:18 #633 [Verbose] >

00:00:18 #634 [Verbose] > ╭─[ 235.28ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #635 [Verbose] > │ ()                                                                           │

00:00:18 #636 [Verbose] > │                                                                              │

00:00:18 #637 [Verbose] > │                                                                              │

00:00:18 #638 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #639 [Verbose] >

00:00:18 #640 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:18 #641 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:18 #642 [Verbose] > │ ## to_vec                                                                    │

00:00:18 #643 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #644 [Verbose] >

00:00:18 #645 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #646 [Verbose] > inl to_vec forall t. (ar : array_base t) : rust.vec t =

00:00:18 #647 [Verbose] >     inl ar = join ar

00:00:18 #648 [Verbose] >     !\($'"!ar.to_vec()"')

00:00:18 #649 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-3180-8043-85cd0ad88cae\main.spi

00:00:19 #650 [Verbose] >

00:00:19 #651 [Verbose] > ╭─[ 199.67ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #652 [Verbose] > │ ()                                                                           │

00:00:19 #653 [Verbose] > │                                                                              │

00:00:19 #654 [Verbose] > │                                                                              │

00:00:19 #655 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #656 [Verbose] >

00:00:19 #657 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:19 #658 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:19 #659 [Verbose] > │ ## map_vec                                                                   │

00:00:19 #660 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #661 [Verbose] >

00:00:19 #662 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #663 [Verbose] > inl map_vec forall dim t u. (fn : t -> u) (ar : a dim t) : a dim u =

00:00:19 #664 [Verbose] >     inl fn = join fn

00:00:19 #665 [Verbose] >     inl (a ar) = ar

00:00:19 #666 [Verbose] >     inl ar = ar |> to_vec

00:00:19 #667 [Verbose] >     !\($'"!ar.iter().map(|x| !fn(x.clone())).collect()"')

00:00:19 #668 [Verbose] >     |> from_vec

00:00:19 #669 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-3200-0094-023c6fe1b8d9\main.spi

00:00:19 #670 [Verbose] >

00:00:19 #671 [Verbose] > ╭─[ 197.38ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #672 [Verbose] > │ ()                                                                           │

00:00:19 #673 [Verbose] > │                                                                              │

00:00:19 #674 [Verbose] > │                                                                              │

00:00:19 #675 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #676 [Verbose] >

00:00:19 #677 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:19 #678 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:19 #679 [Verbose] > │ ## map_base                                                                  │

00:00:19 #680 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #681 [Verbose] >

00:00:19 #682 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #683 [Verbose] > inl map_base forall t u. (fn : t -> u) (x : array_base t) : array_base u =

00:00:19 #684 [Verbose] >     a x

00:00:19 #685 [Verbose] >     |> am.map fn

00:00:19 #686 [Verbose] >     |> fun (a x : _ i64 _) => x

00:00:19 #687 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-3221-2136-2e18e20e5885\main.spi

00:00:19 #688 [Verbose] >

00:00:19 #689 [Verbose] > ╭─[ 446.21ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #690 [Verbose] > │ ()                                                                           │

00:00:19 #691 [Verbose] > │                                                                              │

00:00:19 #692 [Verbose] > │                                                                              │

00:00:19 #693 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #694 [Verbose] >

00:00:19 #695 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #696 [Verbose] > inl average forall el {number}. (array : a _ el) : el =

00:00:19 #697 [Verbose] >     $"!array |> Array.average"

00:00:19 #698 [Verbose] >

00:00:19 #699 [Verbose] > inl length forall dim el {number}. (array : a dim el) : dim =

00:00:19 #700 [Verbose] >     $"!array |> Array.length"

00:00:19 #701 [Verbose] >

00:00:19 #702 [Verbose] > inl parallel_map forall dim el el'. (fn : el -> el') (array : a dim el) : a dim

00:00:19 #703 [Verbose] > el' =

00:00:19 #704 [Verbose] >     $"!array |> Array.Parallel.map !fn"

00:00:19 #705 [Verbose] >

00:00:19 #706 [Verbose] > inl sort_by forall dim el. (fn : el -> _) (array : a dim el) : a dim el =

00:00:19 #707 [Verbose] >     $"!array |> Array.sortBy !fn"

00:00:19 #708 [Verbose] >

00:00:19 #709 [Verbose] > inl sort_descending forall dim el. (array : a dim el) : a dim el =

00:00:19 #710 [Verbose] >     $"!array |> Array.sortDescending"

00:00:19 #711 [Verbose] >

00:00:19 #712 [Verbose] > inl transpose forall dim el. (array : a dim (a dim el)) : a dim (a dim el) =

00:00:19 #713 [Verbose] >     $"!array |> Array.transpose"

00:00:19 #714 [Verbose] >

00:00:19 #715 [Verbose] > inl try_item forall dim el. (i : i32) (array : a dim el) : option el =

00:00:19 #716 [Verbose] >     $"!array |> Array.tryItem !i" |> optionm'.unbox

00:00:19 #717 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-3266-6645-6f31f142d244\main.spi

00:00:19 #718 [Verbose] >

00:00:19 #719 [Verbose] > ╭─[ 194.04ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #720 [Verbose] > │ ()                                                                           │

00:00:19 #721 [Verbose] > │                                                                              │

00:00:19 #722 [Verbose] > │                                                                              │

00:00:19 #723 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #724 [Verbose] >

00:00:19 #725 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:19 #726 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:19 #727 [Verbose] > │ ## indexed                                                                   │

00:00:19 #728 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #729 [Verbose] >

00:00:19 #730 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #731 [Verbose] > inl indexed (array : a _ _) =

00:00:19 #732 [Verbose] >     (([[]], 0), array)

00:00:19 #733 [Verbose] >     ||> am.fold fun (acc, i) x =>

00:00:19 #734 [Verbose] >         (i, x) :: acc, i + 1

00:00:19 #735 [Verbose] >     |> fst

00:00:19 #736 [Verbose] >     |> listm.rev

00:00:19 #737 [Verbose] >     |> listm.toArray

00:00:20 #738 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-3286-8600-8bb4dd4c9ebc\main.spi

00:00:20 #739 [Verbose] >

00:00:20 #740 [Verbose] > ╭─[ 185.02ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #741 [Verbose] > │ ()                                                                           │

00:00:20 #742 [Verbose] > │                                                                              │

00:00:20 #743 [Verbose] > │                                                                              │

00:00:20 #744 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #745 [Verbose] >

00:00:20 #746 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #747 [Verbose] > // // test

00:00:20 #748 [Verbose] >

00:00:20 #749 [Verbose] > am.init 3i32 ((*) 2)

00:00:20 #750 [Verbose] > |> indexed

00:00:20 #751 [Verbose] > |> _equal (a ;[[0i32, 0; 1, 2; 2, 4]] : a i32 _)

00:00:20 #752 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-3304-0490-02459374bb0d\main.spi

00:00:20 #753 [Verbose] >

00:00:20 #754 [Verbose] > ╭─[ 415.57ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #755 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:20 #756 [Verbose] > │ and UH0 =                                                                    │

00:00:20 #757 [Verbose] > │     | UH0_0 of int32 * int32 * UH0                                           │

00:00:20 #758 [Verbose] > │     | UH0_1                                                                  │

00:00:20 #759 [Verbose] > │ and Mut1 = {mutable l0 : int32; mutable l1 : UH0; mutable l2 : int32}        │

00:00:20 #760 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:20 #761 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:20 #762 [Verbose] > │     let v2 : bool = v1 < 3                                                   │

00:00:20 #763 [Verbose] > │     v2                                                                       │

00:00:20 #764 [Verbose] > │ and method2 (v0 : int32, v1 : Mut1) : bool =                                 │

00:00:20 #765 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:20 #766 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:20 #767 [Verbose] > │     v3                                                                       │

00:00:20 #768 [Verbose] > │ and method3 (v0 : UH0, v1 : UH0) : UH0 =                                     │

00:00:20 #769 [Verbose] > │     match v0 with                                                            │

00:00:20 #770 [Verbose] > │     | UH0_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:20 #771 [Verbose] > │         let v5 : UH0 = UH0_0(v2, v3, v1)                                     │

00:00:20 #772 [Verbose] > │         method3(v4, v5)                                                      │

00:00:20 #773 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:20 #774 [Verbose] > │         v1                                                                   │

00:00:20 #775 [Verbose] > │ and method5 (v0 : UH0, v1 : int32) : int32 =                                 │

00:00:20 #776 [Verbose] > │     match v0 with                                                            │

00:00:20 #777 [Verbose] > │     | UH0_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:20 #778 [Verbose] > │         let v5 : int32 = v1 + 1                                              │

00:00:20 #779 [Verbose] > │         method5(v4, v5)                                                      │

00:00:20 #780 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:20 #781 [Verbose] > │         v1                                                                   │

00:00:20 #782 [Verbose] > │ and method6 (v0 : (struct (int32 * int32) []), v1 : UH0, v2 : int32) : int32 │

00:00:20 #783 [Verbose] > │ =                                                                            │

00:00:20 #784 [Verbose] > │     match v1 with                                                            │

00:00:20 #785 [Verbose] > │     | UH0_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:20 #786 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:00:20 #787 [Verbose] > │         let v6 : int32 = v2 + 1                                              │

00:00:20 #788 [Verbose] > │         method6(v0, v5, v6)                                                  │

00:00:20 #789 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:20 #790 [Verbose] > │         v2                                                                   │

00:00:20 #791 [Verbose] > │ and method4 (v0 : UH0) : (struct (int32 * int32) []) =                       │

00:00:20 #792 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:20 #793 [Verbose] > │     let v2 : int32 = method5(v0, v1)                                         │

00:00:20 #794 [Verbose] > │     let v3 : (struct (int32 * int32) []) = Array.zeroCreate<struct (int32 *  │

00:00:20 #795 [Verbose] > │ int32)> (v2)                                                                 │

00:00:20 #796 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:20 #797 [Verbose] > │     let v5 : int32 = method6(v3, v0, v4)                                     │

00:00:20 #798 [Verbose] > │     v3                                                                       │

00:00:20 #799 [Verbose] > │ and method7 (v0 : (struct (int32 * int32) [])) : (struct (int32 * int32) []) │

00:00:20 #800 [Verbose] > │ =                                                                            │

00:00:20 #801 [Verbose] > │     v0                                                                       │

00:00:20 #802 [Verbose] > │ and method8 (v0 : (struct (int32 * int32) []), v1 : (struct (int32 * int32)  │

00:00:20 #803 [Verbose] > │ []), v2 : int32) : bool =                                                    │

00:00:20 #804 [Verbose] > │     let v3 : int32 = v0.Length                                               │

00:00:20 #805 [Verbose] > │     let v4 : bool = v2 < v3                                                  │

00:00:20 #806 [Verbose] > │     if v4 then                                                               │

00:00:20 #807 [Verbose] > │         let struct (v5 : int32, v6 : int32) = v0.[int v2]                    │

00:00:20 #808 [Verbose] > │         let struct (v7 : int32, v8 : int32) = v1.[int v2]                    │

00:00:20 #809 [Verbose] > │         let v9 : bool = v5 = v7                                              │

00:00:20 #810 [Verbose] > │         let v11 : bool =                                                     │

00:00:20 #811 [Verbose] > │             if v9 then                                                       │

00:00:20 #812 [Verbose] > │                 let v10 : bool = v6 = v8                                     │

00:00:20 #813 [Verbose] > │                 v10                                                          │

00:00:20 #814 [Verbose] > │             else                                                             │

00:00:20 #815 [Verbose] > │                 false                                                        │

00:00:20 #816 [Verbose] > │         if v11 then                                                          │

00:00:20 #817 [Verbose] > │             let v12 : int32 = v2 + 1                                         │

00:00:20 #818 [Verbose] > │             method8(v0, v1, v12)                                             │

00:00:20 #819 [Verbose] > │         else                                                                 │

00:00:20 #820 [Verbose] > │             false                                                            │

00:00:20 #821 [Verbose] > │     else                                                                     │

00:00:20 #822 [Verbose] > │         true                                                                 │

00:00:20 #823 [Verbose] > │ and method0 () : unit =                                                      │

00:00:20 #824 [Verbose] > │     let v0 : (int32 []) = Array.zeroCreate<int32> (3)                        │

00:00:20 #825 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:20 #826 [Verbose] > │     while method1(v1) do                                                     │

00:00:20 #827 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:20 #828 [Verbose] > │         let v4 : int32 = 2 * v3                                              │

00:00:20 #829 [Verbose] > │         v0.[int v3] <- v4                                                    │

00:00:20 #830 [Verbose] > │         let v5 : int32 = v3 + 1                                              │

00:00:20 #831 [Verbose] > │         v1.l0 <- v5                                                          │

00:00:20 #832 [Verbose] > │         ()                                                                   │

00:00:20 #833 [Verbose] > │     let v6 : int32 = v0.Length                                               │

00:00:20 #834 [Verbose] > │     let v7 : UH0 = UH0_1                                                     │

00:00:20 #835 [Verbose] > │     let v8 : Mut1 = {l0 = 0; l1 = v7; l2 = 0} : Mut1                         │

00:00:20 #836 [Verbose] > │     while method2(v6, v8) do                                                 │

00:00:20 #837 [Verbose] > │         let v10 : int32 = v8.l0                                              │

00:00:20 #838 [Verbose] > │         let struct (v11 : UH0, v12 : int32) = v8.l1, v8.l2                   │

00:00:20 #839 [Verbose] > │         let v13 : int32 = v0.[int v10]                                       │

00:00:20 #840 [Verbose] > │         let v14 : int32 = v12 + 1                                            │

00:00:20 #841 [Verbose] > │         let v15 : int32 = v10 + 1                                            │

00:00:20 #842 [Verbose] > │         let v16 : UH0 = UH0_0(v12, v13, v11)                                 │

00:00:20 #843 [Verbose] > │         v8.l0 <- v15                                                         │

00:00:20 #844 [Verbose] > │         v8.l1 <- v16                                                         │

00:00:20 #845 [Verbose] > │         v8.l2 <- v14                                                         │

00:00:20 #846 [Verbose] > │         ()                                                                   │

00:00:20 #847 [Verbose] > │     let struct (v17 : UH0, v18 : int32) = v8.l1, v8.l2                       │

00:00:20 #848 [Verbose] > │     let v19 : UH0 = UH0_1                                                    │

00:00:20 #849 [Verbose] > │     let v20 : UH0 = method3(v17, v19)                                        │

00:00:20 #850 [Verbose] > │     let v21 : (struct (int32 * int32) []) = method4(v20)                     │

00:00:20 #851 [Verbose] > │     let v22 : (struct (int32 * int32) []) = [|struct (0, 0); struct (1, 2);  │

00:00:20 #852 [Verbose] > │ struct (2, 4)|]                                                              │

00:00:20 #853 [Verbose] > │     let v23 : (struct (int32 * int32) []) = method7(v22)                     │

00:00:20 #854 [Verbose] > │     let v24 : string = $"__expect / actual: %A{v21} / expected: %A{v23}"     │

00:00:20 #855 [Verbose] > │     let v25 : int32 = v21.Length                                             │

00:00:20 #856 [Verbose] > │     let v26 : int32 = v23.Length                                             │

00:00:20 #857 [Verbose] > │     let v27 : bool = v25 = v26                                               │

00:00:20 #858 [Verbose] > │     let v28 : bool = v27 <> true                                             │

00:00:20 #859 [Verbose] > │     let v31 : bool =                                                         │

00:00:20 #860 [Verbose] > │         if v28 then                                                          │

00:00:20 #861 [Verbose] > │             false                                                            │

00:00:20 #862 [Verbose] > │         else                                                                 │

00:00:20 #863 [Verbose] > │             let v29 : int32 = 0                                              │

00:00:20 #864 [Verbose] > │             method8(v21, v23, v29)                                           │

00:00:20 #865 [Verbose] > │     let v32 : bool = v31 = false                                             │

00:00:20 #866 [Verbose] > │     if v32 then                                                              │

00:00:20 #867 [Verbose] > │         failwith<unit> v24                                                   │

00:00:20 #868 [Verbose] > │ method0()                                                                    │

00:00:20 #869 [Verbose] > │                                                                              │

00:00:20 #870 [Verbose] > │                                                                              │

00:00:20 #871 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #872 [Verbose] >

00:00:20 #873 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:20 #874 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:20 #875 [Verbose] > │ ## enumerate                                                                 │

00:00:20 #876 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #877 [Verbose] >

00:00:20 #878 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #879 [Verbose] > inl enumerate forall dim {int; number} t. (ar : a dim t) : a dim (unativeint *

00:00:20 #880 [Verbose] > t) =

00:00:20 #881 [Verbose] >     inl (a ar) = ar

00:00:20 #882 [Verbose] >     inl ar = ar |> to_vec

00:00:20 #883 [Verbose] >     !\($'"!ar.into_iter().enumerate().map(std::rc::Rc::new).collect()"')

00:00:20 #884 [Verbose] >     |> from_vec

00:00:20 #885 [Verbose] >     |> map_vec from_pair

00:00:20 #886 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-3355-5557-5b49e61202fc\main.spi

00:00:20 #887 [Verbose] >

00:00:20 #888 [Verbose] > ╭─[ 195.89ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #889 [Verbose] > │ ()                                                                           │

00:00:20 #890 [Verbose] > │                                                                              │

00:00:20 #891 [Verbose] > │                                                                              │

00:00:20 #892 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #893 [Verbose] >

00:00:20 #894 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:20 #895 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:20 #896 [Verbose] > │ ## indexed'                                                                  │

00:00:20 #897 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #898 [Verbose] >

00:00:20 #899 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #900 [Verbose] > inl indexed' forall t dim {int; number} dim' {int; number} u {number}. (ar : a

00:00:20 #901 [Verbose] > dim t) : a dim' (u * t) =

00:00:20 #902 [Verbose] >     ((0, a ;[[]]), ar)

00:00:20 #903 [Verbose] >     ||> am.fold fun (i, acc) x =>

00:00:20 #904 [Verbose] >         i + 1, acc /@ a ;[[i, x]]

00:00:20 #905 [Verbose] >     |> snd

00:00:20 #906 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-3375-7568-7d424704939e\main.spi

00:00:20 #907 [Verbose] >

00:00:20 #908 [Verbose] > ╭─[ 193.68ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #909 [Verbose] > │ ()                                                                           │

00:00:20 #910 [Verbose] > │                                                                              │

00:00:21 #911 [Verbose] > │                                                                              │

00:00:21 #912 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #913 [Verbose] >

00:00:21 #914 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:21 #915 [Verbose] > // // test

00:00:21 #916 [Verbose] >

00:00:21 #917 [Verbose] > am.init 3i32 ((*) 2)

00:00:21 #918 [Verbose] > |> indexed'

00:00:21 #919 [Verbose] > |> _equal (a ;[[0i32, 0; 1, 2; 2, 4]] : a i32 _)

00:00:21 #920 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-3395-9554-95a041201058\main.spi

00:00:21 #921 [Verbose] >

00:00:21 #922 [Verbose] > ╭─[ 395.31ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #923 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:21 #924 [Verbose] > │ and Mut1 = {mutable l0 : int32; mutable l1 : int32; mutable l2 : (struct     │

00:00:21 #925 [Verbose] > │ (int32 * int32) [])}                                                         │

00:00:21 #926 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:21 #927 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:21 #928 [Verbose] > │     let v2 : bool = v1 < 3                                                   │

00:00:21 #929 [Verbose] > │     v2                                                                       │

00:00:21 #930 [Verbose] > │ and method2 (v0 : (struct (int32 * int32) [])) : (struct (int32 * int32) []) │

00:00:21 #931 [Verbose] > │ =                                                                            │

00:00:21 #932 [Verbose] > │     v0                                                                       │

00:00:21 #933 [Verbose] > │ and method3 (v0 : int32, v1 : Mut1) : bool =                                 │

00:00:21 #934 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:21 #935 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:21 #936 [Verbose] > │     v3                                                                       │

00:00:21 #937 [Verbose] > │ and method4 (v0 : int32, v1 : Mut0) : bool =                                 │

00:00:21 #938 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:21 #939 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:21 #940 [Verbose] > │     v3                                                                       │

00:00:21 #941 [Verbose] > │ and method5 (v0 : (struct (int32 * int32) []), v1 : (struct (int32 * int32)  │

00:00:21 #942 [Verbose] > │ []), v2 : int32) : bool =                                                    │

00:00:21 #943 [Verbose] > │     let v3 : int32 = v0.Length                                               │

00:00:21 #944 [Verbose] > │     let v4 : bool = v2 < v3                                                  │

00:00:21 #945 [Verbose] > │     if v4 then                                                               │

00:00:21 #946 [Verbose] > │         let struct (v5 : int32, v6 : int32) = v0.[int v2]                    │

00:00:21 #947 [Verbose] > │         let struct (v7 : int32, v8 : int32) = v1.[int v2]                    │

00:00:21 #948 [Verbose] > │         let v9 : bool = v5 = v7                                              │

00:00:21 #949 [Verbose] > │         let v11 : bool =                                                     │

00:00:21 #950 [Verbose] > │             if v9 then                                                       │

00:00:21 #951 [Verbose] > │                 let v10 : bool = v6 = v8                                     │

00:00:21 #952 [Verbose] > │                 v10                                                          │

00:00:21 #953 [Verbose] > │             else                                                             │

00:00:21 #954 [Verbose] > │                 false                                                        │

00:00:21 #955 [Verbose] > │         if v11 then                                                          │

00:00:21 #956 [Verbose] > │             let v12 : int32 = v2 + 1                                         │

00:00:21 #957 [Verbose] > │             method5(v0, v1, v12)                                             │

00:00:21 #958 [Verbose] > │         else                                                                 │

00:00:21 #959 [Verbose] > │             false                                                            │

00:00:21 #960 [Verbose] > │     else                                                                     │

00:00:21 #961 [Verbose] > │         true                                                                 │

00:00:21 #962 [Verbose] > │ and method0 () : unit =                                                      │

00:00:21 #963 [Verbose] > │     let v0 : (int32 []) = Array.zeroCreate<int32> (3)                        │

00:00:21 #964 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:21 #965 [Verbose] > │     while method1(v1) do                                                     │

00:00:21 #966 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:21 #967 [Verbose] > │         let v4 : int32 = 2 * v3                                              │

00:00:21 #968 [Verbose] > │         v0.[int v3] <- v4                                                    │

00:00:21 #969 [Verbose] > │         let v5 : int32 = v3 + 1                                              │

00:00:21 #970 [Verbose] > │         v1.l0 <- v5                                                          │

00:00:21 #971 [Verbose] > │         ()                                                                   │

00:00:21 #972 [Verbose] > │     let v6 : (struct (int32 * int32) []) = [||]                              │

00:00:21 #973 [Verbose] > │     let v7 : (struct (int32 * int32) []) = method2(v6)                       │

00:00:21 #974 [Verbose] > │     let v8 : int32 = v0.Length                                               │

00:00:21 #975 [Verbose] > │     let v9 : Mut1 = {l0 = 0; l1 = 0; l2 = v7} : Mut1                         │

00:00:21 #976 [Verbose] > │     while method3(v8, v9) do                                                 │

00:00:21 #977 [Verbose] > │         let v11 : int32 = v9.l0                                              │

00:00:21 #978 [Verbose] > │         let struct (v12 : int32, v13 : (struct (int32 * int32) [])) = v9.l1, │

00:00:21 #979 [Verbose] > │ v9.l2                                                                        │

00:00:21 #980 [Verbose] > │         let v14 : int32 = v0.[int v11]                                       │

00:00:21 #981 [Verbose] > │         let v15 : int32 = v12 + 1                                            │

00:00:21 #982 [Verbose] > │         let v16 : (struct (int32 * int32) []) = [|struct (v12, v14)|]        │

00:00:21 #983 [Verbose] > │         let v17 : (struct (int32 * int32) []) = method2(v16)                 │

00:00:21 #984 [Verbose] > │         let v18 : int32 = v13.Length                                         │

00:00:21 #985 [Verbose] > │         let v19 : int32 = v17.Length                                         │

00:00:21 #986 [Verbose] > │         let v20 : int32 = v18 + v19                                          │

00:00:21 #987 [Verbose] > │         let v21 : (struct (int32 * int32) []) = Array.zeroCreate<struct      │

00:00:21 #988 [Verbose] > │ (int32 * int32)> (v20)                                                       │

00:00:21 #989 [Verbose] > │         let v22 : Mut0 = {l0 = 0} : Mut0                                     │

00:00:21 #990 [Verbose] > │         while method4(v20, v22) do                                           │

00:00:21 #991 [Verbose] > │             let v24 : int32 = v22.l0                                         │

00:00:21 #992 [Verbose] > │             let v25 : bool = v24 < v18                                       │

00:00:21 #993 [Verbose] > │             let struct (v31 : int32, v32 : int32) =                          │

00:00:21 #994 [Verbose] > │                 if v25 then                                                  │

00:00:21 #995 [Verbose] > │                     let struct (v26 : int32, v27 : int32) = v13.[int v24]    │

00:00:21 #996 [Verbose] > │                     struct (v26, v27)                                        │

00:00:21 #997 [Verbose] > │                 else                                                         │

00:00:21 #998 [Verbose] > │                     let v28 : int32 = v24 - v18                              │

00:00:21 #999 [Verbose] > │                     let struct (v29 : int32, v30 : int32) = v17.[int v28]    │

00:00:21 #1000 [Verbose] > │                     struct (v29, v30)                                        │

00:00:21 #1001 [Verbose] > │             v21.[int v24] <- struct (v31, v32)                               │

00:00:21 #1002 [Verbose] > │             let v33 : int32 = v24 + 1                                        │

00:00:21 #1003 [Verbose] > │             v22.l0 <- v33                                                    │

00:00:21 #1004 [Verbose] > │             ()                                                               │

00:00:21 #1005 [Verbose] > │         let v34 : int32 = v11 + 1                                            │

00:00:21 #1006 [Verbose] > │         v9.l0 <- v34                                                         │

00:00:21 #1007 [Verbose] > │         v9.l1 <- v15                                                         │

00:00:21 #1008 [Verbose] > │         v9.l2 <- v21                                                         │

00:00:21 #1009 [Verbose] > │         ()                                                                   │

00:00:21 #1010 [Verbose] > │     let struct (v35 : int32, v36 : (struct (int32 * int32) [])) = v9.l1,     │

00:00:21 #1011 [Verbose] > │ v9.l2                                                                        │

00:00:21 #1012 [Verbose] > │     let v37 : (struct (int32 * int32) []) = [|struct (0, 0); struct (1, 2);  │

00:00:21 #1013 [Verbose] > │ struct (2, 4)|]                                                              │

00:00:21 #1014 [Verbose] > │     let v38 : (struct (int32 * int32) []) = method2(v37)                     │

00:00:21 #1015 [Verbose] > │     let v39 : string = $"__expect / actual: %A{v36} / expected: %A{v38}"     │

00:00:21 #1016 [Verbose] > │     let v40 : int32 = v36.Length                                             │

00:00:21 #1017 [Verbose] > │     let v41 : int32 = v38.Length                                             │

00:00:21 #1018 [Verbose] > │     let v42 : bool = v40 = v41                                               │

00:00:21 #1019 [Verbose] > │     let v43 : bool = v42 <> true                                             │

00:00:21 #1020 [Verbose] > │     let v46 : bool =                                                         │

00:00:21 #1021 [Verbose] > │         if v43 then                                                          │

00:00:21 #1022 [Verbose] > │             false                                                            │

00:00:21 #1023 [Verbose] > │         else                                                                 │

00:00:21 #1024 [Verbose] > │             let v44 : int32 = 0                                              │

00:00:21 #1025 [Verbose] > │             method5(v36, v38, v44)                                           │

00:00:21 #1026 [Verbose] > │     let v47 : bool = v46 = false                                             │

00:00:21 #1027 [Verbose] > │     if v47 then                                                              │

00:00:21 #1028 [Verbose] > │         failwith<unit> v39                                                   │

00:00:21 #1029 [Verbose] > │ method0()                                                                    │

00:00:21 #1030 [Verbose] > │                                                                              │

00:00:21 #1031 [Verbose] > │                                                                              │

00:00:21 #1032 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:24 #1033 [Verbose] > [NbConvertApp] Converting notebook am'.dib.ipynb to html

00:00:24 #1034 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:00:24 #1035 [Verbose] >   validate(nb)

00:00:24 #1036 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:00:24 #1037 [Verbose] >   return _pygments_highlight(

00:00:25 #1038 [Verbose] > [NbConvertApp] Writing 347386 bytes to am'.dib.html

00:00:26 #1039 [Debug] executeAsync / exitCode: 0 / output.Length: 68467

00:00:26 #1040 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\lib\spiral

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 \"listm'.dib\"""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:04 #11 [Verbose] >

00:00:04 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:04 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:04 #14 [Verbose] > │ # listm                                                                      │

00:00:04 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:04 #16 [Verbose] >

00:00:04 #17 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:04 #18 [Verbose] > // // test

00:00:04 #19 [Verbose] >

00:00:04 #20 [Verbose] > open testing

00:00:04 #21 [Verbose] >

00:00:04 #22 [Verbose] > prototype append t : t -> t -> t

00:00:08 #23 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-4779-7953-74d923033abd\main.spi

00:00:11 #24 [Verbose] >

00:00:11 #25 [Verbose] > ╭─[ 7.12s - stdout ]───────────────────────────────────────────────────────────╮

00:00:11 #26 [Verbose] > │ ()                                                                           │

00:00:11 #27 [Verbose] > │                                                                              │

00:00:11 #28 [Verbose] > │                                                                              │

00:00:11 #29 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #30 [Verbose] >

00:00:11 #31 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:11 #32 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:11 #33 [Verbose] > │ ## append                                                                    │

00:00:11 #34 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #35 [Verbose] >

00:00:11 #36 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:11 #37 [Verbose] > instance append list t =

00:00:11 #38 [Verbose] >     listm.append

00:00:12 #39 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5200-0074-08d65f7db517\main.spi

00:00:12 #40 [Verbose] >

00:00:12 #41 [Verbose] > ╭─[ 274.49ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #42 [Verbose] > │ ()                                                                           │

00:00:12 #43 [Verbose] > │                                                                              │

00:00:12 #44 [Verbose] > │                                                                              │

00:00:12 #45 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #46 [Verbose] >

00:00:12 #47 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #48 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #49 [Verbose] > │ ## /@                                                                        │

00:00:12 #50 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #51 [Verbose] >

00:00:12 #52 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #53 [Verbose] > inl (/@) a b =

00:00:12 #54 [Verbose] >     b |> append a

00:00:12 #55 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5229-2911-29d32723d228\main.spi

00:00:12 #56 [Verbose] >

00:00:12 #57 [Verbose] > ╭─[ 253.07ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #58 [Verbose] > │ ()                                                                           │

00:00:12 #59 [Verbose] > │                                                                              │

00:00:12 #60 [Verbose] > │                                                                              │

00:00:12 #61 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #62 [Verbose] >

00:00:12 #63 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #64 [Verbose] > // // test

00:00:12 #65 [Verbose] >

00:00:12 #66 [Verbose] > [[ "a"; "b" ]] /@ [[ "c"; "d" ]]

00:00:12 #67 [Verbose] > |> _equal [[ "a"; "b"; "c"; "d" ]]

00:00:12 #68 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5254-5423-5b2036b9867e\main.spi

00:00:14 #69 [Verbose] >

00:00:14 #70 [Verbose] > ╭─[ 1.76s - stdout ]───────────────────────────────────────────────────────────╮

00:00:14 #71 [Verbose] > │ type UH0 =                                                                   │

00:00:14 #72 [Verbose] > │     | UH0_0 of string * UH0                                                  │

00:00:14 #73 [Verbose] > │     | UH0_1                                                                  │

00:00:14 #74 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:14 #75 [Verbose] > │     let v0 : string = "a"                                                    │

00:00:14 #76 [Verbose] > │     let v1 : string = "b"                                                    │

00:00:14 #77 [Verbose] > │     let v2 : string = "c"                                                    │

00:00:14 #78 [Verbose] > │     let v3 : string = "d"                                                    │

00:00:14 #79 [Verbose] > │     let v4 : UH0 = UH0_1                                                     │

00:00:14 #80 [Verbose] > │     let v5 : UH0 = UH0_0(v3, v4)                                             │

00:00:14 #81 [Verbose] > │     let v6 : UH0 = UH0_0(v2, v5)                                             │

00:00:14 #82 [Verbose] > │     let v7 : UH0 = UH0_0(v1, v6)                                             │

00:00:14 #83 [Verbose] > │     let v8 : UH0 = UH0_0(v0, v7)                                             │

00:00:14 #84 [Verbose] > │     let v9 : UH0 = UH0_1                                                     │

00:00:14 #85 [Verbose] > │     let v10 : UH0 = UH0_0(v3, v9)                                            │

00:00:14 #86 [Verbose] > │     let v11 : UH0 = UH0_0(v2, v10)                                           │

00:00:14 #87 [Verbose] > │     let v12 : UH0 = UH0_0(v1, v11)                                           │

00:00:14 #88 [Verbose] > │     let v13 : UH0 = UH0_0(v0, v12)                                           │

00:00:14 #89 [Verbose] > │     let v14 : string = $"__expect / actual: %A{v8} / expected: %A{v13}"      │

00:00:14 #90 [Verbose] > │     ()                                                                       │

00:00:14 #91 [Verbose] > │ method0()                                                                    │

00:00:14 #92 [Verbose] > │                                                                              │

00:00:14 #93 [Verbose] > │                                                                              │

00:00:14 #94 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #95 [Verbose] >

00:00:14 #96 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:14 #97 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:14 #98 [Verbose] > │ ## init_series                                                               │

00:00:14 #99 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #100 [Verbose] >

00:00:14 #101 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #102 [Verbose] > inl init_series start end inc =

00:00:14 #103 [Verbose] >     inl total : f64 = conv ((end - start) / inc) + 1

00:00:14 #104 [Verbose] >     listm.init total (conv >> (*) inc >> (+) start)

00:00:14 #105 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5431-3141-3199cedfe48b\main.spi

00:00:14 #106 [Verbose] >

00:00:14 #107 [Verbose] > ╭─[ 214.46ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #108 [Verbose] > │ ()                                                                           │

00:00:14 #109 [Verbose] > │                                                                              │

00:00:14 #110 [Verbose] > │                                                                              │

00:00:14 #111 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #112 [Verbose] >

00:00:14 #113 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #114 [Verbose] > // // test

00:00:14 #115 [Verbose] >

00:00:14 #116 [Verbose] > init_series 0 1 0.5

00:00:14 #117 [Verbose] > |> _equal [[ 0f64; 0.5; 1 ]]

00:00:14 #118 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5453-5300-574c11b6a61e\main.spi

00:00:14 #119 [Verbose] >

00:00:14 #120 [Verbose] > ╭─[ 270.64ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #121 [Verbose] > │ type UH0 =                                                                   │

00:00:14 #122 [Verbose] > │     | UH0_0 of float * UH0                                                   │

00:00:14 #123 [Verbose] > │     | UH0_1                                                                  │

00:00:14 #124 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:14 #125 [Verbose] > │     let v0 : UH0 = UH0_1                                                     │

00:00:14 #126 [Verbose] > │     let v1 : UH0 = UH0_0(1.0, v0)                                            │

00:00:14 #127 [Verbose] > │     let v2 : UH0 = UH0_0(0.5, v1)                                            │

00:00:14 #128 [Verbose] > │     let v3 : UH0 = UH0_0(0.0, v2)                                            │

00:00:14 #129 [Verbose] > │     let v4 : UH0 = UH0_1                                                     │

00:00:14 #130 [Verbose] > │     let v5 : UH0 = UH0_0(1.0, v4)                                            │

00:00:14 #131 [Verbose] > │     let v6 : UH0 = UH0_0(0.5, v5)                                            │

00:00:14 #132 [Verbose] > │     let v7 : UH0 = UH0_0(0.0, v6)                                            │

00:00:14 #133 [Verbose] > │     let v8 : string = $"__expect / actual: %A{v3} / expected: %A{v7}"        │

00:00:14 #134 [Verbose] > │     ()                                                                       │

00:00:14 #135 [Verbose] > │ method0()                                                                    │

00:00:14 #136 [Verbose] > │                                                                              │

00:00:14 #137 [Verbose] > │                                                                              │

00:00:14 #138 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #139 [Verbose] >

00:00:14 #140 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:14 #141 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:14 #142 [Verbose] > │ ## try_item                                                                  │

00:00:14 #143 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #144 [Verbose] >

00:00:14 #145 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #146 [Verbose] > inl rec try_item i = function

00:00:14 #147 [Verbose] >     | Cons (x, _) when i = 0 => Some x

00:00:14 #148 [Verbose] >     | Cons (_, xs) => try_item (i - 1) xs

00:00:14 #149 [Verbose] >     | Nil => None

00:00:14 #150 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5481-8132-889caf1841d7\main.spi

00:00:14 #151 [Verbose] >

00:00:14 #152 [Verbose] > ╭─[ 221.59ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #153 [Verbose] > │ ()                                                                           │

00:00:14 #154 [Verbose] > │                                                                              │

00:00:14 #155 [Verbose] > │                                                                              │

00:00:14 #156 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #157 [Verbose] >

00:00:14 #158 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #159 [Verbose] > // // test

00:00:14 #160 [Verbose] >

00:00:14 #161 [Verbose] > listm.init 10i32 id

00:00:14 #162 [Verbose] > |> try_item 9i32

00:00:14 #163 [Verbose] > |> _equal (Some 9)

00:00:15 #164 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5503-0379-0d7e24b1dfe6\main.spi

00:00:15 #165 [Verbose] >

00:00:15 #166 [Verbose] > ╭─[ 420.63ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #167 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:15 #168 [Verbose] > │     | US0_0                                                                  │

00:00:15 #169 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:15 #170 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:15 #171 [Verbose] > │     let v0 : US0 = US0_1(9)                                                  │

00:00:15 #172 [Verbose] > │     let v1 : US0 = US0_1(9)                                                  │

00:00:15 #173 [Verbose] > │     let v2 : string = $"__expect / actual: %A{v0} / expected: %A{v1}"        │

00:00:15 #174 [Verbose] > │     ()                                                                       │

00:00:15 #175 [Verbose] > │ method0()                                                                    │

00:00:15 #176 [Verbose] > │                                                                              │

00:00:15 #177 [Verbose] > │                                                                              │

00:00:15 #178 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #179 [Verbose] >

00:00:15 #180 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #181 [Verbose] > // // test

00:00:15 #182 [Verbose] >

00:00:15 #183 [Verbose] > listm.init 10i32 id

00:00:15 #184 [Verbose] > |> try_item 10i32

00:00:15 #185 [Verbose] > |> _equal None

00:00:15 #186 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5546-4664-43140dfa2b98\main.spi

00:00:15 #187 [Verbose] >

00:00:15 #188 [Verbose] > ╭─[ 317.87ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #189 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:15 #190 [Verbose] > │     | US0_0                                                                  │

00:00:15 #191 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:15 #192 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:15 #193 [Verbose] > │     let v0 : US0 = US0_0                                                     │

00:00:15 #194 [Verbose] > │     let v1 : US0 = US0_0                                                     │

00:00:15 #195 [Verbose] > │     let v2 : string = $"__expect / actual: %A{v0} / expected: %A{v1}"        │

00:00:15 #196 [Verbose] > │     ()                                                                       │

00:00:15 #197 [Verbose] > │ method0()                                                                    │

00:00:15 #198 [Verbose] > │                                                                              │

00:00:15 #199 [Verbose] > │                                                                              │

00:00:15 #200 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #201 [Verbose] >

00:00:15 #202 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #203 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #204 [Verbose] > │ ## list_item                                                                 │

00:00:15 #205 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #206 [Verbose] >

00:00:15 #207 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #208 [Verbose] > inl item i =

00:00:15 #209 [Verbose] >     try_item i >> optionm.value

00:00:15 #210 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5579-7948-76157545e991\main.spi

00:00:15 #211 [Verbose] >

00:00:15 #212 [Verbose] > ╭─[ 213.48ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #213 [Verbose] > │ ()                                                                           │

00:00:15 #214 [Verbose] > │                                                                              │

00:00:15 #215 [Verbose] > │                                                                              │

00:00:15 #216 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #217 [Verbose] >

00:00:15 #218 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #219 [Verbose] > // // test

00:00:15 #220 [Verbose] >

00:00:15 #221 [Verbose] > listm.init 10i32 id

00:00:15 #222 [Verbose] > |> item 9i32

00:00:15 #223 [Verbose] > |> _equal 9

00:00:16 #224 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5600-0094-0996d1827ec6\main.spi

00:00:16 #225 [Verbose] >

00:00:16 #226 [Verbose] > ╭─[ 387.54ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #227 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:16 #228 [Verbose] > │     let v0 : string = $"__expect / actual: %A{9} / expected: %A{9}"          │

00:00:16 #229 [Verbose] > │     ()                                                                       │

00:00:16 #230 [Verbose] > │ method0()                                                                    │

00:00:16 #231 [Verbose] > │                                                                              │

00:00:16 #232 [Verbose] > │                                                                              │

00:00:16 #233 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #234 [Verbose] >

00:00:16 #235 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #236 [Verbose] > // // test

00:00:16 #237 [Verbose] >

00:00:16 #238 [Verbose] > fun () =>

00:00:16 #239 [Verbose] >     listm.init 10i32 id

00:00:16 #240 [Verbose] >     |> item 10i32

00:00:16 #241 [Verbose] >     |> ignore

00:00:16 #242 [Verbose] > |> _throws

00:00:16 #243 [Verbose] > |> _equal (Some "Option does not have a value.")

00:00:16 #244 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5640-4042-42b138ce3632\main.spi

00:00:16 #245 [Verbose] >

00:00:16 #246 [Verbose] > ╭─[ 402.62ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #247 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:16 #248 [Verbose] > │     | US0_0                                                                  │

00:00:16 #249 [Verbose] > │     | US0_1 of f1_0 : string                                                 │

00:00:16 #250 [Verbose] > │ let rec closure0 () () : unit =                                              │

00:00:16 #251 [Verbose] > │     let v0 : int32 = failwith<int32> "Option does not have a value."         │

00:00:16 #252 [Verbose] > │     ()                                                                       │

00:00:16 #253 [Verbose] > │ and closure1 () (v0 : string) : US0 =                                        │

00:00:16 #254 [Verbose] > │     US0_1(v0)                                                                │

00:00:16 #255 [Verbose] > │ and method0 () : unit =                                                      │

00:00:16 #256 [Verbose] > │     let v0 : (unit -> unit) = closure0()                                     │

00:00:16 #257 [Verbose] > │     let v1 : US0 = US0_0                                                     │

00:00:16 #258 [Verbose] > │     let v2 : (string -> US0) = closure1()                                    │

00:00:16 #259 [Verbose] > │     let v3 : US0 = try v0 (); v1 with ex -> v2 ex.Message                    │

00:00:16 #260 [Verbose] > │     let v4 : string = "Option does not have a value."                        │

00:00:16 #261 [Verbose] > │     let v5 : US0 = US0_1(v4)                                                 │

00:00:16 #262 [Verbose] > │     let v6 : string = $"__expect / actual: %A{v3} / expected: %A{v5}"        │

00:00:16 #263 [Verbose] > │     let v10 : bool =                                                         │

00:00:16 #264 [Verbose] > │         match v3 with                                                        │

00:00:16 #265 [Verbose] > │         | US0_1(v8) -> (* Some *)                                            │

00:00:16 #266 [Verbose] > │             let v9 : bool = v8 = "Option does not have a value."             │

00:00:16 #267 [Verbose] > │             v9                                                               │

00:00:16 #268 [Verbose] > │         | _ ->                                                               │

00:00:16 #269 [Verbose] > │             false                                                            │

00:00:16 #270 [Verbose] > │     let v11 : bool = v10 = false                                             │

00:00:16 #271 [Verbose] > │     if v11 then                                                              │

00:00:16 #272 [Verbose] > │         failwith<unit> v6                                                    │

00:00:16 #273 [Verbose] > │ method0()                                                                    │

00:00:16 #274 [Verbose] > │                                                                              │

00:00:16 #275 [Verbose] > │                                                                              │

00:00:16 #276 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #277 [Verbose] >

00:00:16 #278 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #279 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #280 [Verbose] > │ ## try_item_                                                                 │

00:00:16 #281 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #282 [Verbose] >

00:00:16 #283 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #284 [Verbose] > let rec try_item_ i = function

00:00:16 #285 [Verbose] >     | Cons (x, _) when i = 0 => Some x

00:00:16 #286 [Verbose] >     | Cons (_, xs) => try_item_ (i - 1) xs

00:00:16 #287 [Verbose] >     | Nil => None

00:00:16 #288 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5682-8267-8ed16ef57b02\main.spi

00:00:16 #289 [Verbose] >

00:00:16 #290 [Verbose] > ╭─[ 190.03ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #291 [Verbose] > │ ()                                                                           │

00:00:16 #292 [Verbose] > │                                                                              │

00:00:16 #293 [Verbose] > │                                                                              │

00:00:16 #294 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #295 [Verbose] >

00:00:16 #296 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #297 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #298 [Verbose] > │ ## item_                                                                     │

00:00:16 #299 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #300 [Verbose] >

00:00:16 #301 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #302 [Verbose] > inl item_ i =

00:00:16 #303 [Verbose] >     try_item_ i >> optionm.value

00:00:17 #304 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5702-0204-0b099d6fd094\main.spi

00:00:17 #305 [Verbose] >

00:00:17 #306 [Verbose] > ╭─[ 195.53ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #307 [Verbose] > │ ()                                                                           │

00:00:17 #308 [Verbose] > │                                                                              │

00:00:17 #309 [Verbose] > │                                                                              │

00:00:17 #310 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #311 [Verbose] >

00:00:17 #312 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #313 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #314 [Verbose] > │ ## sum                                                                       │

00:00:17 #315 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #316 [Verbose] >

00:00:17 #317 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #318 [Verbose] > inl sum list =

00:00:17 #319 [Verbose] >     list |> listm.fold (+) 0

00:00:17 #320 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5722-2204-2afa95a088d8\main.spi

00:00:17 #321 [Verbose] >

00:00:17 #322 [Verbose] > ╭─[ 183.62ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #323 [Verbose] > │ ()                                                                           │

00:00:17 #324 [Verbose] > │                                                                              │

00:00:17 #325 [Verbose] > │                                                                              │

00:00:17 #326 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #327 [Verbose] >

00:00:17 #328 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #329 [Verbose] > // // test

00:00:17 #330 [Verbose] >

00:00:17 #331 [Verbose] > listm.init 10i32 id

00:00:17 #332 [Verbose] > |> sum

00:00:17 #333 [Verbose] > |> _equal 45

00:00:17 #334 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5740-4073-456531ee265d\main.spi

00:00:17 #335 [Verbose] >

00:00:17 #336 [Verbose] > ╭─[ 189.98ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #337 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:17 #338 [Verbose] > │     let v0 : string = $"__expect / actual: %A{45} / expected: %A{45}"        │

00:00:17 #339 [Verbose] > │     ()                                                                       │

00:00:17 #340 [Verbose] > │ method0()                                                                    │

00:00:17 #341 [Verbose] > │                                                                              │

00:00:17 #342 [Verbose] > │                                                                              │

00:00:17 #343 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #344 [Verbose] >

00:00:17 #345 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #346 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #347 [Verbose] > │ ## unzip                                                                     │

00:00:17 #348 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #349 [Verbose] >

00:00:17 #350 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #351 [Verbose] > inl unzip list =

00:00:17 #352 [Verbose] >     (([[]], [[]]), list)

00:00:17 #353 [Verbose] >     ||> listm.fold fun (acc_x, acc_y) (x, y) =>

00:00:17 #354 [Verbose] >         x :: acc_x, y :: acc_y

00:00:17 #355 [Verbose] >     |> fun x, y =>

00:00:17 #356 [Verbose] >         x |> listm.rev, y |> listm.rev

00:00:17 #357 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5760-6057-6fc63d9ea00e\main.spi

00:00:17 #358 [Verbose] >

00:00:17 #359 [Verbose] > ╭─[ 212.56ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #360 [Verbose] > │ ()                                                                           │

00:00:17 #361 [Verbose] > │                                                                              │

00:00:17 #362 [Verbose] > │                                                                              │

00:00:17 #363 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #364 [Verbose] >

00:00:17 #365 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #366 [Verbose] > // // test

00:00:17 #367 [Verbose] >

00:00:17 #368 [Verbose] > listm.init 10i32 id

00:00:17 #369 [Verbose] > |> listm.map (fun x => x, x)

00:00:17 #370 [Verbose] > |> unzip

00:00:17 #371 [Verbose] > |> fun x, y =>

00:00:17 #372 [Verbose] >     x |> sum

00:00:17 #373 [Verbose] >     |> _equal 45

00:00:17 #374 [Verbose] >

00:00:17 #375 [Verbose] >     y |> sum

00:00:17 #376 [Verbose] >     |> _equal 45

00:00:17 #377 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5782-8238-85cf3672b9cb\main.spi

00:00:17 #378 [Verbose] >

00:00:17 #379 [Verbose] > ╭─[ 204.98ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #380 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:17 #381 [Verbose] > │     let v0 : string = $"__expect / actual: %A{45} / expected: %A{45}"        │

00:00:17 #382 [Verbose] > │     let v1 : string = $"__expect / actual: %A{45} / expected: %A{45}"        │

00:00:17 #383 [Verbose] > │     ()                                                                       │

00:00:17 #384 [Verbose] > │ method0()                                                                    │

00:00:17 #385 [Verbose] > │                                                                              │

00:00:17 #386 [Verbose] > │                                                                              │

00:00:17 #387 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #388 [Verbose] >

00:00:17 #389 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #390 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #391 [Verbose] > │ ## try_index_of                                                              │

00:00:17 #392 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #393 [Verbose] >

00:00:17 #394 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #395 [Verbose] > inl try_index_of item list =

00:00:17 #396 [Verbose] >     inl rec loop i = function

00:00:17 #397 [Verbose] >         | [[]] => None

00:00:17 #398 [Verbose] >         | x :: xs =>

00:00:17 #399 [Verbose] >             if x = item

00:00:17 #400 [Verbose] >             then Some i

00:00:17 #401 [Verbose] >             else loop (i + 1) xs

00:00:17 #402 [Verbose] >     loop 0 list

00:00:17 #403 [Verbose] >

00:00:17 #404 [Verbose] > inl index_of item =

00:00:17 #405 [Verbose] >     try_index_of item >> optionm.value

00:00:17 #406 [Verbose] >

00:00:17 #407 [Verbose] > inl try_index_of_ item list =

00:00:17 #408 [Verbose] >     let rec loop i = function

00:00:17 #409 [Verbose] >         | [[]] => None

00:00:17 #410 [Verbose] >         | x :: xs =>

00:00:17 #411 [Verbose] >             if x = item

00:00:17 #412 [Verbose] >             then Some i

00:00:17 #413 [Verbose] >             else loop (i + 1) xs

00:00:17 #414 [Verbose] >     loop 0 list

00:00:17 #415 [Verbose] >

00:00:17 #416 [Verbose] > inl index_of_ item =

00:00:17 #417 [Verbose] >     try_index_of_ item >> optionm.value

00:00:17 #418 [Verbose] >

00:00:17 #419 [Verbose] > inl try_index_of__ item list =

00:00:17 #420 [Verbose] >     inl i = mut 0

00:00:17 #421 [Verbose] >     inl list = mut list

00:00:17 #422 [Verbose] >     inl result = mut None

00:00:17 #423 [Verbose] >     let rec loop () =

00:00:17 #424 [Verbose] >         match *list with

00:00:17 #425 [Verbose] >         | [[]] => result <- None

00:00:17 #426 [Verbose] >         | x :: xs =>

00:00:17 #427 [Verbose] >             if x = item

00:00:17 #428 [Verbose] >             then result <- Some *i

00:00:17 #429 [Verbose] >             else

00:00:17 #430 [Verbose] >                 i <- *i + 1

00:00:17 #431 [Verbose] >                 list <- xs

00:00:17 #432 [Verbose] >                 loop ()

00:00:17 #433 [Verbose] >     loop ()

00:00:17 #434 [Verbose] >     *result

00:00:17 #435 [Verbose] >

00:00:17 #436 [Verbose] > inl index_of__ item =

00:00:17 #437 [Verbose] >     try_index_of__ item >> optionm.value

00:00:18 #438 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5803-0373-00539ea73e0d\main.spi

00:00:18 #439 [Verbose] >

00:00:18 #440 [Verbose] > ╭─[ 192.15ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #441 [Verbose] > │ ()                                                                           │

00:00:18 #442 [Verbose] > │                                                                              │

00:00:18 #443 [Verbose] > │                                                                              │

00:00:18 #444 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #445 [Verbose] >

00:00:18 #446 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #447 [Verbose] > // // test

00:00:18 #448 [Verbose] >

00:00:18 #449 [Verbose] > listm.init 10i32 id

00:00:18 #450 [Verbose] > |> index_of 5i32

00:00:18 #451 [Verbose] > |> _equal 5i32

00:00:18 #452 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5823-2332-2d2431894e73\main.spi

00:00:18 #453 [Verbose] >

00:00:18 #454 [Verbose] > ╭─[ 212.61ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #455 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:18 #456 [Verbose] > │     let v0 : string = $"__expect / actual: %A{5} / expected: %A{5}"          │

00:00:18 #457 [Verbose] > │     ()                                                                       │

00:00:18 #458 [Verbose] > │ method0()                                                                    │

00:00:18 #459 [Verbose] > │                                                                              │

00:00:18 #460 [Verbose] > │                                                                              │

00:00:18 #461 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #462 [Verbose] >

00:00:18 #463 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #464 [Verbose] > // // test

00:00:18 #465 [Verbose] >

00:00:18 #466 [Verbose] > listm.init 10i32 id

00:00:18 #467 [Verbose] > |> try_index_of 10i32

00:00:18 #468 [Verbose] > |> _equal (None : option i32)

00:00:18 #469 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5845-4504-48482d976562\main.spi

00:00:18 #470 [Verbose] >

00:00:18 #471 [Verbose] > ╭─[ 409.12ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #472 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:18 #473 [Verbose] > │     | US0_0                                                                  │

00:00:18 #474 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:18 #475 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:18 #476 [Verbose] > │     let v0 : US0 = US0_0                                                     │

00:00:18 #477 [Verbose] > │     let v1 : US0 = US0_0                                                     │

00:00:18 #478 [Verbose] > │     let v2 : string = $"__expect / actual: %A{v0} / expected: %A{v1}"        │

00:00:18 #479 [Verbose] > │     ()                                                                       │

00:00:18 #480 [Verbose] > │ method0()                                                                    │

00:00:18 #481 [Verbose] > │                                                                              │

00:00:18 #482 [Verbose] > │                                                                              │

00:00:18 #483 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #484 [Verbose] >

00:00:18 #485 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:18 #486 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:18 #487 [Verbose] > │ ## try_find                                                                  │

00:00:18 #488 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #489 [Verbose] >

00:00:18 #490 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #491 [Verbose] > inl try_find fn list =

00:00:18 #492 [Verbose] >     inl rec loop = function

00:00:18 #493 [Verbose] >         | [[]] => None

00:00:18 #494 [Verbose] >         | x :: xs =>

00:00:18 #495 [Verbose] >             if fn x

00:00:18 #496 [Verbose] >             then Some x

00:00:18 #497 [Verbose] >             else loop xs

00:00:18 #498 [Verbose] >     loop list

00:00:18 #499 [Verbose] >

00:00:18 #500 [Verbose] > inl try_find_ fn list =

00:00:18 #501 [Verbose] >     let rec loop = function

00:00:18 #502 [Verbose] >         | [[]] => None

00:00:18 #503 [Verbose] >         | x :: xs =>

00:00:18 #504 [Verbose] >             if fn x

00:00:18 #505 [Verbose] >             then Some x

00:00:18 #506 [Verbose] >             else loop xs

00:00:18 #507 [Verbose] >     loop list

00:00:18 #508 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5887-8711-8e11d0182aab\main.spi

00:00:18 #509 [Verbose] >

00:00:18 #510 [Verbose] > ╭─[ 178.21ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #511 [Verbose] > │ ()                                                                           │

00:00:18 #512 [Verbose] > │                                                                              │

00:00:18 #513 [Verbose] > │                                                                              │

00:00:18 #514 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #515 [Verbose] >

00:00:18 #516 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #517 [Verbose] > // // test

00:00:18 #518 [Verbose] >

00:00:18 #519 [Verbose] > listm.init 10i32 id

00:00:18 #520 [Verbose] > |> try_find ((=) 5i32)

00:00:18 #521 [Verbose] > |> _equal (Some 5i32)

00:00:19 #522 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5905-0503-0e84b2bbd42d\main.spi

00:00:19 #523 [Verbose] >

00:00:19 #524 [Verbose] > ╭─[ 256.88ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #525 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:19 #526 [Verbose] > │     | US0_0                                                                  │

00:00:19 #527 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:19 #528 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:19 #529 [Verbose] > │     let v0 : US0 = US0_1(5)                                                  │

00:00:19 #530 [Verbose] > │     let v1 : US0 = US0_1(5)                                                  │

00:00:19 #531 [Verbose] > │     let v2 : string = $"__expect / actual: %A{v0} / expected: %A{v1}"        │

00:00:19 #532 [Verbose] > │     ()                                                                       │

00:00:19 #533 [Verbose] > │ method0()                                                                    │

00:00:19 #534 [Verbose] > │                                                                              │

00:00:19 #535 [Verbose] > │                                                                              │

00:00:19 #536 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #537 [Verbose] >

00:00:19 #538 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #539 [Verbose] > inl find x =

00:00:19 #540 [Verbose] >     try_find x >> optionm.value

00:00:19 #541 [Verbose] >

00:00:19 #542 [Verbose] > inl find_ x =

00:00:19 #543 [Verbose] >     try_find_ x >> optionm.value

00:00:19 #544 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5931-3183-31f95440eedb\main.spi

00:00:19 #545 [Verbose] >

00:00:19 #546 [Verbose] > ╭─[ 195.19ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #547 [Verbose] > │ ()                                                                           │

00:00:19 #548 [Verbose] > │                                                                              │

00:00:19 #549 [Verbose] > │                                                                              │

00:00:19 #550 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #551 [Verbose] >

00:00:19 #552 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #553 [Verbose] > // // test

00:00:19 #554 [Verbose] >

00:00:19 #555 [Verbose] > listm.init 10i32 id

00:00:19 #556 [Verbose] > |> find ((=) 5i32)

00:00:19 #557 [Verbose] > |> _equal 5i32

00:00:19 #558 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5951-5141-59e88025a448\main.spi

00:00:19 #559 [Verbose] >

00:00:19 #560 [Verbose] > ╭─[ 220.24ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #561 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:19 #562 [Verbose] > │     let v0 : string = $"__expect / actual: %A{5} / expected: %A{5}"          │

00:00:19 #563 [Verbose] > │     ()                                                                       │

00:00:19 #564 [Verbose] > │ method0()                                                                    │

00:00:19 #565 [Verbose] > │                                                                              │

00:00:19 #566 [Verbose] > │                                                                              │

00:00:19 #567 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #568 [Verbose] >

00:00:19 #569 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:19 #570 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:19 #571 [Verbose] > │ ## choose                                                                    │

00:00:19 #572 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #573 [Verbose] >

00:00:19 #574 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #575 [Verbose] > inl choose f l =

00:00:19 #576 [Verbose] >     (l, [[]])

00:00:19 #577 [Verbose] >     ||> listm.foldBack fun x acc =>

00:00:19 #578 [Verbose] >         match f x with

00:00:19 #579 [Verbose] >         | Some y => y :: acc

00:00:19 #580 [Verbose] >         | None => acc

00:00:19 #581 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5974-7413-7d38d4b03da4\main.spi

00:00:19 #582 [Verbose] >

00:00:19 #583 [Verbose] > ╭─[ 194.56ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #584 [Verbose] > │ ()                                                                           │

00:00:19 #585 [Verbose] > │                                                                              │

00:00:19 #586 [Verbose] > │                                                                              │

00:00:19 #587 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #588 [Verbose] >

00:00:19 #589 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #590 [Verbose] > // // test

00:00:19 #591 [Verbose] >

00:00:19 #592 [Verbose] > listm.init 10i32 id

00:00:19 #593 [Verbose] > |> choose (fun x => if x % 2 = 0 then Some x else None)

00:00:19 #594 [Verbose] > |> _equal [[ 0; 2; 4; 6; 8 ]]

00:00:20 #595 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1636-5994-9403-97346bf8cc5a\main.spi

00:00:20 #596 [Verbose] >

00:00:20 #597 [Verbose] > ╭─[ 250.07ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #598 [Verbose] > │ type UH0 =                                                                   │

00:00:20 #599 [Verbose] > │     | UH0_0 of int32 * UH0                                                   │

00:00:20 #600 [Verbose] > │     | UH0_1                                                                  │

00:00:20 #601 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:20 #602 [Verbose] > │     let v0 : UH0 = UH0_1                                                     │

00:00:20 #603 [Verbose] > │     let v1 : UH0 = UH0_0(8, v0)                                              │

00:00:20 #604 [Verbose] > │     let v2 : UH0 = UH0_0(6, v1)                                              │

00:00:20 #605 [Verbose] > │     let v3 : UH0 = UH0_0(4, v2)                                              │

00:00:20 #606 [Verbose] > │     let v4 : UH0 = UH0_0(2, v3)                                              │

00:00:20 #607 [Verbose] > │     let v5 : UH0 = UH0_0(0, v4)                                              │

00:00:20 #608 [Verbose] > │     let v6 : UH0 = UH0_1                                                     │

00:00:20 #609 [Verbose] > │     let v7 : UH0 = UH0_0(8, v6)                                              │

00:00:20 #610 [Verbose] > │     let v8 : UH0 = UH0_0(6, v7)                                              │

00:00:20 #611 [Verbose] > │     let v9 : UH0 = UH0_0(4, v8)                                              │

00:00:20 #612 [Verbose] > │     let v10 : UH0 = UH0_0(2, v9)                                             │

00:00:20 #613 [Verbose] > │     let v11 : UH0 = UH0_0(0, v10)                                            │

00:00:20 #614 [Verbose] > │     let v12 : string = $"__expect / actual: %A{v5} / expected: %A{v11}"      │

00:00:20 #615 [Verbose] > │     ()                                                                       │

00:00:20 #616 [Verbose] > │ method0()                                                                    │

00:00:20 #617 [Verbose] > │                                                                              │

00:00:20 #618 [Verbose] > │                                                                              │

00:00:20 #619 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #620 [Verbose] >

00:00:20 #621 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:20 #622 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:20 #623 [Verbose] > │ ## zip_with                                                                  │

00:00:20 #624 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #625 [Verbose] >

00:00:20 #626 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #627 [Verbose] > inl zip_with fn xs ys =

00:00:20 #628 [Verbose] >     inl rec loop acc xs ys =

00:00:20 #629 [Verbose] >         match xs, ys with

00:00:20 #630 [Verbose] >         | Cons (x, xs), Cons (y, ys) =>

00:00:20 #631 [Verbose] >             loop (fn x y :: acc) xs ys

00:00:20 #632 [Verbose] >         | _ => listm.rev acc

00:00:20 #633 [Verbose] >     loop [[]] xs ys

00:00:20 #634 [Verbose] >

00:00:20 #635 [Verbose] > inl zip_with_ fn xs ys =

00:00:20 #636 [Verbose] >     let rec loop acc xs ys =

00:00:20 #637 [Verbose] >         match xs, ys with

00:00:20 #638 [Verbose] >         | Cons (x, xs), Cons (y, ys) =>

00:00:20 #639 [Verbose] >             loop (fn x y :: acc) xs ys

00:00:20 #640 [Verbose] >         | _ => listm.rev acc

00:00:20 #641 [Verbose] >     loop [[]] xs ys

00:00:20 #642 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-0020-2063-2916597f5180\main.spi

00:00:20 #643 [Verbose] >

00:00:20 #644 [Verbose] > ╭─[ 204.09ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #645 [Verbose] > │ ()                                                                           │

00:00:20 #646 [Verbose] > │                                                                              │

00:00:20 #647 [Verbose] > │                                                                              │

00:00:20 #648 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #649 [Verbose] >

00:00:20 #650 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #651 [Verbose] > // // test

00:00:20 #652 [Verbose] >

00:00:20 #653 [Verbose] > ([[ 1i32; 2; 3 ]], [[ 4; 5; 6 ]])

00:00:20 #654 [Verbose] > ||> zip_with (+)

00:00:20 #655 [Verbose] > |> _equal [[ 5; 7; 9 ]]

00:00:20 #656 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-0041-4127-47571240f35d\main.spi

00:00:20 #657 [Verbose] >

00:00:20 #658 [Verbose] > ╭─[ 254.90ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #659 [Verbose] > │ type UH0 =                                                                   │

00:00:20 #660 [Verbose] > │     | UH0_0 of int32 * UH0                                                   │

00:00:20 #661 [Verbose] > │     | UH0_1                                                                  │

00:00:20 #662 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:20 #663 [Verbose] > │     let v0 : UH0 = UH0_1                                                     │

00:00:20 #664 [Verbose] > │     let v1 : UH0 = UH0_0(9, v0)                                              │

00:00:20 #665 [Verbose] > │     let v2 : UH0 = UH0_0(7, v1)                                              │

00:00:20 #666 [Verbose] > │     let v3 : UH0 = UH0_0(5, v2)                                              │

00:00:20 #667 [Verbose] > │     let v4 : UH0 = UH0_1                                                     │

00:00:20 #668 [Verbose] > │     let v5 : UH0 = UH0_0(9, v4)                                              │

00:00:20 #669 [Verbose] > │     let v6 : UH0 = UH0_0(7, v5)                                              │

00:00:20 #670 [Verbose] > │     let v7 : UH0 = UH0_0(5, v6)                                              │

00:00:20 #671 [Verbose] > │     let v8 : string = $"__expect / actual: %A{v3} / expected: %A{v7}"        │

00:00:20 #672 [Verbose] > │     ()                                                                       │

00:00:20 #673 [Verbose] > │ method0()                                                                    │

00:00:20 #674 [Verbose] > │                                                                              │

00:00:20 #675 [Verbose] > │                                                                              │

00:00:20 #676 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #677 [Verbose] >

00:00:20 #678 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:20 #679 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:20 #680 [Verbose] > │ ## zip                                                                       │

00:00:20 #681 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #682 [Verbose] >

00:00:20 #683 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #684 [Verbose] > inl zip xs ys =

00:00:20 #685 [Verbose] >     zip_with pair xs ys

00:00:20 #686 [Verbose] >

00:00:20 #687 [Verbose] > inl zip_ xs ys =

00:00:20 #688 [Verbose] >     zip_with_ pair xs ys

00:00:20 #689 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-0068-6833-620d51dec862\main.spi

00:00:20 #690 [Verbose] >

00:00:20 #691 [Verbose] > ╭─[ 300.71ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #692 [Verbose] > │ ()                                                                           │

00:00:20 #693 [Verbose] > │                                                                              │

00:00:20 #694 [Verbose] > │                                                                              │

00:00:20 #695 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #696 [Verbose] >

00:00:20 #697 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #698 [Verbose] > // // test

00:00:20 #699 [Verbose] >

00:00:20 #700 [Verbose] > ([[ 1i32; 2; 3 ]], [[ 4i32; 5; 6 ]])

00:00:20 #701 [Verbose] > ||> zip

00:00:20 #702 [Verbose] > |> _equal [[ 1, 4; 2, 5; 3, 6 ]]

00:00:21 #703 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-0098-9862-98b674c80091\main.spi

00:00:21 #704 [Verbose] >

00:00:21 #705 [Verbose] > ╭─[ 304.56ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #706 [Verbose] > │ type UH0 =                                                                   │

00:00:21 #707 [Verbose] > │     | UH0_0 of int32 * int32 * UH0                                           │

00:00:21 #708 [Verbose] > │     | UH0_1                                                                  │

00:00:21 #709 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:21 #710 [Verbose] > │     let v0 : UH0 = UH0_1                                                     │

00:00:21 #711 [Verbose] > │     let v1 : UH0 = UH0_0(3, 6, v0)                                           │

00:00:21 #712 [Verbose] > │     let v2 : UH0 = UH0_0(2, 5, v1)                                           │

00:00:21 #713 [Verbose] > │     let v3 : UH0 = UH0_0(1, 4, v2)                                           │

00:00:21 #714 [Verbose] > │     let v4 : UH0 = UH0_1                                                     │

00:00:21 #715 [Verbose] > │     let v5 : UH0 = UH0_0(3, 6, v4)                                           │

00:00:21 #716 [Verbose] > │     let v6 : UH0 = UH0_0(2, 5, v5)                                           │

00:00:21 #717 [Verbose] > │     let v7 : UH0 = UH0_0(1, 4, v6)                                           │

00:00:21 #718 [Verbose] > │     let v8 : string = $"__expect / actual: %A{v3} / expected: %A{v7}"        │

00:00:21 #719 [Verbose] > │     ()                                                                       │

00:00:21 #720 [Verbose] > │ method0()                                                                    │

00:00:21 #721 [Verbose] > │                                                                              │

00:00:21 #722 [Verbose] > │                                                                              │

00:00:21 #723 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #724 [Verbose] >

00:00:21 #725 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:21 #726 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:21 #727 [Verbose] > │ ## indexed                                                                   │

00:00:21 #728 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #729 [Verbose] >

00:00:21 #730 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:21 #731 [Verbose] > inl indexed list =

00:00:21 #732 [Verbose] >     (([[]], 0), list)

00:00:21 #733 [Verbose] >     ||> listm.fold fun (acc, i) x =>

00:00:21 #734 [Verbose] >         (i, x) :: acc, i + 1

00:00:21 #735 [Verbose] >     |> fst

00:00:21 #736 [Verbose] >     |> listm.rev

00:00:21 #737 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-0130-3087-377144e4e5ea\main.spi

00:00:21 #738 [Verbose] >

00:00:21 #739 [Verbose] > ╭─[ 202.34ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #740 [Verbose] > │ ()                                                                           │

00:00:21 #741 [Verbose] > │                                                                              │

00:00:21 #742 [Verbose] > │                                                                              │

00:00:21 #743 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #744 [Verbose] >

00:00:21 #745 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:21 #746 [Verbose] > // // test

00:00:21 #747 [Verbose] >

00:00:21 #748 [Verbose] > listm.init 5i32 ((*) 2)

00:00:21 #749 [Verbose] > |> indexed

00:00:21 #750 [Verbose] > |> _equal [[ 0i32, 0; 1, 2; 2, 4; 3, 6; 4, 8 ]]

00:00:21 #751 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-0150-5096-5d0a5fad20d2\main.spi

00:00:21 #752 [Verbose] >

00:00:21 #753 [Verbose] > ╭─[ 299.97ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #754 [Verbose] > │ type UH0 =                                                                   │

00:00:21 #755 [Verbose] > │     | UH0_0 of int32 * int32 * UH0                                           │

00:00:21 #756 [Verbose] > │     | UH0_1                                                                  │

00:00:21 #757 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:21 #758 [Verbose] > │     let v0 : UH0 = UH0_1                                                     │

00:00:21 #759 [Verbose] > │     let v1 : UH0 = UH0_0(4, 8, v0)                                           │

00:00:21 #760 [Verbose] > │     let v2 : UH0 = UH0_0(3, 6, v1)                                           │

00:00:21 #761 [Verbose] > │     let v3 : UH0 = UH0_0(2, 4, v2)                                           │

00:00:21 #762 [Verbose] > │     let v4 : UH0 = UH0_0(1, 2, v3)                                           │

00:00:21 #763 [Verbose] > │     let v5 : UH0 = UH0_0(0, 0, v4)                                           │

00:00:21 #764 [Verbose] > │     let v6 : UH0 = UH0_1                                                     │

00:00:21 #765 [Verbose] > │     let v7 : UH0 = UH0_0(4, 8, v6)                                           │

00:00:21 #766 [Verbose] > │     let v8 : UH0 = UH0_0(3, 6, v7)                                           │

00:00:21 #767 [Verbose] > │     let v9 : UH0 = UH0_0(2, 4, v8)                                           │

00:00:21 #768 [Verbose] > │     let v10 : UH0 = UH0_0(1, 2, v9)                                          │

00:00:21 #769 [Verbose] > │     let v11 : UH0 = UH0_0(0, 0, v10)                                         │

00:00:21 #770 [Verbose] > │     let v12 : string = $"__expect / actual: %A{v5} / expected: %A{v11}"      │

00:00:21 #771 [Verbose] > │     ()                                                                       │

00:00:21 #772 [Verbose] > │ method0()                                                                    │

00:00:21 #773 [Verbose] > │                                                                              │

00:00:21 #774 [Verbose] > │                                                                              │

00:00:21 #775 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #776 [Verbose] >

00:00:21 #777 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:21 #778 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:21 #779 [Verbose] > │ ## group_by                                                                  │

00:00:21 #780 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #781 [Verbose] >

00:00:21 #782 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:21 #783 [Verbose] > inl group_by fn list =

00:00:21 #784 [Verbose] >     (list, [[]])

00:00:21 #785 [Verbose] >     ||> listm.foldBack fun x acc =>

00:00:21 #786 [Verbose] >         inl xk = fn x

00:00:21 #787 [Verbose] >         inl found, new_acc =

00:00:21 #788 [Verbose] >             ((false, [[]]), acc)

00:00:21 #789 [Verbose] >             ||> listm.fold fun (found, acc') (k, xs) =>

00:00:21 #790 [Verbose] >                 if k = xk

00:00:21 #791 [Verbose] >                 then true, (k, x :: xs) :: acc'

00:00:21 #792 [Verbose] >                 else found, (k, xs) :: acc'

00:00:21 #793 [Verbose] >         if found

00:00:21 #794 [Verbose] >         then new_acc

00:00:21 #795 [Verbose] >         else (xk, [[ x ]]) :: new_acc

00:00:21 #796 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-0182-8268-870b8a241996\main.spi

00:00:21 #797 [Verbose] >

00:00:21 #798 [Verbose] > ╭─[ 216.69ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #799 [Verbose] > │ ()                                                                           │

00:00:21 #800 [Verbose] > │                                                                              │

00:00:21 #801 [Verbose] > │                                                                              │

00:00:21 #802 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #803 [Verbose] >

00:00:21 #804 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:21 #805 [Verbose] > // // test

00:00:21 #806 [Verbose] >

00:00:21 #807 [Verbose] > listm.init 10i32 id

00:00:21 #808 [Verbose] > |> group_by (fun x => x % 2 = 0)

00:00:21 #809 [Verbose] > |> _equal [[ true, [[ 0; 2; 4; 6; 8 ]]; false, [[ 1; 3; 5; 7; 9 ]] ]]

00:00:22 #810 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-0204-0469-0f4abccfc482\main.spi

00:00:22 #811 [Verbose] >

00:00:22 #812 [Verbose] > ╭─[ 335.91ms - stdout ]────────────────────────────────────────────────────────╮

00:00:22 #813 [Verbose] > │ type UH0 =                                                                   │

00:00:22 #814 [Verbose] > │     | UH0_0 of int32 * UH0                                                   │

00:00:22 #815 [Verbose] > │     | UH0_1                                                                  │

00:00:22 #816 [Verbose] > │ and UH1 =                                                                    │

00:00:22 #817 [Verbose] > │     | UH1_0 of bool * UH0 * UH1                                              │

00:00:22 #818 [Verbose] > │     | UH1_1                                                                  │

00:00:22 #819 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:22 #820 [Verbose] > │     let v0 : UH0 = UH0_1                                                     │

00:00:22 #821 [Verbose] > │     let v1 : UH0 = UH0_0(8, v0)                                              │

00:00:22 #822 [Verbose] > │     let v2 : UH0 = UH0_0(6, v1)                                              │

00:00:22 #823 [Verbose] > │     let v3 : UH0 = UH0_0(4, v2)                                              │

00:00:22 #824 [Verbose] > │     let v4 : UH0 = UH0_0(2, v3)                                              │

00:00:22 #825 [Verbose] > │     let v5 : UH0 = UH0_0(0, v4)                                              │

00:00:22 #826 [Verbose] > │     let v6 : UH0 = UH0_1                                                     │

00:00:22 #827 [Verbose] > │     let v7 : UH0 = UH0_0(9, v6)                                              │

00:00:22 #828 [Verbose] > │     let v8 : UH0 = UH0_0(7, v7)                                              │

00:00:22 #829 [Verbose] > │     let v9 : UH0 = UH0_0(5, v8)                                              │

00:00:22 #830 [Verbose] > │     let v10 : UH0 = UH0_0(3, v9)                                             │

00:00:22 #831 [Verbose] > │     let v11 : UH0 = UH0_0(1, v10)                                            │

00:00:22 #832 [Verbose] > │     let v12 : UH1 = UH1_1                                                    │

00:00:22 #833 [Verbose] > │     let v13 : UH1 = UH1_0(false, v11, v12)                                   │

00:00:22 #834 [Verbose] > │     let v14 : UH1 = UH1_0(true, v5, v13)                                     │

00:00:22 #835 [Verbose] > │     let v15 : UH0 = UH0_1                                                    │

00:00:22 #836 [Verbose] > │     let v16 : UH0 = UH0_0(8, v15)                                            │

00:00:22 #837 [Verbose] > │     let v17 : UH0 = UH0_0(6, v16)                                            │

00:00:22 #838 [Verbose] > │     let v18 : UH0 = UH0_0(4, v17)                                            │

00:00:22 #839 [Verbose] > │     let v19 : UH0 = UH0_0(2, v18)                                            │

00:00:22 #840 [Verbose] > │     let v20 : UH0 = UH0_0(0, v19)                                            │

00:00:22 #841 [Verbose] > │     let v21 : UH0 = UH0_1                                                    │

00:00:22 #842 [Verbose] > │     let v22 : UH0 = UH0_0(9, v21)                                            │

00:00:22 #843 [Verbose] > │     let v23 : UH0 = UH0_0(7, v22)                                            │

00:00:22 #844 [Verbose] > │     let v24 : UH0 = UH0_0(5, v23)                                            │

00:00:22 #845 [Verbose] > │     let v25 : UH0 = UH0_0(3, v24)                                            │

00:00:22 #846 [Verbose] > │     let v26 : UH0 = UH0_0(1, v25)                                            │

00:00:22 #847 [Verbose] > │     let v27 : UH1 = UH1_1                                                    │

00:00:22 #848 [Verbose] > │     let v28 : UH1 = UH1_0(false, v26, v27)                                   │

00:00:22 #849 [Verbose] > │     let v29 : UH1 = UH1_0(true, v20, v28)                                    │

00:00:22 #850 [Verbose] > │     let v30 : string = $"__expect / actual: %A{v14} / expected: %A{v29}"     │

00:00:22 #851 [Verbose] > │     ()                                                                       │

00:00:22 #852 [Verbose] > │ method0()                                                                    │

00:00:22 #853 [Verbose] > │                                                                              │

00:00:22 #854 [Verbose] > │                                                                              │

00:00:22 #855 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #856 [Verbose] >

00:00:22 #857 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:22 #858 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:22 #859 [Verbose] > │ ## forall'                                                                   │

00:00:22 #860 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #861 [Verbose] >

00:00:22 #862 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:22 #863 [Verbose] > inl forall' fn (head :: tail) =

00:00:22 #864 [Verbose] >     (true, tail)

00:00:22 #865 [Verbose] >     ||> listm.fold fun acc x =>

00:00:22 #866 [Verbose] >         acc && x = head

00:00:22 #867 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-0241-4196-4849b26be8fa\main.spi

00:00:22 #868 [Verbose] >

00:00:22 #869 [Verbose] > ╭─[ 209.01ms - stdout ]────────────────────────────────────────────────────────╮

00:00:22 #870 [Verbose] > │ ()                                                                           │

00:00:22 #871 [Verbose] > │                                                                              │

00:00:22 #872 [Verbose] > │                                                                              │

00:00:22 #873 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #874 [Verbose] >

00:00:22 #875 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:22 #876 [Verbose] > // // test

00:00:22 #877 [Verbose] >

00:00:22 #878 [Verbose] > [[ 1i32; 1; 1; 1; 1 ]]

00:00:22 #879 [Verbose] > |> forall' ((=) 1i32)

00:00:22 #880 [Verbose] > |> _equal true

00:00:22 #881 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-0263-6310-677a3efb7997\main.spi

00:00:22 #882 [Verbose] >

00:00:22 #883 [Verbose] > ╭─[ 222.56ms - stdout ]────────────────────────────────────────────────────────╮

00:00:22 #884 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:22 #885 [Verbose] > │     let v0 : string = $"__expect / actual: %A{true} / expected: %A{true}"    │

00:00:22 #886 [Verbose] > │     ()                                                                       │

00:00:22 #887 [Verbose] > │ method0()                                                                    │

00:00:22 #888 [Verbose] > │                                                                              │

00:00:22 #889 [Verbose] > │                                                                              │

00:00:22 #890 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #891 [Verbose] >

00:00:22 #892 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:22 #893 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:22 #894 [Verbose] > │ ## last                                                                      │

00:00:22 #895 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #896 [Verbose] >

00:00:22 #897 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:22 #898 [Verbose] > inl last list =

00:00:22 #899 [Verbose] >     list

00:00:22 #900 [Verbose] >     |> listm.rev

00:00:22 #901 [Verbose] >     |> item 0i32

00:00:22 #902 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-0286-8616-8867554deb8c\main.spi

00:00:23 #903 [Verbose] >

00:00:23 #904 [Verbose] > ╭─[ 300.16ms - stdout ]────────────────────────────────────────────────────────╮

00:00:23 #905 [Verbose] > │ ()                                                                           │

00:00:23 #906 [Verbose] > │                                                                              │

00:00:23 #907 [Verbose] > │                                                                              │

00:00:23 #908 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:23 #909 [Verbose] >

00:00:23 #910 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:23 #911 [Verbose] > // // test

00:00:23 #912 [Verbose] >

00:00:23 #913 [Verbose] > listm.init 10i32 id

00:00:23 #914 [Verbose] > |> last

00:00:23 #915 [Verbose] > |> _equal 9

00:00:23 #916 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-0316-1646-1ea72586da10\main.spi

00:00:23 #917 [Verbose] >

00:00:23 #918 [Verbose] > ╭─[ 191.02ms - stdout ]────────────────────────────────────────────────────────╮

00:00:23 #919 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:23 #920 [Verbose] > │     let v0 : string = $"__expect / actual: %A{9} / expected: %A{9}"          │

00:00:23 #921 [Verbose] > │     ()                                                                       │

00:00:23 #922 [Verbose] > │ method0()                                                                    │

00:00:23 #923 [Verbose] > │                                                                              │

00:00:23 #924 [Verbose] > │                                                                              │

00:00:23 #925 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:23 #926 [Verbose] >

00:00:23 #927 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:23 #928 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:23 #929 [Verbose] > │ ## try_pick                                                                  │

00:00:23 #930 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:23 #931 [Verbose] >

00:00:23 #932 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:23 #933 [Verbose] > inl try_pick fn list =

00:00:23 #934 [Verbose] >     inl rec body fn = function

00:00:23 #935 [Verbose] >         | [[]] => None

00:00:23 #936 [Verbose] >         | x :: xs =>

00:00:23 #937 [Verbose] >             match fn x with

00:00:23 #938 [Verbose] >             | Some y => Some y

00:00:23 #939 [Verbose] >             | None => loop xs

00:00:23 #940 [Verbose] >     and inl loop list =

00:00:23 #941 [Verbose] >         if var_is list |> not

00:00:23 #942 [Verbose] >         then body fn list

00:00:23 #943 [Verbose] >         else

00:00:23 #944 [Verbose] >             inl fn = join fn

00:00:23 #945 [Verbose] >             inl list = dyn list

00:00:23 #946 [Verbose] >             join body fn list

00:00:23 #947 [Verbose] >     loop list

00:00:23 #948 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-0336-3617-378044b2863c\main.spi

00:00:23 #949 [Verbose] >

00:00:23 #950 [Verbose] > ╭─[ 198.35ms - stdout ]────────────────────────────────────────────────────────╮

00:00:23 #951 [Verbose] > │ ()                                                                           │

00:00:23 #952 [Verbose] > │                                                                              │

00:00:23 #953 [Verbose] > │                                                                              │

00:00:23 #954 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:23 #955 [Verbose] >

00:00:23 #956 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:23 #957 [Verbose] > // // test

00:00:23 #958 [Verbose] >

00:00:23 #959 [Verbose] > listm.init 10i32 id

00:00:23 #960 [Verbose] > |> try_pick (fun x => if x = 5i32 then Some x else None)

00:00:23 #961 [Verbose] > |> _equal (Some 5i32)

00:00:23 #962 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-0356-5631-5b079c74856f\main.spi

00:00:23 #963 [Verbose] >

00:00:23 #964 [Verbose] > ╭─[ 301.70ms - stdout ]────────────────────────────────────────────────────────╮

00:00:23 #965 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:23 #966 [Verbose] > │     | US0_0                                                                  │

00:00:23 #967 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:23 #968 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:23 #969 [Verbose] > │     let v0 : US0 = US0_1(5)                                                  │

00:00:23 #970 [Verbose] > │     let v1 : US0 = US0_1(5)                                                  │

00:00:23 #971 [Verbose] > │     let v2 : string = $"__expect / actual: %A{v0} / expected: %A{v1}"        │

00:00:23 #972 [Verbose] > │     ()                                                                       │

00:00:23 #973 [Verbose] > │ method0()                                                                    │

00:00:23 #974 [Verbose] > │                                                                              │

00:00:23 #975 [Verbose] > │                                                                              │

00:00:23 #976 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:26 #977 [Verbose] > [NbConvertApp] Converting notebook listm'.dib.ipynb to html

00:00:26 #978 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:00:26 #979 [Verbose] >   validate(nb)

00:00:27 #980 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:00:27 #981 [Verbose] >   return _pygments_highlight(

00:00:27 #982 [Verbose] > [NbConvertApp] Writing 362490 bytes to listm'.dib.html

00:00:28 #983 [Debug] executeAsync / exitCode: 0 / output.Length: 51191

00:00:28 #984 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\lib\spiral

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 benchmark.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:04 #11 [Verbose] >

00:00:04 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:04 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:04 #14 [Verbose] > │ ## benchmark (Polyglot)                                                      │

00:00:04 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:04 #16 [Verbose] >

00:00:04 #17 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:04 #18 [Verbose] > // // test

00:00:04 #19 [Verbose] >

00:00:04 #20 [Verbose] > open testing

00:00:08 #21 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-1706-0621-03c2dd3c4d87\main.spi

00:00:11 #22 [Verbose] >

00:00:11 #23 [Verbose] > ╭─[ 6.95s - stdout ]───────────────────────────────────────────────────────────╮

00:00:11 #24 [Verbose] > │ ()                                                                           │

00:00:11 #25 [Verbose] > │                                                                              │

00:00:11 #26 [Verbose] > │                                                                              │

00:00:11 #27 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #28 [Verbose] >

00:00:11 #29 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:11 #30 [Verbose] > inl (/@) x = listm'.(/@) x

00:00:11 #31 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-2135-3554-34bb132ce302\main.spi

00:00:11 #32 [Verbose] >

00:00:11 #33 [Verbose] > ╭─[ 255.33ms - stdout ]────────────────────────────────────────────────────────╮

00:00:11 #34 [Verbose] > │ ()                                                                           │

00:00:11 #35 [Verbose] > │                                                                              │

00:00:11 #36 [Verbose] > │                                                                              │

00:00:11 #37 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #38 [Verbose] >

00:00:11 #39 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:11 #40 [Verbose] > inl gc_collect () =

00:00:11 #41 [Verbose] >     run_target function

00:00:11 #42 [Verbose] >         | Fsharp => fun () => $"System.GC.Collect ()"

00:00:11 #43 [Verbose] >         | _ => fun () => ()

00:00:11 #44 [Verbose] >

00:00:11 #45 [Verbose] > inl printfn x =

00:00:11 #46 [Verbose] >     console.write_line x

00:00:11 #47 [Verbose] >

00:00:11 #48 [Verbose] > nominal stopwatch = $"System.Diagnostics.Stopwatch"

00:00:11 #49 [Verbose] >

00:00:11 #50 [Verbose] > inl stopwatch () : stopwatch =

00:00:11 #51 [Verbose] >     $"`stopwatch" ()

00:00:11 #52 [Verbose] >

00:00:11 #53 [Verbose] > inl stopwatch_elapsed_milliseconds (stopwatch : stopwatch) : i64 =

00:00:11 #54 [Verbose] >     $"!stopwatch.ElapsedMilliseconds"

00:00:11 #55 [Verbose] >

00:00:11 #56 [Verbose] > inl stopwatch_start (stopwatch : stopwatch) : () =

00:00:11 #57 [Verbose] >     $"!stopwatch.Start ()"

00:00:12 #58 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-2160-6013-6cfac4e7bcca\main.spi

00:00:12 #59 [Verbose] >

00:00:12 #60 [Verbose] > ╭─[ 221.27ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #61 [Verbose] > │ ()                                                                           │

00:00:12 #62 [Verbose] > │                                                                              │

00:00:12 #63 [Verbose] > │                                                                              │

00:00:12 #64 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #65 [Verbose] >

00:00:12 #66 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #67 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #68 [Verbose] > │ ## test_case_result                                                          │

00:00:12 #69 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #70 [Verbose] >

00:00:12 #71 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #72 [Verbose] > type test_case_result =

00:00:12 #73 [Verbose] >     {

00:00:12 #74 [Verbose] >         Input : string

00:00:12 #75 [Verbose] >         Expected : string

00:00:12 #76 [Verbose] >         Result : string

00:00:12 #77 [Verbose] >         TimeList : a u64 i64

00:00:12 #78 [Verbose] >     }

00:00:12 #79 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-2182-8277-8682ca5b4987\main.spi

00:00:12 #80 [Verbose] >

00:00:12 #81 [Verbose] > ╭─[ 250.86ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #82 [Verbose] > │ ()                                                                           │

00:00:12 #83 [Verbose] > │                                                                              │

00:00:12 #84 [Verbose] > │                                                                              │

00:00:12 #85 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #86 [Verbose] >

00:00:12 #87 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #88 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #89 [Verbose] > │ ## run                                                                       │

00:00:12 #90 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #91 [Verbose] >

00:00:12 #92 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #93 [Verbose] > inl run forall input expected.

00:00:12 #94 [Verbose] >     count

00:00:12 #95 [Verbose] >     (solutions : list (string * (input -> expected)))

00:00:12 #96 [Verbose] >     ((input, expected) : (input * expected))

00:00:12 #97 [Verbose] >     : test_case_result

00:00:12 #98 [Verbose] >     =

00:00:12 #99 [Verbose] >     inl input_str = input |> sm'.format_debug

00:00:12 #100 [Verbose] >

00:00:12 #101 [Verbose] >     printfn ""

00:00:12 #102 [Verbose] >     printfn ($"$\"Solution: {!input_str}  \"" : string)

00:00:12 #103 [Verbose] >

00:00:12 #104 [Verbose] >     inl performance_invoke (fn : () -> expected) =

00:00:12 #105 [Verbose] >         gc_collect ()

00:00:12 #106 [Verbose] >         inl stopwatch = stopwatch ()

00:00:12 #107 [Verbose] >         stopwatch |> stopwatch_start

00:00:12 #108 [Verbose] >         inl time1 = stopwatch |> stopwatch_elapsed_milliseconds

00:00:12 #109 [Verbose] >         inl result : expected =

00:00:12 #110 [Verbose] >             am'.init_series 0 count 1i32

00:00:12 #111 [Verbose] >             |> am'.parallel_map fun _n => fn ()

00:00:12 #112 [Verbose] >             |> am'.last

00:00:12 #113 [Verbose] >         inl time2 = (stopwatch |> stopwatch_elapsed_milliseconds) - time1

00:00:12 #114 [Verbose] >         result, time2

00:00:12 #115 [Verbose] >

00:00:12 #116 [Verbose] >     inl results_with_time : a u64 _ =

00:00:12 #117 [Verbose] >         solutions

00:00:12 #118 [Verbose] >         |> listm'.indexed

00:00:12 #119 [Verbose] >         |> listm.toArray

00:00:12 #120 [Verbose] >         |> am.map fun ((i : i32), (test_name, solution)) =>

00:00:12 #121 [Verbose] >             inl result, time = performance_invoke fun () => solution input

00:00:12 #122 [Verbose] >             printfn ($"$\"Test case {!i + 1}. {!test_name}. Time: {!time}  \"" :

00:00:12 #123 [Verbose] > string)

00:00:12 #124 [Verbose] >             result, time

00:00:12 #125 [Verbose] >

00:00:12 #126 [Verbose] >     match results_with_time |> am.map fst with

00:00:12 #127 [Verbose] >     | array when length array <= 1 => ()

00:00:12 #128 [Verbose] >     | array when array |> am.forall' ((=) (index array 0)) => ()

00:00:12 #129 [Verbose] >     | results => failwith ($"$\"Challenge error: {!results}\"" : string)

00:00:12 #130 [Verbose] >

00:00:12 #131 [Verbose] >     {

00:00:12 #132 [Verbose] >         Input = input_str

00:00:12 #133 [Verbose] >         Expected = expected |> sm'.format_debug

00:00:12 #134 [Verbose] >         Result = results_with_time |> am.map fst |> fun array => index array 0

00:00:12 #135 [Verbose] > |> sm'.format_debug

00:00:12 #136 [Verbose] >         TimeList = results_with_time |> am.map snd

00:00:12 #137 [Verbose] >     }

00:00:12 #138 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-2208-0887-044ae3118063\main.spi

00:00:12 #139 [Verbose] >

00:00:12 #140 [Verbose] > ╭─[ 230.16ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #141 [Verbose] > │ ()                                                                           │

00:00:12 #142 [Verbose] > │                                                                              │

00:00:12 #143 [Verbose] > │                                                                              │

00:00:12 #144 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #145 [Verbose] >

00:00:12 #146 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #147 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #148 [Verbose] > │ ## run_all                                                                   │

00:00:12 #149 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #150 [Verbose] >

00:00:12 #151 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #152 [Verbose] > inl run_all forall input expected.

00:00:12 #153 [Verbose] >     test_name

00:00:12 #154 [Verbose] >     count

00:00:12 #155 [Verbose] >     (solutions : list (string * (input -> expected)))

00:00:12 #156 [Verbose] >     test_cases

00:00:12 #157 [Verbose] >     =

00:00:12 #158 [Verbose] >     printfn ""

00:00:12 #159 [Verbose] >     printfn ""

00:00:12 #160 [Verbose] >     printfn ($"$\"Test: {!test_name}\"" : string)

00:00:12 #161 [Verbose] >     test_cases

00:00:12 #162 [Verbose] >     |> listm.toArray

00:00:12 #163 [Verbose] >     |> am.map (run count solutions)

00:00:12 #164 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-2232-3221-327fb8ea2fe9\main.spi

00:00:12 #165 [Verbose] >

00:00:12 #166 [Verbose] > ╭─[ 229.96ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #167 [Verbose] > │ ()                                                                           │

00:00:12 #168 [Verbose] > │                                                                              │

00:00:12 #169 [Verbose] > │                                                                              │

00:00:12 #170 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #171 [Verbose] >

00:00:12 #172 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #173 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #174 [Verbose] > │ ## sort_result_list                                                          │

00:00:12 #175 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #176 [Verbose] >

00:00:12 #177 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #178 [Verbose] > inl sort_result_list results =

00:00:12 #179 [Verbose] >     inl table =

00:00:12 #180 [Verbose] >         inl rows =

00:00:12 #181 [Verbose] >             results

00:00:12 #182 [Verbose] >             |> am.map fun (result : test_case_result) =>

00:00:12 #183 [Verbose] >                 inl best =

00:00:12 #184 [Verbose] >                     result.TimeList

00:00:12 #185 [Verbose] >                     |> am'.indexed

00:00:12 #186 [Verbose] >                     |> am.map fun (i, time) =>

00:00:12 #187 [Verbose] >                         i + 1i64, time

00:00:12 #188 [Verbose] >                     |> am'.sort_by snd

00:00:12 #189 [Verbose] >                     |> fun array => index array 0i32

00:00:12 #190 [Verbose] >                     |> sm'.format_debug

00:00:12 #191 [Verbose] >                 inl row =

00:00:12 #192 [Verbose] >                     [[

00:00:12 #193 [Verbose] >                         result.Input

00:00:12 #194 [Verbose] >                         result.Expected

00:00:12 #195 [Verbose] >                         result.Result

00:00:12 #196 [Verbose] >                         best

00:00:12 #197 [Verbose] >                     ]]

00:00:12 #198 [Verbose] >                 inl color : option console.console_color =

00:00:12 #199 [Verbose] >                     open console

00:00:12 #200 [Verbose] >                     match result.Expected = result.Result with

00:00:12 #201 [Verbose] >                     | true => Some $"`console_color.DarkGreen"

00:00:12 #202 [Verbose] >                     | false => Some $"`console_color.DarkRed"

00:00:12 #203 [Verbose] >                 row, color

00:00:12 #204 [Verbose] >

00:00:12 #205 [Verbose] >         inl header =

00:00:12 #206 [Verbose] >             [[

00:00:12 #207 [Verbose] >                 [[

00:00:12 #208 [Verbose] >                     "Input"

00:00:12 #209 [Verbose] >                     "Expected"

00:00:12 #210 [Verbose] >                     "Result"

00:00:12 #211 [Verbose] >                     "Best"

00:00:12 #212 [Verbose] >                 ]]

00:00:12 #213 [Verbose] >                 [[

00:00:12 #214 [Verbose] >                     "---"

00:00:12 #215 [Verbose] >                     "---"

00:00:12 #216 [Verbose] >                     "---"

00:00:12 #217 [Verbose] >                     "---"

00:00:12 #218 [Verbose] >                 ]]

00:00:12 #219 [Verbose] >             ]]

00:00:12 #220 [Verbose] >             |> listm.map fun row => row, None

00:00:12 #221 [Verbose] >             |> listm.toArray

00:00:12 #222 [Verbose] >         rows |> am.append header

00:00:12 #223 [Verbose] >

00:00:12 #224 [Verbose] >     inl formattedTable =

00:00:12 #225 [Verbose] >         inl lengthMap : mapm.map i32 i64 =

00:00:12 #226 [Verbose] >             table

00:00:12 #227 [Verbose] >             |> am.map (fst >> listm.toArray)

00:00:12 #228 [Verbose] >             |> am'.transpose

00:00:12 #229 [Verbose] >             |> am.map fun column =>

00:00:12 #230 [Verbose] >                 column

00:00:12 #231 [Verbose] >                 |> am.map sm.length

00:00:12 #232 [Verbose] >                 |> am'.sort_descending

00:00:12 #233 [Verbose] >                 |> am'.try_item 0i32

00:00:12 #234 [Verbose] >                 |> optionm'.default_value 0i64

00:00:12 #235 [Verbose] >             |> am'.indexed

00:00:12 #236 [Verbose] >             |> fun (x : a i32 _) => x

00:00:12 #237 [Verbose] >             |> mapm.of_array

00:00:12 #238 [Verbose] >         table

00:00:12 #239 [Verbose] >         |> am.map fun (row, color) =>

00:00:12 #240 [Verbose] >             inl newRow =

00:00:12 #241 [Verbose] >                 row

00:00:12 #242 [Verbose] >                 |> listm'.indexed

00:00:12 #243 [Verbose] >                 |> listm.map fun (i, cell) =>

00:00:12 #244 [Verbose] >                     cell |> sm'.pad_right (lengthMap |> mapm.item i |> conv)

00:00:12 #245 [Verbose] >                 |> listm.toArray

00:00:12 #246 [Verbose] >             newRow, color

00:00:12 #247 [Verbose] >

00:00:12 #248 [Verbose] >     printfn ""

00:00:12 #249 [Verbose] >     formattedTable

00:00:12 #250 [Verbose] >     |> am.iter fun ((row : a i32 string), color) =>

00:00:12 #251 [Verbose] >         match color with

00:00:12 #252 [Verbose] >         | Some color => color |> console.set_foreground_color

00:00:12 #253 [Verbose] >         | None => console.reset_color ()

00:00:12 #254 [Verbose] >

00:00:12 #255 [Verbose] >         printfn (row |> sm'.join' "\t| ")

00:00:12 #256 [Verbose] >

00:00:12 #257 [Verbose] >         console.reset_color ()

00:00:12 #258 [Verbose] >

00:00:12 #259 [Verbose] >     inl averages : a u64 _ =

00:00:12 #260 [Verbose] >         results

00:00:12 #261 [Verbose] >         |> am.map fun result =>

00:00:12 #262 [Verbose] >             result.TimeList

00:00:12 #263 [Verbose] >             |> am.map ($"float" : i64 -> f64)

00:00:12 #264 [Verbose] >         |> am'.transpose

00:00:12 #265 [Verbose] >         |> am.map am'.average

00:00:12 #266 [Verbose] >         |> am.map ($"int64" : f64 -> i64)

00:00:12 #267 [Verbose] >         |> am'.indexed

00:00:12 #268 [Verbose] >

00:00:12 #269 [Verbose] >     printfn ""

00:00:12 #270 [Verbose] >     printfn "Average Ranking  "

00:00:12 #271 [Verbose] >     averages

00:00:12 #272 [Verbose] >     |> am'.sort_by snd

00:00:12 #273 [Verbose] >     |> am.iter fun ((i : i32), avg) =>

00:00:12 #274 [Verbose] >         printfn ($"$\"Test case %d{!i + 1}. Average Time: %A{!avg}  \"" :

00:00:12 #275 [Verbose] > string)

00:00:13 #276 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-2256-5600-5588a1e93d69\main.spi

00:00:13 #277 [Verbose] >

00:00:13 #278 [Verbose] > ╭─[ 253.51ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #279 [Verbose] > │ ()                                                                           │

00:00:13 #280 [Verbose] > │                                                                              │

00:00:13 #281 [Verbose] > │                                                                              │

00:00:13 #282 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #283 [Verbose] >

00:00:13 #284 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:13 #285 [Verbose] > // // test

00:00:13 #286 [Verbose] >

00:00:13 #287 [Verbose] > inl is_fast () =

00:00:13 #288 [Verbose] >     false

00:00:13 #289 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-2281-8154-859e4761673c\main.spi

00:00:13 #290 [Verbose] >

00:00:13 #291 [Verbose] > ╭─[ 281.49ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #292 [Verbose] > │ ()                                                                           │

00:00:13 #293 [Verbose] > │                                                                              │

00:00:13 #294 [Verbose] > │                                                                              │

00:00:13 #295 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #296 [Verbose] >

00:00:13 #297 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:13 #298 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:13 #299 [Verbose] > │ ## empty2Tests                                                               │

00:00:13 #300 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #301 [Verbose] >

00:00:13 #302 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:13 #303 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:13 #304 [Verbose] > │ Test: Empty2                                                                 │

00:00:13 #305 [Verbose] > │                                                                              │

00:00:13 #306 [Verbose] > │ Solution: (a, a)                                                             │

00:00:13 #307 [Verbose] > │ Test case 1. A. Time: 59L                                                    │

00:00:13 #308 [Verbose] > │                                                                              │

00:00:13 #309 [Verbose] > │ Solution: (a, a)                                                             │

00:00:13 #310 [Verbose] > │ Test case 1. A. Time: 53L                                                    │

00:00:13 #311 [Verbose] > │                                                                              │

00:00:13 #312 [Verbose] > │ Input   | Expected        | Result  | Best                                   │

00:00:13 #313 [Verbose] > │ ---     | ---             | ---     | ---                                    │

00:00:13 #314 [Verbose] > │ (a, a)  | a               | a       | (1, 59)                                │

00:00:13 #315 [Verbose] > │ (a, a)  | a               | a       | (1, 53)                                │

00:00:13 #316 [Verbose] > │                                                                              │

00:00:13 #317 [Verbose] > │ Averages                                                                     │

00:00:13 #318 [Verbose] > │ Test case 1. Average Time: 56L                                               │

00:00:13 #319 [Verbose] > │                                                                              │

00:00:13 #320 [Verbose] > │ Ranking                                                                      │

00:00:13 #321 [Verbose] > │ Test case 1. Average Time: 56L                                               │

00:00:13 #322 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #323 [Verbose] >

00:00:13 #324 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:13 #325 [Verbose] > // // test

00:00:13 #326 [Verbose] >

00:00:13 #327 [Verbose] > inl get_solutions () =

00:00:13 #328 [Verbose] >     [[

00:00:13 #329 [Verbose] >         "A",

00:00:13 #330 [Verbose] >         fun (a, _b) =>

00:00:13 #331 [Verbose] >             a

00:00:13 #332 [Verbose] >

00:00:13 #333 [Verbose] >         "B",

00:00:13 #334 [Verbose] >         fun (_a, b) =>

00:00:13 #335 [Verbose] >             b

00:00:13 #336 [Verbose] >     ]]

00:00:13 #337 [Verbose] >

00:00:13 #338 [Verbose] > inl rec empty_2_tests () =

00:00:13 #339 [Verbose] >     inl test_cases = [[

00:00:13 #340 [Verbose] >         ("a", "a"), "a"

00:00:13 #341 [Verbose] >         ("b", "b"), "b"

00:00:13 #342 [Verbose] >     ]]

00:00:13 #343 [Verbose] >

00:00:13 #344 [Verbose] >     inl solutions = get_solutions ()

00:00:13 #345 [Verbose] >

00:00:13 #346 [Verbose] >     // inl is_fast () = true

00:00:13 #347 [Verbose] >

00:00:13 #348 [Verbose] >     inl count =

00:00:13 #349 [Verbose] >         if is_fast ()

00:00:13 #350 [Verbose] >         then 1000i32

00:00:13 #351 [Verbose] >         else 2000000i32

00:00:13 #352 [Verbose] >

00:00:13 #353 [Verbose] >     run_all (nameof empty_2_tests) count solutions test_cases

00:00:13 #354 [Verbose] >     |> sort_result_list

00:00:13 #355 [Verbose] >

00:00:13 #356 [Verbose] > empty_2_tests ()

00:00:13 #357 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-2311-1168-14874541ff5a\main.spi

00:00:26 #358 [Verbose] >

00:00:26 #359 [Verbose] > ╭─[ 13.14s - stdout ]──────────────────────────────────────────────────────────╮

00:00:26 #360 [Verbose] > │ type UH0 =                                                                   │

00:00:26 #361 [Verbose] > │     | UH0_0 of string * string * string * UH0                                │

00:00:26 #362 [Verbose] > │     | UH0_1                                                                  │

00:00:26 #363 [Verbose] > │ and Mut0 = {mutable l0 : uint64}                                             │

00:00:26 #364 [Verbose] > │ and UH1 =                                                                    │

00:00:26 #365 [Verbose] > │     | UH1_0 of int32 * string * (struct (string * string) -> string) * UH1   │

00:00:26 #366 [Verbose] > │     | UH1_1                                                                  │

00:00:26 #367 [Verbose] > │ and Mut1 = {mutable l0 : int32}                                              │

00:00:26 #368 [Verbose] > │ and UH2 =                                                                    │

00:00:26 #369 [Verbose] > │     | UH2_0 of string * UH2                                                  │

00:00:26 #370 [Verbose] > │     | UH2_1                                                                  │

00:00:26 #371 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:26 #372 [Verbose] > │     | US0_0                                                                  │

00:00:26 #373 [Verbose] > │     | US0_1 of f1_0 : System.ConsoleColor                                    │

00:00:26 #374 [Verbose] > │ and UH3 =                                                                    │

00:00:26 #375 [Verbose] > │     | UH3_0 of int64 * int64 * UH3                                           │

00:00:26 #376 [Verbose] > │     | UH3_1                                                                  │

00:00:26 #377 [Verbose] > │ and Mut2 = {mutable l0 : uint64; mutable l1 : UH3; mutable l2 : int64}       │

00:00:26 #378 [Verbose] > │ and UH4 =                                                                    │

00:00:26 #379 [Verbose] > │     | UH4_0 of UH2 * US0 * UH4                                               │

00:00:26 #380 [Verbose] > │     | UH4_1                                                                  │

00:00:26 #381 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:26 #382 [Verbose] > │     | US1_0                                                                  │

00:00:26 #383 [Verbose] > │     | US1_1 of f1_0 : int64                                                  │

00:00:26 #384 [Verbose] > │ and UH5 =                                                                    │

00:00:26 #385 [Verbose] > │     | UH5_0 of int32 * int64 * UH5                                           │

00:00:26 #386 [Verbose] > │     | UH5_1                                                                  │

00:00:26 #387 [Verbose] > │ and Mut3 = {mutable l0 : uint64; mutable l1 : UH5; mutable l2 : int32}       │

00:00:26 #388 [Verbose] > │ and UH6 =                                                                    │

00:00:26 #389 [Verbose] > │     | UH6_0 of int32 * string * UH6                                          │

00:00:26 #390 [Verbose] > │     | UH6_1                                                                  │

00:00:26 #391 [Verbose] > │ let rec method2 (v0 : UH0, v1 : uint64) : uint64 =                           │

00:00:26 #392 [Verbose] > │     match v0 with                                                            │

00:00:26 #393 [Verbose] > │     | UH0_0(v2, v3, v4, v5) -> (* Cons *)                                    │

00:00:26 #394 [Verbose] > │         let v6 : uint64 = v1 + 1UL                                           │

00:00:26 #395 [Verbose] > │         method2(v5, v6)                                                      │

00:00:26 #396 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:26 #397 [Verbose] > │         v1                                                                   │

00:00:26 #398 [Verbose] > │ and method3 (v0 : (struct (string * string * string) []), v1 : UH0, v2 :     │

00:00:26 #399 [Verbose] > │ uint64) : uint64 =                                                           │

00:00:26 #400 [Verbose] > │     match v1 with                                                            │

00:00:26 #401 [Verbose] > │     | UH0_0(v3, v4, v5, v6) -> (* Cons *)                                    │

00:00:26 #402 [Verbose] > │         v0.[int v2] <- struct (v3, v4, v5)                                   │

00:00:26 #403 [Verbose] > │         let v7 : uint64 = v2 + 1UL                                           │

00:00:26 #404 [Verbose] > │         method3(v0, v6, v7)                                                  │

00:00:26 #405 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:26 #406 [Verbose] > │         v2                                                                   │

00:00:26 #407 [Verbose] > │ and method1 (v0 : UH0) : (struct (string * string * string) []) =            │

00:00:26 #408 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:00:26 #409 [Verbose] > │     let v2 : uint64 = method2(v0, v1)                                        │

00:00:26 #410 [Verbose] > │     let v3 : (struct (string * string * string) []) =                        │

00:00:26 #411 [Verbose] > │ Array.zeroCreate<struct (string * string * string)>                          │

00:00:26 #412 [Verbose] > │ (System.Convert.ToInt32(v2))                                                 │

00:00:26 #413 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:00:26 #414 [Verbose] > │     let v5 : uint64 = method3(v3, v0, v4)                                    │

00:00:26 #415 [Verbose] > │     v3                                                                       │

00:00:26 #416 [Verbose] > │ and method4 (v0 : uint64, v1 : Mut0) : bool =                                │

00:00:26 #417 [Verbose] > │     let v2 : uint64 = v1.l0                                                  │

00:00:26 #418 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:26 #419 [Verbose] > │     v3                                                                       │

00:00:26 #420 [Verbose] > │ and closure1 () struct (v0 : string, v1 : string) : string =                 │

00:00:26 #421 [Verbose] > │     v0                                                                       │

00:00:26 #422 [Verbose] > │ and closure2 () struct (v0 : string, v1 : string) : string =                 │

00:00:26 #423 [Verbose] > │     v1                                                                       │

00:00:26 #424 [Verbose] > │ and method6 (v0 : UH1, v1 : uint64) : uint64 =                               │

00:00:26 #425 [Verbose] > │     match v0 with                                                            │

00:00:26 #426 [Verbose] > │     | UH1_0(v2, v3, v4, v5) -> (* Cons *)                                    │

00:00:26 #427 [Verbose] > │         let v6 : uint64 = v1 + 1UL                                           │

00:00:26 #428 [Verbose] > │         method6(v5, v6)                                                      │

00:00:26 #429 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:26 #430 [Verbose] > │         v1                                                                   │

00:00:26 #431 [Verbose] > │ and method7 (v0 : (struct (int32 * string * (struct (string * string) ->     │

00:00:26 #432 [Verbose] > │ string)) []), v1 : UH1, v2 : uint64) : uint64 =                              │

00:00:26 #433 [Verbose] > │     match v1 with                                                            │

00:00:26 #434 [Verbose] > │     | UH1_0(v3, v4, v5, v6) -> (* Cons *)                                    │

00:00:26 #435 [Verbose] > │         v0.[int v2] <- struct (v3, v4, v5)                                   │

00:00:26 #436 [Verbose] > │         let v7 : uint64 = v2 + 1UL                                           │

00:00:26 #437 [Verbose] > │         method7(v0, v6, v7)                                                  │

00:00:26 #438 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:26 #439 [Verbose] > │         v2                                                                   │

00:00:26 #440 [Verbose] > │ and method5 (v0 : UH1) : (struct (int32 * string * (struct (string * string) │

00:00:26 #441 [Verbose] > │ -> string)) []) =                                                            │

00:00:26 #442 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:00:26 #443 [Verbose] > │     let v2 : uint64 = method6(v0, v1)                                        │

00:00:26 #444 [Verbose] > │     let v3 : (struct (int32 * string * (struct (string * string) -> string)) │

00:00:26 #445 [Verbose] > │ []) = Array.zeroCreate<struct (int32 * string * (struct (string * string) -> │

00:00:26 #446 [Verbose] > │ string))> (System.Convert.ToInt32(v2))                                       │

00:00:26 #447 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:00:26 #448 [Verbose] > │     let v5 : uint64 = method7(v3, v0, v4)                                    │

00:00:26 #449 [Verbose] > │     v3                                                                       │

00:00:26 #450 [Verbose] > │ and method8 (v0 : Mut1) : bool =                                             │

00:00:26 #451 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:26 #452 [Verbose] > │     let v2 : bool = v1 < 2000001                                             │

00:00:26 #453 [Verbose] > │     v2                                                                       │

00:00:26 #454 [Verbose] > │ and closure3 (v0 : string, v1 : string, v2 : (struct (string * string) ->    │

00:00:26 #455 [Verbose] > │ string)) (v3 : int32) : string =                                             │

00:00:26 #456 [Verbose] > │     v2 struct (v0, v1)                                                       │

00:00:26 #457 [Verbose] > │ and method9 (v0 : string, v1 : (string []), v2 : uint64) : bool =            │

00:00:26 #458 [Verbose] > │     let v3 : uint64 = System.Convert.ToUInt64 v1.Length                      │

00:00:26 #459 [Verbose] > │     let v4 : bool = v2 < v3                                                  │

00:00:26 #460 [Verbose] > │     if v4 then                                                               │

00:00:26 #461 [Verbose] > │         let v5 : string = v1.[int v2]                                        │

00:00:26 #462 [Verbose] > │         let v6 : bool = v0 = v5                                              │

00:00:26 #463 [Verbose] > │         if v6 then                                                           │

00:00:26 #464 [Verbose] > │             let v7 : uint64 = v2 + 1UL                                       │

00:00:26 #465 [Verbose] > │             method9(v0, v1, v7)                                              │

00:00:26 #466 [Verbose] > │         else                                                                 │

00:00:26 #467 [Verbose] > │             false                                                            │

00:00:26 #468 [Verbose] > │     else                                                                     │

00:00:26 #469 [Verbose] > │         true                                                                 │

00:00:26 #470 [Verbose] > │ and method10 (v0 : uint64, v1 : Mut2) : bool =                               │

00:00:26 #471 [Verbose] > │     let v2 : uint64 = v1.l0                                                  │

00:00:26 #472 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:26 #473 [Verbose] > │     v3                                                                       │

00:00:26 #474 [Verbose] > │ and method11 (v0 : UH3, v1 : UH3) : UH3 =                                    │

00:00:26 #475 [Verbose] > │     match v0 with                                                            │

00:00:26 #476 [Verbose] > │     | UH3_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:26 #477 [Verbose] > │         let v5 : UH3 = UH3_0(v2, v3, v1)                                     │

00:00:26 #478 [Verbose] > │         method11(v4, v5)                                                     │

00:00:26 #479 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:00:26 #480 [Verbose] > │         v1                                                                   │

00:00:26 #481 [Verbose] > │ and method13 (v0 : UH3, v1 : int32) : int32 =                                │

00:00:26 #482 [Verbose] > │     match v0 with                                                            │

00:00:26 #483 [Verbose] > │     | UH3_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:26 #484 [Verbose] > │         let v5 : int32 = v1 + 1                                              │

00:00:26 #485 [Verbose] > │         method13(v4, v5)                                                     │

00:00:26 #486 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:00:26 #487 [Verbose] > │         v1                                                                   │

00:00:26 #488 [Verbose] > │ and method14 (v0 : (struct (int64 * int64) []), v1 : UH3, v2 : int32) :      │

00:00:26 #489 [Verbose] > │ int32 =                                                                      │

00:00:26 #490 [Verbose] > │     match v1 with                                                            │

00:00:26 #491 [Verbose] > │     | UH3_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:26 #492 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:00:26 #493 [Verbose] > │         let v6 : int32 = v2 + 1                                              │

00:00:26 #494 [Verbose] > │         method14(v0, v5, v6)                                                 │

00:00:26 #495 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:00:26 #496 [Verbose] > │         v2                                                                   │

00:00:26 #497 [Verbose] > │ and method12 (v0 : UH3) : (struct (int64 * int64) []) =                      │

00:00:26 #498 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:26 #499 [Verbose] > │     let v2 : int32 = method13(v0, v1)                                        │

00:00:26 #500 [Verbose] > │     let v3 : (struct (int64 * int64) []) = Array.zeroCreate<struct (int64 *  │

00:00:26 #501 [Verbose] > │ int64)> (v2)                                                                 │

00:00:26 #502 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:26 #503 [Verbose] > │     let v5 : int32 = method14(v3, v0, v4)                                    │

00:00:26 #504 [Verbose] > │     v3                                                                       │

00:00:26 #505 [Verbose] > │ and method15 (v0 : int32, v1 : Mut1) : bool =                                │

00:00:26 #506 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:26 #507 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:26 #508 [Verbose] > │     v3                                                                       │

00:00:26 #509 [Verbose] > │ and closure4 () struct (v0 : int64, v1 : int64) : int64 =                    │

00:00:26 #510 [Verbose] > │     v1                                                                       │

00:00:26 #511 [Verbose] > │ and method17 (v0 : UH4, v1 : uint64) : uint64 =                              │

00:00:26 #512 [Verbose] > │     match v0 with                                                            │

00:00:26 #513 [Verbose] > │     | UH4_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:26 #514 [Verbose] > │         let v5 : uint64 = v1 + 1UL                                           │

00:00:26 #515 [Verbose] > │         method17(v4, v5)                                                     │

00:00:26 #516 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:00:26 #517 [Verbose] > │         v1                                                                   │

00:00:26 #518 [Verbose] > │ and method18 (v0 : (struct (UH2 * US0) []), v1 : UH4, v2 : uint64) : uint64  │

00:00:26 #519 [Verbose] > │ =                                                                            │

00:00:26 #520 [Verbose] > │     match v1 with                                                            │

00:00:26 #521 [Verbose] > │     | UH4_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:26 #522 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:00:26 #523 [Verbose] > │         let v6 : uint64 = v2 + 1UL                                           │

00:00:26 #524 [Verbose] > │         method18(v0, v5, v6)                                                 │

00:00:26 #525 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:00:26 #526 [Verbose] > │         v2                                                                   │

00:00:26 #527 [Verbose] > │ and method16 (v0 : UH4) : (struct (UH2 * US0) []) =                          │

00:00:26 #528 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:00:26 #529 [Verbose] > │     let v2 : uint64 = method17(v0, v1)                                       │

00:00:26 #530 [Verbose] > │     let v3 : (struct (UH2 * US0) []) = Array.zeroCreate<struct (UH2 * US0)>  │

00:00:26 #531 [Verbose] > │ (System.Convert.ToInt32(v2))                                                 │

00:00:26 #532 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:00:26 #533 [Verbose] > │     let v5 : uint64 = method18(v3, v0, v4)                                   │

00:00:26 #534 [Verbose] > │     v3                                                                       │

00:00:26 #535 [Verbose] > │ and method20 (v0 : UH2, v1 : uint64) : uint64 =                              │

00:00:26 #536 [Verbose] > │     match v0 with                                                            │

00:00:26 #537 [Verbose] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

00:00:26 #538 [Verbose] > │         let v4 : uint64 = v1 + 1UL                                           │

00:00:26 #539 [Verbose] > │         method20(v3, v4)                                                     │

00:00:26 #540 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:26 #541 [Verbose] > │         v1                                                                   │

00:00:26 #542 [Verbose] > │ and method21 (v0 : (string []), v1 : UH2, v2 : uint64) : uint64 =            │

00:00:26 #543 [Verbose] > │     match v1 with                                                            │

00:00:26 #544 [Verbose] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

00:00:26 #545 [Verbose] > │         v0.[int v2] <- v3                                                    │

00:00:26 #546 [Verbose] > │         let v5 : uint64 = v2 + 1UL                                           │

00:00:26 #547 [Verbose] > │         method21(v0, v4, v5)                                                 │

00:00:26 #548 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:26 #549 [Verbose] > │         v2                                                                   │

00:00:26 #550 [Verbose] > │ and method19 (v0 : UH2) : (string []) =                                      │

00:00:26 #551 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:00:26 #552 [Verbose] > │     let v2 : uint64 = method20(v0, v1)                                       │

00:00:26 #553 [Verbose] > │     let v3 : (string []) = Array.zeroCreate<string>                          │

00:00:26 #554 [Verbose] > │ (System.Convert.ToInt32(v2))                                                 │

00:00:26 #555 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:00:26 #556 [Verbose] > │     let v5 : uint64 = method21(v3, v0, v4)                                   │

00:00:26 #557 [Verbose] > │     v3                                                                       │

00:00:26 #558 [Verbose] > │ and closure5 () (v0 : int64) : US1 =                                         │

00:00:26 #559 [Verbose] > │     US1_1(v0)                                                                │

00:00:26 #560 [Verbose] > │ and method22 (v0 : uint64, v1 : Mut3) : bool =                               │

00:00:26 #561 [Verbose] > │     let v2 : uint64 = v1.l0                                                  │

00:00:26 #562 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:26 #563 [Verbose] > │     v3                                                                       │

00:00:26 #564 [Verbose] > │ and method23 (v0 : UH5, v1 : UH5) : UH5 =                                    │

00:00:26 #565 [Verbose] > │     match v0 with                                                            │

00:00:26 #566 [Verbose] > │     | UH5_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:26 #567 [Verbose] > │         let v5 : UH5 = UH5_0(v2, v3, v1)                                     │

00:00:26 #568 [Verbose] > │         method23(v4, v5)                                                     │

00:00:26 #569 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:00:26 #570 [Verbose] > │         v1                                                                   │

00:00:26 #571 [Verbose] > │ and method25 (v0 : UH5, v1 : int32) : int32 =                                │

00:00:26 #572 [Verbose] > │     match v0 with                                                            │

00:00:26 #573 [Verbose] > │     | UH5_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:26 #574 [Verbose] > │         let v5 : int32 = v1 + 1                                              │

00:00:26 #575 [Verbose] > │         method25(v4, v5)                                                     │

00:00:26 #576 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:00:26 #577 [Verbose] > │         v1                                                                   │

00:00:26 #578 [Verbose] > │ and method26 (v0 : (struct (int32 * int64) []), v1 : UH5, v2 : int32) :      │

00:00:26 #579 [Verbose] > │ int32 =                                                                      │

00:00:26 #580 [Verbose] > │     match v1 with                                                            │

00:00:26 #581 [Verbose] > │     | UH5_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:26 #582 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:00:26 #583 [Verbose] > │         let v6 : int32 = v2 + 1                                              │

00:00:26 #584 [Verbose] > │         method26(v0, v5, v6)                                                 │

00:00:26 #585 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:00:26 #586 [Verbose] > │         v2                                                                   │

00:00:26 #587 [Verbose] > │ and method24 (v0 : UH5) : (struct (int32 * int64) []) =                      │

00:00:26 #588 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:26 #589 [Verbose] > │     let v2 : int32 = method25(v0, v1)                                        │

00:00:26 #590 [Verbose] > │     let v3 : (struct (int32 * int64) []) = Array.zeroCreate<struct (int32 *  │

00:00:26 #591 [Verbose] > │ int64)> (v2)                                                                 │

00:00:26 #592 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:26 #593 [Verbose] > │     let v5 : int32 = method26(v3, v0, v4)                                    │

00:00:26 #594 [Verbose] > │     v3                                                                       │

00:00:26 #595 [Verbose] > │ and method27 (v0 : UH2, v1 : UH6, v2 : int32) : struct (UH6 * int32) =       │

00:00:26 #596 [Verbose] > │     match v0 with                                                            │

00:00:26 #597 [Verbose] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

00:00:26 #598 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:00:26 #599 [Verbose] > │         let v6 : UH6 = UH6_0(v2, v3, v1)                                     │

00:00:26 #600 [Verbose] > │         method27(v4, v6, v5)                                                 │

00:00:26 #601 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:26 #602 [Verbose] > │         struct (v1, v2)                                                      │

00:00:26 #603 [Verbose] > │ and method28 (v0 : UH6, v1 : UH6) : UH6 =                                    │

00:00:26 #604 [Verbose] > │     match v0 with                                                            │

00:00:26 #605 [Verbose] > │     | UH6_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:26 #606 [Verbose] > │         let v5 : UH6 = UH6_0(v2, v3, v1)                                     │

00:00:26 #607 [Verbose] > │         method28(v4, v5)                                                     │

00:00:26 #608 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:00:26 #609 [Verbose] > │         v1                                                                   │

00:00:26 #610 [Verbose] > │ and method29 (v0 : Map<int32, int64>, v1 : UH6, v2 : UH2) : UH2 =            │

00:00:26 #611 [Verbose] > │     match v1 with                                                            │

00:00:26 #612 [Verbose] > │     | UH6_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:26 #613 [Verbose] > │         let v6 : UH2 = method29(v0, v5, v2)                                  │

00:00:26 #614 [Verbose] > │         let v7 : int64 = v0.[v3]                                             │

00:00:26 #615 [Verbose] > │         let v8 : int32 = int32 v7                                            │

00:00:26 #616 [Verbose] > │         let v9 : string = v4.PadRight v8                                     │

00:00:26 #617 [Verbose] > │         UH2_0(v9, v6)                                                        │

00:00:26 #618 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:00:26 #619 [Verbose] > │         v2                                                                   │

00:00:26 #620 [Verbose] > │ and method31 (v0 : UH2, v1 : int32) : int32 =                                │

00:00:26 #621 [Verbose] > │     match v0 with                                                            │

00:00:26 #622 [Verbose] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

00:00:26 #623 [Verbose] > │         let v4 : int32 = v1 + 1                                              │

00:00:26 #624 [Verbose] > │         method31(v3, v4)                                                     │

00:00:26 #625 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:26 #626 [Verbose] > │         v1                                                                   │

00:00:26 #627 [Verbose] > │ and method32 (v0 : (string []), v1 : UH2, v2 : int32) : int32 =              │

00:00:26 #628 [Verbose] > │     match v1 with                                                            │

00:00:26 #629 [Verbose] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

00:00:26 #630 [Verbose] > │         v0.[int v2] <- v3                                                    │

00:00:26 #631 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:00:26 #632 [Verbose] > │         method32(v0, v4, v5)                                                 │

00:00:26 #633 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:26 #634 [Verbose] > │         v2                                                                   │

00:00:26 #635 [Verbose] > │ and method30 (v0 : UH2) : (string []) =                                      │

00:00:26 #636 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:26 #637 [Verbose] > │     let v2 : int32 = method31(v0, v1)                                        │

00:00:26 #638 [Verbose] > │     let v3 : (string []) = Array.zeroCreate<string> (v2)                     │

00:00:26 #639 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:26 #640 [Verbose] > │     let v5 : int32 = method32(v3, v0, v4)                                    │

00:00:26 #641 [Verbose] > │     v3                                                                       │

00:00:26 #642 [Verbose] > │ and method34 (v0 : UH5, v1 : uint64) : uint64 =                              │

00:00:26 #643 [Verbose] > │     match v0 with                                                            │

00:00:26 #644 [Verbose] > │     | UH5_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:26 #645 [Verbose] > │         let v5 : uint64 = v1 + 1UL                                           │

00:00:26 #646 [Verbose] > │         method34(v4, v5)                                                     │

00:00:26 #647 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:00:26 #648 [Verbose] > │         v1                                                                   │

00:00:26 #649 [Verbose] > │ and method35 (v0 : (struct (int32 * int64) []), v1 : UH5, v2 : uint64) :     │

00:00:26 #650 [Verbose] > │ uint64 =                                                                     │

00:00:26 #651 [Verbose] > │     match v1 with                                                            │

00:00:26 #652 [Verbose] > │     | UH5_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:26 #653 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:00:26 #654 [Verbose] > │         let v6 : uint64 = v2 + 1UL                                           │

00:00:26 #655 [Verbose] > │         method35(v0, v5, v6)                                                 │

00:00:26 #656 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:00:26 #657 [Verbose] > │         v2                                                                   │

00:00:26 #658 [Verbose] > │ and method33 (v0 : UH5) : (struct (int32 * int64) []) =                      │

00:00:26 #659 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:00:26 #660 [Verbose] > │     let v2 : uint64 = method34(v0, v1)                                       │

00:00:26 #661 [Verbose] > │     let v3 : (struct (int32 * int64) []) = Array.zeroCreate<struct (int32 *  │

00:00:26 #662 [Verbose] > │ int64)> (System.Convert.ToInt32(v2))                                         │

00:00:26 #663 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:00:26 #664 [Verbose] > │     let v5 : uint64 = method35(v3, v0, v4)                                   │

00:00:26 #665 [Verbose] > │     v3                                                                       │

00:00:26 #666 [Verbose] > │ and closure6 () struct (v0 : int32, v1 : int64) : int64 =                    │

00:00:26 #667 [Verbose] > │     v1                                                                       │

00:00:26 #668 [Verbose] > │ and closure0 () () : unit =                                                  │

00:00:26 #669 [Verbose] > │     let v0 : (unit -> unit) = closure0()                                     │

00:00:26 #670 [Verbose] > │     let v1 : string = nameof v0                                              │

00:00:26 #671 [Verbose] > │     let v2 : string = ""                                                     │

00:00:26 #672 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:26 #673 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:26 #674 [Verbose] > │     let v3 : string = $"Test: {v1}"                                          │

00:00:26 #675 [Verbose] > │     System.Console.WriteLine v3                                              │

00:00:26 #676 [Verbose] > │     let v4 : string = "a"                                                    │

00:00:26 #677 [Verbose] > │     let v5 : string = "b"                                                    │

00:00:26 #678 [Verbose] > │     let v6 : UH0 = UH0_1                                                     │

00:00:26 #679 [Verbose] > │     let v7 : UH0 = UH0_0(v5, v5, v5, v6)                                     │

00:00:26 #680 [Verbose] > │     let v8 : UH0 = UH0_0(v4, v4, v4, v7)                                     │

00:00:26 #681 [Verbose] > │     let v9 : (struct (string * string * string) []) = method1(v8)            │

00:00:26 #682 [Verbose] > │     let v10 : uint64 = System.Convert.ToUInt64 v9.Length                     │

00:00:26 #683 [Verbose] > │     let v11 : (struct (string * string * string * (int64 [])) []) =          │

00:00:26 #684 [Verbose] > │ Array.zeroCreate<struct (string * string * string * (int64 []))>             │

00:00:26 #685 [Verbose] > │ (System.Convert.ToInt32(v10))                                                │

00:00:26 #686 [Verbose] > │     let v12 : Mut0 = {l0 = 0UL} : Mut0                                       │

00:00:26 #687 [Verbose] > │     while method4(v10, v12) do                                               │

00:00:26 #688 [Verbose] > │         let v14 : uint64 = v12.l0                                            │

00:00:26 #689 [Verbose] > │         let struct (v15 : string, v16 : string, v17 : string) = v9.[int v14] │

00:00:26 #690 [Verbose] > │         let v18 : string = $"%A{struct (v15, v16)}"                          │

00:00:26 #691 [Verbose] > │         System.Console.WriteLine v2                                          │

00:00:26 #692 [Verbose] > │         let v19 : string = $"Solution: {v18}  "                              │

00:00:26 #693 [Verbose] > │         System.Console.WriteLine v19                                         │

00:00:26 #694 [Verbose] > │         let v20 : int32 = 0                                                  │

00:00:26 #695 [Verbose] > │         let v21 : string = "A"                                               │

00:00:26 #696 [Verbose] > │         let v22 : (struct (string * string) -> string) = closure1()          │

00:00:26 #697 [Verbose] > │         let v23 : int32 = 1                                                  │

00:00:26 #698 [Verbose] > │         let v24 : string = "B"                                               │

00:00:26 #699 [Verbose] > │         let v25 : (struct (string * string) -> string) = closure2()          │

00:00:26 #700 [Verbose] > │         let v26 : UH1 = UH1_1                                                │

00:00:26 #701 [Verbose] > │         let v27 : UH1 = UH1_0(v23, v24, v25, v26)                            │

00:00:26 #702 [Verbose] > │         let v28 : UH1 = UH1_0(v20, v21, v22, v27)                            │

00:00:26 #703 [Verbose] > │         let v29 : (struct (int32 * string * (struct (string * string) ->     │

00:00:26 #704 [Verbose] > │ string)) []) = method5(v28)                                                  │

00:00:26 #705 [Verbose] > │         let v30 : uint64 = System.Convert.ToUInt64 v29.Length                │

00:00:26 #706 [Verbose] > │         let v31 : (struct (string * int64) []) = Array.zeroCreate<struct     │

00:00:26 #707 [Verbose] > │ (string * int64)> (System.Convert.ToInt32(v30))                              │

00:00:26 #708 [Verbose] > │         let v32 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:26 #709 [Verbose] > │         while method4(v30, v32) do                                           │

00:00:26 #710 [Verbose] > │             let v34 : uint64 = v32.l0                                        │

00:00:26 #711 [Verbose] > │             let struct (v35 : int32, v36 : string, v37 : (struct (string *   │

00:00:26 #712 [Verbose] > │ string) -> string)) = v29.[int v34]                                          │

00:00:26 #713 [Verbose] > │             let mutable result = None                                        │

00:00:26 #714 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:26 #715 [Verbose] > │             #if !WASM                                                        │

00:00:26 #716 [Verbose] > │             ()                                                               │

00:00:26 #717 [Verbose] > │             #else                                                            │

00:00:26 #718 [Verbose] > │             ()                                                               │

00:00:26 #719 [Verbose] > │             #endif                                                           │

00:00:26 #720 [Verbose] > │             #else                                                            │

00:00:26 #721 [Verbose] > │             System.GC.Collect ()                                             │

00:00:26 #722 [Verbose] > │             ()                                                               │

00:00:26 #723 [Verbose] > │             #endif                                                           │

00:00:26 #724 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:26 #725 [Verbose] > │             result |> Option.get                                             │

00:00:26 #726 [Verbose] > │             let v38 : (unit -> System.Diagnostics.Stopwatch) =               │

00:00:26 #727 [Verbose] > │ System.Diagnostics.Stopwatch                                                 │

00:00:26 #728 [Verbose] > │             let v39 : System.Diagnostics.Stopwatch = v38 ()                  │

00:00:26 #729 [Verbose] > │             v39.Start ()                                                     │

00:00:26 #730 [Verbose] > │             let v40 : int64 = v39.ElapsedMilliseconds                        │

00:00:26 #731 [Verbose] > │             let v41 : (int32 []) = Array.zeroCreate<int32> (2000001)         │

00:00:26 #732 [Verbose] > │             let v42 : Mut1 = {l0 = 0} : Mut1                                 │

00:00:26 #733 [Verbose] > │             while method8(v42) do                                            │

00:00:26 #734 [Verbose] > │                 let v44 : int32 = v42.l0                                     │

00:00:26 #735 [Verbose] > │                 v41.[int v44] <- v44                                         │

00:00:26 #736 [Verbose] > │                 let v45 : int32 = v44 + 1                                    │

00:00:26 #737 [Verbose] > │                 v42.l0 <- v45                                                │

00:00:26 #738 [Verbose] > │                 ()                                                           │

00:00:26 #739 [Verbose] > │             let v46 : (int32 -> string) = closure3(v15, v16, v37)            │

00:00:26 #740 [Verbose] > │             let v47 : (string []) = v41 |> Array.Parallel.map v46            │

00:00:26 #741 [Verbose] > │             let v48 : int32 = v47.Length                                     │

00:00:26 #742 [Verbose] > │             let v49 : int32 = v48 - 1                                        │

00:00:26 #743 [Verbose] > │             let v50 : string = v47.[int v49]                                 │

00:00:27 #744 [Verbose] > │             let v51 : int64 = v39.ElapsedMilliseconds                        │

00:00:27 #745 [Verbose] > │             let v52 : int64 = v51 - v40                                      │

00:00:27 #746 [Verbose] > │             let v53 : string = $"Test case {v35 + 1}. {v36}. Time: {v52}  "  │

00:00:27 #747 [Verbose] > │             System.Console.WriteLine v53                                     │

00:00:27 #748 [Verbose] > │             v31.[int v34] <- struct (v50, v52)                               │

00:00:27 #749 [Verbose] > │             let v54 : uint64 = v34 + 1UL                                     │

00:00:27 #750 [Verbose] > │             v32.l0 <- v54                                                    │

00:00:27 #751 [Verbose] > │             ()                                                               │

00:00:27 #752 [Verbose] > │         let v55 : uint64 = System.Convert.ToUInt64 v31.Length                │

00:00:27 #753 [Verbose] > │         let v56 : (string []) = Array.zeroCreate<string>                     │

00:00:27 #754 [Verbose] > │ (System.Convert.ToInt32(v55))                                                │

00:00:27 #755 [Verbose] > │         let v57 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:27 #756 [Verbose] > │         while method4(v55, v57) do                                           │

00:00:27 #757 [Verbose] > │             let v59 : uint64 = v57.l0                                        │

00:00:27 #758 [Verbose] > │             let struct (v60 : string, v61 : int64) = v31.[int v59]           │

00:00:27 #759 [Verbose] > │             v56.[int v59] <- v60                                             │

00:00:27 #760 [Verbose] > │             let v62 : uint64 = v59 + 1UL                                     │

00:00:27 #761 [Verbose] > │             v57.l0 <- v62                                                    │

00:00:27 #762 [Verbose] > │             ()                                                               │

00:00:27 #763 [Verbose] > │         let v63 : uint64 = System.Convert.ToUInt64 v56.Length                │

00:00:27 #764 [Verbose] > │         let v64 : bool = v63 <= 1UL                                          │

00:00:27 #765 [Verbose] > │         if v64 then                                                          │

00:00:27 #766 [Verbose] > │             ()                                                               │

00:00:27 #767 [Verbose] > │         else                                                                 │

00:00:27 #768 [Verbose] > │             let v65 : string = v56.[int 0UL]                                 │

00:00:27 #769 [Verbose] > │             let v66 : uint64 = 0UL                                           │

00:00:27 #770 [Verbose] > │             let v67 : bool = method9(v65, v56, v66)                          │

00:00:27 #771 [Verbose] > │             if v67 then                                                      │

00:00:27 #772 [Verbose] > │                 ()                                                           │

00:00:27 #773 [Verbose] > │             else                                                             │

00:00:27 #774 [Verbose] > │                 let v68 : string = $"Challenge error: {v56}"                 │

00:00:27 #775 [Verbose] > │                 failwith<unit> v68                                           │

00:00:27 #776 [Verbose] > │         let v69 : string = $"%A{v17}"                                        │

00:00:27 #777 [Verbose] > │         let v70 : (string []) = Array.zeroCreate<string>                     │

00:00:27 #778 [Verbose] > │ (System.Convert.ToInt32(v55))                                                │

00:00:27 #779 [Verbose] > │         let v71 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:27 #780 [Verbose] > │         while method4(v55, v71) do                                           │

00:00:27 #781 [Verbose] > │             let v73 : uint64 = v71.l0                                        │

00:00:27 #782 [Verbose] > │             let struct (v74 : string, v75 : int64) = v31.[int v73]           │

00:00:27 #783 [Verbose] > │             v70.[int v73] <- v74                                             │

00:00:27 #784 [Verbose] > │             let v76 : uint64 = v73 + 1UL                                     │

00:00:27 #785 [Verbose] > │             v71.l0 <- v76                                                    │

00:00:27 #786 [Verbose] > │             ()                                                               │

00:00:27 #787 [Verbose] > │         let v77 : string = v70.[int 0UL]                                     │

00:00:27 #788 [Verbose] > │         let v78 : string = $"%A{v77}"                                        │

00:00:27 #789 [Verbose] > │         let v79 : (int64 []) = Array.zeroCreate<int64>                       │

00:00:27 #790 [Verbose] > │ (System.Convert.ToInt32(v55))                                                │

00:00:27 #791 [Verbose] > │         let v80 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:27 #792 [Verbose] > │         while method4(v55, v80) do                                           │

00:00:27 #793 [Verbose] > │             let v82 : uint64 = v80.l0                                        │

00:00:27 #794 [Verbose] > │             let struct (v83 : string, v84 : int64) = v31.[int v82]           │

00:00:27 #795 [Verbose] > │             v79.[int v82] <- v84                                             │

00:00:27 #796 [Verbose] > │             let v85 : uint64 = v82 + 1UL                                     │

00:00:27 #797 [Verbose] > │             v80.l0 <- v85                                                    │

00:00:27 #798 [Verbose] > │             ()                                                               │

00:00:27 #799 [Verbose] > │         v11.[int v14] <- struct (v69, v18, v78, v79)                         │

00:00:27 #800 [Verbose] > │         let v86 : uint64 = v14 + 1UL                                         │

00:00:27 #801 [Verbose] > │         v12.l0 <- v86                                                        │

00:00:27 #802 [Verbose] > │         ()                                                                   │

00:00:27 #803 [Verbose] > │     let v87 : uint64 = System.Convert.ToUInt64 v11.Length                    │

00:00:27 #804 [Verbose] > │     let v88 : (struct (UH2 * US0) []) = Array.zeroCreate<struct (UH2 * US0)> │

00:00:27 #805 [Verbose] > │ (System.Convert.ToInt32(v87))                                                │

00:00:27 #806 [Verbose] > │     let v89 : Mut0 = {l0 = 0UL} : Mut0                                       │

00:00:27 #807 [Verbose] > │     while method4(v87, v89) do                                               │

00:00:27 #808 [Verbose] > │         let v91 : uint64 = v89.l0                                            │

00:00:27 #809 [Verbose] > │         let struct (v92 : string, v93 : string, v94 : string, v95 : (int64 [ │

00:00:27 #810 [Verbose] > │ ])) = v11.[int v91]                                                          │

00:00:27 #811 [Verbose] > │         let v96 : uint64 = System.Convert.ToUInt64 v95.Length                │

00:00:27 #812 [Verbose] > │         let v97 : UH3 = UH3_1                                                │

00:00:27 #813 [Verbose] > │         let v98 : Mut2 = {l0 = 0UL; l1 = v97; l2 = 0L} : Mut2                │

00:00:27 #814 [Verbose] > │         while method10(v96, v98) do                                          │

00:00:27 #815 [Verbose] > │             let v100 : uint64 = v98.l0                                       │

00:00:27 #816 [Verbose] > │             let struct (v101 : UH3, v102 : int64) = v98.l1, v98.l2           │

00:00:27 #817 [Verbose] > │             let v103 : int64 = v95.[int v100]                                │

00:00:27 #818 [Verbose] > │             let v104 : int64 = v102 + 1L                                     │

00:00:27 #819 [Verbose] > │             let v105 : uint64 = v100 + 1UL                                   │

00:00:27 #820 [Verbose] > │             let v106 : UH3 = UH3_0(v102, v103, v101)                         │

00:00:27 #821 [Verbose] > │             v98.l0 <- v105                                                   │

00:00:27 #822 [Verbose] > │             v98.l1 <- v106                                                   │

00:00:27 #823 [Verbose] > │             v98.l2 <- v104                                                   │

00:00:27 #824 [Verbose] > │             ()                                                               │

00:00:27 #825 [Verbose] > │         let struct (v107 : UH3, v108 : int64) = v98.l1, v98.l2               │

00:00:27 #826 [Verbose] > │         let v109 : UH3 = UH3_1                                               │

00:00:27 #827 [Verbose] > │         let v110 : UH3 = method11(v107, v109)                                │

00:00:27 #828 [Verbose] > │         let v111 : (struct (int64 * int64) []) = method12(v110)              │

00:00:27 #829 [Verbose] > │         let v112 : int32 = v111.Length                                       │

00:00:27 #830 [Verbose] > │         let v113 : (struct (int64 * int64) []) = Array.zeroCreate<struct     │

00:00:27 #831 [Verbose] > │ (int64 * int64)> (v112)                                                      │

00:00:27 #832 [Verbose] > │         let v114 : Mut1 = {l0 = 0} : Mut1                                    │

00:00:27 #833 [Verbose] > │         while method15(v112, v114) do                                        │

00:00:27 #834 [Verbose] > │             let v116 : int32 = v114.l0                                       │

00:00:27 #835 [Verbose] > │             let struct (v117 : int64, v118 : int64) = v111.[int v116]        │

00:00:27 #836 [Verbose] > │             let v119 : int64 = v117 + 1L                                     │

00:00:27 #837 [Verbose] > │             v113.[int v116] <- struct (v119, v118)                           │

00:00:27 #838 [Verbose] > │             let v120 : int32 = v116 + 1                                      │

00:00:27 #839 [Verbose] > │             v114.l0 <- v120                                                  │

00:00:27 #840 [Verbose] > │             ()                                                               │

00:00:27 #841 [Verbose] > │         let v121 : (struct (int64 * int64) -> int64) = closure4()            │

00:00:27 #842 [Verbose] > │         let v122 : (struct (int64 * int64) []) = v113 |> Array.sortBy v121   │

00:00:27 #843 [Verbose] > │         let struct (v123 : int64, v124 : int64) = v122.[int 0]               │

00:00:27 #844 [Verbose] > │         let v125 : string = $"%A{struct (v123, v124)}"                       │

00:00:27 #845 [Verbose] > │         let v126 : bool = v92 = v94                                          │

00:00:27 #846 [Verbose] > │         let v131 : US0 =                                                     │

00:00:27 #847 [Verbose] > │             if v126 then                                                     │

00:00:27 #848 [Verbose] > │                 let v127 : System.ConsoleColor =                             │

00:00:27 #849 [Verbose] > │ System.ConsoleColor.DarkGreen                                                │

00:00:27 #850 [Verbose] > │                 US0_1(v127)                                                  │

00:00:27 #851 [Verbose] > │             else                                                             │

00:00:27 #852 [Verbose] > │                 let v129 : System.ConsoleColor = System.ConsoleColor.DarkRed │

00:00:27 #853 [Verbose] > │                 US0_1(v129)                                                  │

00:00:27 #854 [Verbose] > │         let v132 : UH2 = UH2_1                                               │

00:00:27 #855 [Verbose] > │         let v133 : UH2 = UH2_0(v125, v132)                                   │

00:00:27 #856 [Verbose] > │         let v134 : UH2 = UH2_0(v94, v133)                                    │

00:00:27 #857 [Verbose] > │         let v135 : UH2 = UH2_0(v92, v134)                                    │

00:00:27 #858 [Verbose] > │         let v136 : UH2 = UH2_0(v93, v135)                                    │

00:00:27 #859 [Verbose] > │         v88.[int v91] <- struct (v136, v131)                                 │

00:00:27 #860 [Verbose] > │         let v137 : uint64 = v91 + 1UL                                        │

00:00:27 #861 [Verbose] > │         v89.l0 <- v137                                                       │

00:00:27 #862 [Verbose] > │         ()                                                                   │

00:00:27 #863 [Verbose] > │     let v138 : string = "Input"                                              │

00:00:27 #864 [Verbose] > │     let v139 : string = "Expected"                                           │

00:00:27 #865 [Verbose] > │     let v140 : string = "Result"                                             │

00:00:27 #866 [Verbose] > │     let v141 : string = "Best"                                               │

00:00:27 #867 [Verbose] > │     let v142 : UH2 = UH2_1                                                   │

00:00:27 #868 [Verbose] > │     let v143 : UH2 = UH2_0(v141, v142)                                       │

00:00:27 #869 [Verbose] > │     let v144 : UH2 = UH2_0(v140, v143)                                       │

00:00:27 #870 [Verbose] > │     let v145 : UH2 = UH2_0(v139, v144)                                       │

00:00:27 #871 [Verbose] > │     let v146 : UH2 = UH2_0(v138, v145)                                       │

00:00:27 #872 [Verbose] > │     let v147 : US0 = US0_0                                                   │

00:00:27 #873 [Verbose] > │     let v148 : string = "---"                                                │

00:00:27 #874 [Verbose] > │     let v149 : UH2 = UH2_1                                                   │

00:00:27 #875 [Verbose] > │     let v150 : UH2 = UH2_0(v148, v149)                                       │

00:00:27 #876 [Verbose] > │     let v151 : UH2 = UH2_0(v148, v150)                                       │

00:00:27 #877 [Verbose] > │     let v152 : UH2 = UH2_0(v148, v151)                                       │

00:00:27 #878 [Verbose] > │     let v153 : UH2 = UH2_0(v148, v152)                                       │

00:00:27 #879 [Verbose] > │     let v154 : US0 = US0_0                                                   │

00:00:27 #880 [Verbose] > │     let v155 : UH4 = UH4_1                                                   │

00:00:27 #881 [Verbose] > │     let v156 : UH4 = UH4_0(v153, v154, v155)                                 │

00:00:27 #882 [Verbose] > │     let v157 : UH4 = UH4_0(v146, v147, v156)                                 │

00:00:27 #883 [Verbose] > │     let v158 : (struct (UH2 * US0) []) = method16(v157)                      │

00:00:27 #884 [Verbose] > │     let v159 : uint64 = System.Convert.ToUInt64 v158.Length                  │

00:00:27 #885 [Verbose] > │     let v160 : uint64 = System.Convert.ToUInt64 v88.Length                   │

00:00:27 #886 [Verbose] > │     let v161 : uint64 = v159 + v160                                          │

00:00:27 #887 [Verbose] > │     let v162 : (struct (UH2 * US0) []) = Array.zeroCreate<struct (UH2 *      │

00:00:27 #888 [Verbose] > │ US0)> (System.Convert.ToInt32(v161))                                         │

00:00:27 #889 [Verbose] > │     let v163 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #890 [Verbose] > │     while method4(v161, v163) do                                             │

00:00:27 #891 [Verbose] > │         let v165 : uint64 = v163.l0                                          │

00:00:27 #892 [Verbose] > │         let v166 : bool = v165 < v159                                        │

00:00:27 #893 [Verbose] > │         let struct (v172 : UH2, v173 : US0) =                                │

00:00:27 #894 [Verbose] > │             if v166 then                                                     │

00:00:27 #895 [Verbose] > │                 let struct (v167 : UH2, v168 : US0) = v158.[int v165]        │

00:00:27 #896 [Verbose] > │                 struct (v167, v168)                                          │

00:00:27 #897 [Verbose] > │             else                                                             │

00:00:27 #898 [Verbose] > │                 let v169 : uint64 = v165 - v159                              │

00:00:27 #899 [Verbose] > │                 let struct (v170 : UH2, v171 : US0) = v88.[int v169]         │

00:00:27 #900 [Verbose] > │                 struct (v170, v171)                                          │

00:00:27 #901 [Verbose] > │         v162.[int v165] <- struct (v172, v173)                               │

00:00:27 #902 [Verbose] > │         let v174 : uint64 = v165 + 1UL                                       │

00:00:27 #903 [Verbose] > │         v163.l0 <- v174                                                      │

00:00:27 #904 [Verbose] > │         ()                                                                   │

00:00:27 #905 [Verbose] > │     let v175 : uint64 = System.Convert.ToUInt64 v162.Length                  │

00:00:27 #906 [Verbose] > │     let v176 : ((string []) []) = Array.zeroCreate<(string [])>              │

00:00:27 #907 [Verbose] > │ (System.Convert.ToInt32(v175))                                               │

00:00:27 #908 [Verbose] > │     let v177 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #909 [Verbose] > │     while method4(v175, v177) do                                             │

00:00:27 #910 [Verbose] > │         let v179 : uint64 = v177.l0                                          │

00:00:27 #911 [Verbose] > │         let struct (v180 : UH2, v181 : US0) = v162.[int v179]                │

00:00:27 #912 [Verbose] > │         let v182 : (string []) = method19(v180)                              │

00:00:27 #913 [Verbose] > │         v176.[int v179] <- v182                                              │

00:00:27 #914 [Verbose] > │         let v183 : uint64 = v179 + 1UL                                       │

00:00:27 #915 [Verbose] > │         v177.l0 <- v183                                                      │

00:00:27 #916 [Verbose] > │         ()                                                                   │

00:00:27 #917 [Verbose] > │     let v184 : ((string []) []) = v176 |> Array.transpose                    │

00:00:27 #918 [Verbose] > │     let v185 : uint64 = System.Convert.ToUInt64 v184.Length                  │

00:00:27 #919 [Verbose] > │     let v186 : (int64 []) = Array.zeroCreate<int64>                          │

00:00:27 #920 [Verbose] > │ (System.Convert.ToInt32(v185))                                               │

00:00:27 #921 [Verbose] > │     let v187 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #922 [Verbose] > │     while method4(v185, v187) do                                             │

00:00:27 #923 [Verbose] > │         let v189 : uint64 = v187.l0                                          │

00:00:27 #924 [Verbose] > │         let v190 : (string []) = v184.[int v189]                             │

00:00:27 #925 [Verbose] > │         let v191 : uint64 = System.Convert.ToUInt64 v190.Length              │

00:00:27 #926 [Verbose] > │         let v192 : (int64 []) = Array.zeroCreate<int64>                      │

00:00:27 #927 [Verbose] > │ (System.Convert.ToInt32(v191))                                               │

00:00:27 #928 [Verbose] > │         let v193 : Mut0 = {l0 = 0UL} : Mut0                                  │

00:00:27 #929 [Verbose] > │         while method4(v191, v193) do                                         │

00:00:27 #930 [Verbose] > │             let v195 : uint64 = v193.l0                                      │

00:00:27 #931 [Verbose] > │             let v196 : string = v190.[int v195]                              │

00:00:27 #932 [Verbose] > │             let v197 : int64 = System.Convert.ToInt64 v196.Length            │

00:00:27 #933 [Verbose] > │             v192.[int v195] <- v197                                          │

00:00:27 #934 [Verbose] > │             let v198 : uint64 = v195 + 1UL                                   │

00:00:27 #935 [Verbose] > │             v193.l0 <- v198                                                  │

00:00:27 #936 [Verbose] > │             ()                                                               │

00:00:27 #937 [Verbose] > │         let v199 : (int64 []) = v192 |> Array.sortDescending                 │

00:00:27 #938 [Verbose] > │         let v200 : int64 option = v199 |> Array.tryItem 0                    │

00:00:27 #939 [Verbose] > │         let v201 : (int64 -> US1) = closure5()                               │

00:00:27 #940 [Verbose] > │         let v202 : US1 = US1_0                                               │

00:00:27 #941 [Verbose] > │         let v203 : US1 = v200 |> Option.map v201 |> Option.defaultValue v202 │

00:00:27 #942 [Verbose] > │         let v206 : int64 =                                                   │

00:00:27 #943 [Verbose] > │             match v203 with                                                  │

00:00:27 #944 [Verbose] > │             | US1_0 -> (* None *)                                            │

00:00:27 #945 [Verbose] > │                 0L                                                           │

00:00:27 #946 [Verbose] > │             | US1_1(v204) -> (* Some *)                                      │

00:00:27 #947 [Verbose] > │                 v204                                                         │

00:00:27 #948 [Verbose] > │         v186.[int v189] <- v206                                              │

00:00:27 #949 [Verbose] > │         let v207 : uint64 = v189 + 1UL                                       │

00:00:27 #950 [Verbose] > │         v187.l0 <- v207                                                      │

00:00:27 #951 [Verbose] > │         ()                                                                   │

00:00:27 #952 [Verbose] > │     let v208 : uint64 = System.Convert.ToUInt64 v186.Length                  │

00:00:27 #953 [Verbose] > │     let v209 : UH5 = UH5_1                                                   │

00:00:27 #954 [Verbose] > │     let v210 : Mut3 = {l0 = 0UL; l1 = v209; l2 = 0} : Mut3                   │

00:00:27 #955 [Verbose] > │     while method22(v208, v210) do                                            │

00:00:27 #956 [Verbose] > │         let v212 : uint64 = v210.l0                                          │

00:00:27 #957 [Verbose] > │         let struct (v213 : UH5, v214 : int32) = v210.l1, v210.l2             │

00:00:27 #958 [Verbose] > │         let v215 : int64 = v186.[int v212]                                   │

00:00:27 #959 [Verbose] > │         let v216 : int32 = v214 + 1                                          │

00:00:27 #960 [Verbose] > │         let v217 : uint64 = v212 + 1UL                                       │

00:00:27 #961 [Verbose] > │         let v218 : UH5 = UH5_0(v214, v215, v213)                             │

00:00:27 #962 [Verbose] > │         v210.l0 <- v217                                                      │

00:00:27 #963 [Verbose] > │         v210.l1 <- v218                                                      │

00:00:27 #964 [Verbose] > │         v210.l2 <- v216                                                      │

00:00:27 #965 [Verbose] > │         ()                                                                   │

00:00:27 #966 [Verbose] > │     let struct (v219 : UH5, v220 : int32) = v210.l1, v210.l2                 │

00:00:27 #967 [Verbose] > │     let v221 : UH5 = UH5_1                                                   │

00:00:27 #968 [Verbose] > │     let v222 : UH5 = method23(v219, v221)                                    │

00:00:27 #969 [Verbose] > │     let v223 : (struct (int32 * int64) []) = method24(v222)                  │

00:00:27 #970 [Verbose] > │     let v224 : Map<int32, int64> = v223 |> Array.map (fun (struct (a, b)) -> │

00:00:27 #971 [Verbose] > │ a, b) |> Map.ofArray                                                         │

00:00:27 #972 [Verbose] > │     let v225 : (struct ((string []) * US0) []) = Array.zeroCreate<struct     │

00:00:27 #973 [Verbose] > │ ((string []) * US0)> (System.Convert.ToInt32(v175))                          │

00:00:27 #974 [Verbose] > │     let v226 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #975 [Verbose] > │     while method4(v175, v226) do                                             │

00:00:27 #976 [Verbose] > │         let v228 : uint64 = v226.l0                                          │

00:00:27 #977 [Verbose] > │         let struct (v229 : UH2, v230 : US0) = v162.[int v228]                │

00:00:27 #978 [Verbose] > │         let v231 : UH6 = UH6_1                                               │

00:00:27 #979 [Verbose] > │         let v232 : int32 = 0                                                 │

00:00:27 #980 [Verbose] > │         let struct (v233 : UH6, v234 : int32) = method27(v229, v231, v232)   │

00:00:27 #981 [Verbose] > │         let v235 : UH6 = UH6_1                                               │

00:00:27 #982 [Verbose] > │         let v236 : UH6 = method28(v233, v235)                                │

00:00:27 #983 [Verbose] > │         let v237 : UH2 = UH2_1                                               │

00:00:27 #984 [Verbose] > │         let v238 : UH2 = method29(v224, v236, v237)                          │

00:00:27 #985 [Verbose] > │         let v239 : (string []) = method30(v238)                              │

00:00:27 #986 [Verbose] > │         v225.[int v228] <- struct (v239, v230)                               │

00:00:27 #987 [Verbose] > │         let v240 : uint64 = v228 + 1UL                                       │

00:00:27 #988 [Verbose] > │         v226.l0 <- v240                                                      │

00:00:27 #989 [Verbose] > │         ()                                                                   │

00:00:27 #990 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:27 #991 [Verbose] > │     let v241 : uint64 = System.Convert.ToUInt64 v225.Length                  │

00:00:27 #992 [Verbose] > │     let v242 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #993 [Verbose] > │     while method4(v241, v242) do                                             │

00:00:27 #994 [Verbose] > │         let v244 : uint64 = v242.l0                                          │

00:00:27 #995 [Verbose] > │         let struct (v245 : (string []), v246 : US0) = v225.[int v244]        │

00:00:27 #996 [Verbose] > │         match v246 with                                                      │

00:00:27 #997 [Verbose] > │         | US0_0 -> (* None *)                                                │

00:00:27 #998 [Verbose] > │             let mutable result = None                                        │

00:00:27 #999 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:27 #1000 [Verbose] > │             #if !WASM                                                        │

00:00:27 #1001 [Verbose] > │             ()                                                               │

00:00:27 #1002 [Verbose] > │             #else                                                            │

00:00:27 #1003 [Verbose] > │             ()                                                               │

00:00:27 #1004 [Verbose] > │             #endif                                                           │

00:00:27 #1005 [Verbose] > │             #else                                                            │

00:00:27 #1006 [Verbose] > │             System.Console.ResetColor ()                                     │

00:00:27 #1007 [Verbose] > │             ()                                                               │

00:00:27 #1008 [Verbose] > │             #endif                                                           │

00:00:27 #1009 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:27 #1010 [Verbose] > │             result |> Option.get                                             │

00:00:27 #1011 [Verbose] > │             ()                                                               │

00:00:27 #1012 [Verbose] > │         | US0_1(v247) -> (* Some *)                                          │

00:00:27 #1013 [Verbose] > │             let mutable result = None                                        │

00:00:27 #1014 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:27 #1015 [Verbose] > │             #if !WASM                                                        │

00:00:27 #1016 [Verbose] > │             ()                                                               │

00:00:27 #1017 [Verbose] > │             #else                                                            │

00:00:27 #1018 [Verbose] > │             ()                                                               │

00:00:27 #1019 [Verbose] > │             #endif                                                           │

00:00:27 #1020 [Verbose] > │             #else                                                            │

00:00:27 #1021 [Verbose] > │             System.Console.ForegroundColor <- v247                           │

00:00:27 #1022 [Verbose] > │             ()                                                               │

00:00:27 #1023 [Verbose] > │             #endif                                                           │

00:00:27 #1024 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:27 #1025 [Verbose] > │             result |> Option.get                                             │

00:00:27 #1026 [Verbose] > │             ()                                                               │

00:00:27 #1027 [Verbose] > │         let v248 : string = "\t| "                                           │

00:00:27 #1028 [Verbose] > │         let v249 : string = System.String.Join (v248, v245)                  │

00:00:27 #1029 [Verbose] > │         System.Console.WriteLine v249                                        │

00:00:27 #1030 [Verbose] > │         let mutable result = None                                            │

00:00:27 #1031 [Verbose] > │         #if FABLE_COMPILER_RUST                                              │

00:00:27 #1032 [Verbose] > │         #if !WASM                                                            │

00:00:27 #1033 [Verbose] > │         ()                                                                   │

00:00:27 #1034 [Verbose] > │         #else                                                                │

00:00:27 #1035 [Verbose] > │         ()                                                                   │

00:00:27 #1036 [Verbose] > │         #endif                                                               │

00:00:27 #1037 [Verbose] > │         #else                                                                │

00:00:27 #1038 [Verbose] > │         System.Console.ResetColor ()                                         │

00:00:27 #1039 [Verbose] > │         ()                                                                   │

00:00:27 #1040 [Verbose] > │         #endif                                                               │

00:00:27 #1041 [Verbose] > │         |> fun x -> result <- Some x                                         │

00:00:27 #1042 [Verbose] > │         result |> Option.get                                                 │

00:00:27 #1043 [Verbose] > │         let v250 : uint64 = v244 + 1UL                                       │

00:00:27 #1044 [Verbose] > │         v242.l0 <- v250                                                      │

00:00:27 #1045 [Verbose] > │         ()                                                                   │

00:00:27 #1046 [Verbose] > │     let v251 : ((float []) []) = Array.zeroCreate<(float [])>                │

00:00:27 #1047 [Verbose] > │ (System.Convert.ToInt32(v87))                                                │

00:00:27 #1048 [Verbose] > │     let v252 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #1049 [Verbose] > │     while method4(v87, v252) do                                              │

00:00:27 #1050 [Verbose] > │         let v254 : uint64 = v252.l0                                          │

00:00:27 #1051 [Verbose] > │         let struct (v255 : string, v256 : string, v257 : string, v258 :      │

00:00:27 #1052 [Verbose] > │ (int64 [])) = v11.[int v254]                                                 │

00:00:27 #1053 [Verbose] > │         let v259 : (int64 -> float) = float                                  │

00:00:27 #1054 [Verbose] > │         let v260 : uint64 = System.Convert.ToUInt64 v258.Length              │

00:00:27 #1055 [Verbose] > │         let v261 : (float []) = Array.zeroCreate<float>                      │

00:00:27 #1056 [Verbose] > │ (System.Convert.ToInt32(v260))                                               │

00:00:27 #1057 [Verbose] > │         let v262 : Mut0 = {l0 = 0UL} : Mut0                                  │

00:00:27 #1058 [Verbose] > │         while method4(v260, v262) do                                         │

00:00:27 #1059 [Verbose] > │             let v264 : uint64 = v262.l0                                      │

00:00:27 #1060 [Verbose] > │             let v265 : int64 = v258.[int v264]                               │

00:00:27 #1061 [Verbose] > │             let v266 : float = v259 v265                                     │

00:00:27 #1062 [Verbose] > │             v261.[int v264] <- v266                                          │

00:00:27 #1063 [Verbose] > │             let v267 : uint64 = v264 + 1UL                                   │

00:00:27 #1064 [Verbose] > │             v262.l0 <- v267                                                  │

00:00:27 #1065 [Verbose] > │             ()                                                               │

00:00:27 #1066 [Verbose] > │         v251.[int v254] <- v261                                              │

00:00:27 #1067 [Verbose] > │         let v268 : uint64 = v254 + 1UL                                       │

00:00:27 #1068 [Verbose] > │         v252.l0 <- v268                                                      │

00:00:27 #1069 [Verbose] > │         ()                                                                   │

00:00:27 #1070 [Verbose] > │     let v269 : ((float []) []) = v251 |> Array.transpose                     │

00:00:27 #1071 [Verbose] > │     let v270 : uint64 = System.Convert.ToUInt64 v269.Length                  │

00:00:27 #1072 [Verbose] > │     let v271 : (float []) = Array.zeroCreate<float>                          │

00:00:27 #1073 [Verbose] > │ (System.Convert.ToInt32(v270))                                               │

00:00:27 #1074 [Verbose] > │     let v272 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #1075 [Verbose] > │     while method4(v270, v272) do                                             │

00:00:27 #1076 [Verbose] > │         let v274 : uint64 = v272.l0                                          │

00:00:27 #1077 [Verbose] > │         let v275 : (float []) = v269.[int v274]                              │

00:00:27 #1078 [Verbose] > │         let v276 : float = v275 |> Array.average                             │

00:00:27 #1079 [Verbose] > │         v271.[int v274] <- v276                                              │

00:00:27 #1080 [Verbose] > │         let v277 : uint64 = v274 + 1UL                                       │

00:00:27 #1081 [Verbose] > │         v272.l0 <- v277                                                      │

00:00:27 #1082 [Verbose] > │         ()                                                                   │

00:00:27 #1083 [Verbose] > │     let v278 : (float -> int64) = int64                                      │

00:00:27 #1084 [Verbose] > │     let v279 : uint64 = System.Convert.ToUInt64 v271.Length                  │

00:00:27 #1085 [Verbose] > │     let v280 : (int64 []) = Array.zeroCreate<int64>                          │

00:00:27 #1086 [Verbose] > │ (System.Convert.ToInt32(v279))                                               │

00:00:27 #1087 [Verbose] > │     let v281 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #1088 [Verbose] > │     while method4(v279, v281) do                                             │

00:00:27 #1089 [Verbose] > │         let v283 : uint64 = v281.l0                                          │

00:00:27 #1090 [Verbose] > │         let v284 : float = v271.[int v283]                                   │

00:00:27 #1091 [Verbose] > │         let v285 : int64 = v278 v284                                         │

00:00:27 #1092 [Verbose] > │         v280.[int v283] <- v285                                              │

00:00:27 #1093 [Verbose] > │         let v286 : uint64 = v283 + 1UL                                       │

00:00:27 #1094 [Verbose] > │         v281.l0 <- v286                                                      │

00:00:27 #1095 [Verbose] > │         ()                                                                   │

00:00:27 #1096 [Verbose] > │     let v287 : uint64 = System.Convert.ToUInt64 v280.Length                  │

00:00:27 #1097 [Verbose] > │     let v288 : UH5 = UH5_1                                                   │

00:00:27 #1098 [Verbose] > │     let v289 : Mut3 = {l0 = 0UL; l1 = v288; l2 = 0} : Mut3                   │

00:00:27 #1099 [Verbose] > │     while method22(v287, v289) do                                            │

00:00:27 #1100 [Verbose] > │         let v291 : uint64 = v289.l0                                          │

00:00:27 #1101 [Verbose] > │         let struct (v292 : UH5, v293 : int32) = v289.l1, v289.l2             │

00:00:27 #1102 [Verbose] > │         let v294 : int64 = v280.[int v291]                                   │

00:00:27 #1103 [Verbose] > │         let v295 : int32 = v293 + 1                                          │

00:00:27 #1104 [Verbose] > │         let v296 : uint64 = v291 + 1UL                                       │

00:00:27 #1105 [Verbose] > │         let v297 : UH5 = UH5_0(v293, v294, v292)                             │

00:00:27 #1106 [Verbose] > │         v289.l0 <- v296                                                      │

00:00:27 #1107 [Verbose] > │         v289.l1 <- v297                                                      │

00:00:27 #1108 [Verbose] > │         v289.l2 <- v295                                                      │

00:00:27 #1109 [Verbose] > │         ()                                                                   │

00:00:27 #1110 [Verbose] > │     let struct (v298 : UH5, v299 : int32) = v289.l1, v289.l2                 │

00:00:27 #1111 [Verbose] > │     let v300 : UH5 = UH5_1                                                   │

00:00:27 #1112 [Verbose] > │     let v301 : UH5 = method23(v298, v300)                                    │

00:00:27 #1113 [Verbose] > │     let v302 : (struct (int32 * int64) []) = method33(v301)                  │

00:00:27 #1114 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:27 #1115 [Verbose] > │     let v303 : string = "Average Ranking  "                                  │

00:00:27 #1116 [Verbose] > │     System.Console.WriteLine v303                                            │

00:00:27 #1117 [Verbose] > │     let v304 : (struct (int32 * int64) -> int64) = closure6()                │

00:00:27 #1118 [Verbose] > │     let v305 : (struct (int32 * int64) []) = v302 |> Array.sortBy v304       │

00:00:27 #1119 [Verbose] > │     let v306 : uint64 = System.Convert.ToUInt64 v305.Length                  │

00:00:27 #1120 [Verbose] > │     let v307 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #1121 [Verbose] > │     while method4(v306, v307) do                                             │

00:00:27 #1122 [Verbose] > │         let v309 : uint64 = v307.l0                                          │

00:00:27 #1123 [Verbose] > │         let struct (v310 : int32, v311 : int64) = v305.[int v309]            │

00:00:27 #1124 [Verbose] > │         let v312 : string = $"Test case %d{v310 + 1}. Average Time: %A{v311} │

00:00:27 #1125 [Verbose] > │ "                                                                            │

00:00:27 #1126 [Verbose] > │         System.Console.WriteLine v312                                        │

00:00:27 #1127 [Verbose] > │         let v313 : uint64 = v309 + 1UL                                       │

00:00:27 #1128 [Verbose] > │         v307.l0 <- v313                                                      │

00:00:27 #1129 [Verbose] > │         ()                                                                   │

00:00:27 #1130 [Verbose] > │     ()                                                                       │

00:00:27 #1131 [Verbose] > │ and method0 () : unit =                                                      │

00:00:27 #1132 [Verbose] > │     let v0 : (unit -> unit) = closure0()                                     │

00:00:27 #1133 [Verbose] > │     let v1 : string = nameof v0                                              │

00:00:27 #1134 [Verbose] > │     let v2 : string = ""                                                     │

00:00:27 #1135 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:27 #1136 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:27 #1137 [Verbose] > │     let v3 : string = $"Test: {v1}"                                          │

00:00:27 #1138 [Verbose] > │     System.Console.WriteLine v3                                              │

00:00:27 #1139 [Verbose] > │     let v4 : string = "a"                                                    │

00:00:27 #1140 [Verbose] > │     let v5 : string = "b"                                                    │

00:00:27 #1141 [Verbose] > │     let v6 : UH0 = UH0_1                                                     │

00:00:27 #1142 [Verbose] > │     let v7 : UH0 = UH0_0(v5, v5, v5, v6)                                     │

00:00:27 #1143 [Verbose] > │     let v8 : UH0 = UH0_0(v4, v4, v4, v7)                                     │

00:00:27 #1144 [Verbose] > │     let v9 : (struct (string * string * string) []) = method1(v8)            │

00:00:27 #1145 [Verbose] > │     let v10 : uint64 = System.Convert.ToUInt64 v9.Length                     │

00:00:27 #1146 [Verbose] > │     let v11 : (struct (string * string * string * (int64 [])) []) =          │

00:00:27 #1147 [Verbose] > │ Array.zeroCreate<struct (string * string * string * (int64 []))>             │

00:00:27 #1148 [Verbose] > │ (System.Convert.ToInt32(v10))                                                │

00:00:27 #1149 [Verbose] > │     let v12 : Mut0 = {l0 = 0UL} : Mut0                                       │

00:00:27 #1150 [Verbose] > │     while method4(v10, v12) do                                               │

00:00:27 #1151 [Verbose] > │         let v14 : uint64 = v12.l0                                            │

00:00:27 #1152 [Verbose] > │         let struct (v15 : string, v16 : string, v17 : string) = v9.[int v14] │

00:00:27 #1153 [Verbose] > │         let v18 : string = $"%A{struct (v15, v16)}"                          │

00:00:27 #1154 [Verbose] > │         System.Console.WriteLine v2                                          │

00:00:27 #1155 [Verbose] > │         let v19 : string = $"Solution: {v18}  "                              │

00:00:27 #1156 [Verbose] > │         System.Console.WriteLine v19                                         │

00:00:27 #1157 [Verbose] > │         let v20 : int32 = 0                                                  │

00:00:27 #1158 [Verbose] > │         let v21 : string = "A"                                               │

00:00:27 #1159 [Verbose] > │         let v22 : (struct (string * string) -> string) = closure1()          │

00:00:27 #1160 [Verbose] > │         let v23 : int32 = 1                                                  │

00:00:27 #1161 [Verbose] > │         let v24 : string = "B"                                               │

00:00:27 #1162 [Verbose] > │         let v25 : (struct (string * string) -> string) = closure2()          │

00:00:27 #1163 [Verbose] > │         let v26 : UH1 = UH1_1                                                │

00:00:27 #1164 [Verbose] > │         let v27 : UH1 = UH1_0(v23, v24, v25, v26)                            │

00:00:27 #1165 [Verbose] > │         let v28 : UH1 = UH1_0(v20, v21, v22, v27)                            │

00:00:27 #1166 [Verbose] > │         let v29 : (struct (int32 * string * (struct (string * string) ->     │

00:00:27 #1167 [Verbose] > │ string)) []) = method5(v28)                                                  │

00:00:27 #1168 [Verbose] > │         let v30 : uint64 = System.Convert.ToUInt64 v29.Length                │

00:00:27 #1169 [Verbose] > │         let v31 : (struct (string * int64) []) = Array.zeroCreate<struct     │

00:00:27 #1170 [Verbose] > │ (string * int64)> (System.Convert.ToInt32(v30))                              │

00:00:27 #1171 [Verbose] > │         let v32 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:27 #1172 [Verbose] > │         while method4(v30, v32) do                                           │

00:00:27 #1173 [Verbose] > │             let v34 : uint64 = v32.l0                                        │

00:00:27 #1174 [Verbose] > │             let struct (v35 : int32, v36 : string, v37 : (struct (string *   │

00:00:27 #1175 [Verbose] > │ string) -> string)) = v29.[int v34]                                          │

00:00:27 #1176 [Verbose] > │             let mutable result = None                                        │

00:00:27 #1177 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:27 #1178 [Verbose] > │             #if !WASM                                                        │

00:00:27 #1179 [Verbose] > │             ()                                                               │

00:00:27 #1180 [Verbose] > │             #else                                                            │

00:00:27 #1181 [Verbose] > │             ()                                                               │

00:00:27 #1182 [Verbose] > │             #endif                                                           │

00:00:27 #1183 [Verbose] > │             #else                                                            │

00:00:27 #1184 [Verbose] > │             System.GC.Collect ()                                             │

00:00:27 #1185 [Verbose] > │             ()                                                               │

00:00:27 #1186 [Verbose] > │             #endif                                                           │

00:00:27 #1187 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:27 #1188 [Verbose] > │             result |> Option.get                                             │

00:00:27 #1189 [Verbose] > │             let v38 : (unit -> System.Diagnostics.Stopwatch) =               │

00:00:27 #1190 [Verbose] > │ System.Diagnostics.Stopwatch                                                 │

00:00:27 #1191 [Verbose] > │             let v39 : System.Diagnostics.Stopwatch = v38 ()                  │

00:00:27 #1192 [Verbose] > │             v39.Start ()                                                     │

00:00:27 #1193 [Verbose] > │             let v40 : int64 = v39.ElapsedMilliseconds                        │

00:00:27 #1194 [Verbose] > │             let v41 : (int32 []) = Array.zeroCreate<int32> (2000001)         │

00:00:27 #1195 [Verbose] > │             let v42 : Mut1 = {l0 = 0} : Mut1                                 │

00:00:27 #1196 [Verbose] > │             while method8(v42) do                                            │

00:00:27 #1197 [Verbose] > │                 let v44 : int32 = v42.l0                                     │

00:00:27 #1198 [Verbose] > │                 v41.[int v44] <- v44                                         │

00:00:27 #1199 [Verbose] > │                 let v45 : int32 = v44 + 1                                    │

00:00:27 #1200 [Verbose] > │                 v42.l0 <- v45                                                │

00:00:27 #1201 [Verbose] > │                 ()                                                           │

00:00:27 #1202 [Verbose] > │             let v46 : (int32 -> string) = closure3(v15, v16, v37)            │

00:00:27 #1203 [Verbose] > │             let v47 : (string []) = v41 |> Array.Parallel.map v46            │

00:00:27 #1204 [Verbose] > │             let v48 : int32 = v47.Length                                     │

00:00:27 #1205 [Verbose] > │             let v49 : int32 = v48 - 1                                        │

00:00:27 #1206 [Verbose] > │             let v50 : string = v47.[int v49]                                 │

00:00:27 #1207 [Verbose] > │             let v51 : int64 = v39.ElapsedMilliseconds                        │

00:00:27 #1208 [Verbose] > │             let v52 : int64 = v51 - v40                                      │

00:00:27 #1209 [Verbose] > │             let v53 : string = $"Test case {v35 + 1}. {v36}. Time: {v52}  "  │

00:00:27 #1210 [Verbose] > │             System.Console.WriteLine v53                                     │

00:00:27 #1211 [Verbose] > │             v31.[int v34] <- struct (v50, v52)                               │

00:00:27 #1212 [Verbose] > │             let v54 : uint64 = v34 + 1UL                                     │

00:00:27 #1213 [Verbose] > │             v32.l0 <- v54                                                    │

00:00:27 #1214 [Verbose] > │             ()                                                               │

00:00:27 #1215 [Verbose] > │         let v55 : uint64 = System.Convert.ToUInt64 v31.Length                │

00:00:27 #1216 [Verbose] > │         let v56 : (string []) = Array.zeroCreate<string>                     │

00:00:27 #1217 [Verbose] > │ (System.Convert.ToInt32(v55))                                                │

00:00:27 #1218 [Verbose] > │         let v57 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:27 #1219 [Verbose] > │         while method4(v55, v57) do                                           │

00:00:27 #1220 [Verbose] > │             let v59 : uint64 = v57.l0                                        │

00:00:27 #1221 [Verbose] > │             let struct (v60 : string, v61 : int64) = v31.[int v59]           │

00:00:27 #1222 [Verbose] > │             v56.[int v59] <- v60                                             │

00:00:27 #1223 [Verbose] > │             let v62 : uint64 = v59 + 1UL                                     │

00:00:27 #1224 [Verbose] > │             v57.l0 <- v62                                                    │

00:00:27 #1225 [Verbose] > │             ()                                                               │

00:00:27 #1226 [Verbose] > │         let v63 : uint64 = System.Convert.ToUInt64 v56.Length                │

00:00:27 #1227 [Verbose] > │         let v64 : bool = v63 <= 1UL                                          │

00:00:27 #1228 [Verbose] > │         if v64 then                                                          │

00:00:27 #1229 [Verbose] > │             ()                                                               │

00:00:27 #1230 [Verbose] > │         else                                                                 │

00:00:27 #1231 [Verbose] > │             let v65 : string = v56.[int 0UL]                                 │

00:00:27 #1232 [Verbose] > │             let v66 : uint64 = 0UL                                           │

00:00:27 #1233 [Verbose] > │             let v67 : bool = method9(v65, v56, v66)                          │

00:00:27 #1234 [Verbose] > │             if v67 then                                                      │

00:00:27 #1235 [Verbose] > │                 ()                                                           │

00:00:27 #1236 [Verbose] > │             else                                                             │

00:00:27 #1237 [Verbose] > │                 let v68 : string = $"Challenge error: {v56}"                 │

00:00:27 #1238 [Verbose] > │                 failwith<unit> v68                                           │

00:00:27 #1239 [Verbose] > │         let v69 : string = $"%A{v17}"                                        │

00:00:27 #1240 [Verbose] > │         let v70 : (string []) = Array.zeroCreate<string>                     │

00:00:27 #1241 [Verbose] > │ (System.Convert.ToInt32(v55))                                                │

00:00:27 #1242 [Verbose] > │         let v71 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:27 #1243 [Verbose] > │         while method4(v55, v71) do                                           │

00:00:27 #1244 [Verbose] > │             let v73 : uint64 = v71.l0                                        │

00:00:27 #1245 [Verbose] > │             let struct (v74 : string, v75 : int64) = v31.[int v73]           │

00:00:27 #1246 [Verbose] > │             v70.[int v73] <- v74                                             │

00:00:27 #1247 [Verbose] > │             let v76 : uint64 = v73 + 1UL                                     │

00:00:27 #1248 [Verbose] > │             v71.l0 <- v76                                                    │

00:00:27 #1249 [Verbose] > │             ()                                                               │

00:00:27 #1250 [Verbose] > │         let v77 : string = v70.[int 0UL]                                     │

00:00:27 #1251 [Verbose] > │         let v78 : string = $"%A{v77}"                                        │

00:00:27 #1252 [Verbose] > │         let v79 : (int64 []) = Array.zeroCreate<int64>                       │

00:00:27 #1253 [Verbose] > │ (System.Convert.ToInt32(v55))                                                │

00:00:27 #1254 [Verbose] > │         let v80 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:27 #1255 [Verbose] > │         while method4(v55, v80) do                                           │

00:00:27 #1256 [Verbose] > │             let v82 : uint64 = v80.l0                                        │

00:00:27 #1257 [Verbose] > │             let struct (v83 : string, v84 : int64) = v31.[int v82]           │

00:00:27 #1258 [Verbose] > │             v79.[int v82] <- v84                                             │

00:00:27 #1259 [Verbose] > │             let v85 : uint64 = v82 + 1UL                                     │

00:00:27 #1260 [Verbose] > │             v80.l0 <- v85                                                    │

00:00:27 #1261 [Verbose] > │             ()                                                               │

00:00:27 #1262 [Verbose] > │         v11.[int v14] <- struct (v69, v18, v78, v79)                         │

00:00:27 #1263 [Verbose] > │         let v86 : uint64 = v14 + 1UL                                         │

00:00:27 #1264 [Verbose] > │         v12.l0 <- v86                                                        │

00:00:27 #1265 [Verbose] > │         ()                                                                   │

00:00:27 #1266 [Verbose] > │     let v87 : uint64 = System.Convert.ToUInt64 v11.Length                    │

00:00:27 #1267 [Verbose] > │     let v88 : (struct (UH2 * US0) []) = Array.zeroCreate<struct (UH2 * US0)> │

00:00:27 #1268 [Verbose] > │ (System.Convert.ToInt32(v87))                                                │

00:00:27 #1269 [Verbose] > │     let v89 : Mut0 = {l0 = 0UL} : Mut0                                       │

00:00:27 #1270 [Verbose] > │     while method4(v87, v89) do                                               │

00:00:27 #1271 [Verbose] > │         let v91 : uint64 = v89.l0                                            │

00:00:27 #1272 [Verbose] > │         let struct (v92 : string, v93 : string, v94 : string, v95 : (int64 [ │

00:00:27 #1273 [Verbose] > │ ])) = v11.[int v91]                                                          │

00:00:27 #1274 [Verbose] > │         let v96 : uint64 = System.Convert.ToUInt64 v95.Length                │

00:00:27 #1275 [Verbose] > │         let v97 : UH3 = UH3_1                                                │

00:00:27 #1276 [Verbose] > │         let v98 : Mut2 = {l0 = 0UL; l1 = v97; l2 = 0L} : Mut2                │

00:00:27 #1277 [Verbose] > │         while method10(v96, v98) do                                          │

00:00:27 #1278 [Verbose] > │             let v100 : uint64 = v98.l0                                       │

00:00:27 #1279 [Verbose] > │             let struct (v101 : UH3, v102 : int64) = v98.l1, v98.l2           │

00:00:27 #1280 [Verbose] > │             let v103 : int64 = v95.[int v100]                                │

00:00:27 #1281 [Verbose] > │             let v104 : int64 = v102 + 1L                                     │

00:00:27 #1282 [Verbose] > │             let v105 : uint64 = v100 + 1UL                                   │

00:00:27 #1283 [Verbose] > │             let v106 : UH3 = UH3_0(v102, v103, v101)                         │

00:00:27 #1284 [Verbose] > │             v98.l0 <- v105                                                   │

00:00:27 #1285 [Verbose] > │             v98.l1 <- v106                                                   │

00:00:27 #1286 [Verbose] > │             v98.l2 <- v104                                                   │

00:00:27 #1287 [Verbose] > │             ()                                                               │

00:00:27 #1288 [Verbose] > │         let struct (v107 : UH3, v108 : int64) = v98.l1, v98.l2               │

00:00:27 #1289 [Verbose] > │         let v109 : UH3 = UH3_1                                               │

00:00:27 #1290 [Verbose] > │         let v110 : UH3 = method11(v107, v109)                                │

00:00:27 #1291 [Verbose] > │         let v111 : (struct (int64 * int64) []) = method12(v110)              │

00:00:27 #1292 [Verbose] > │         let v112 : int32 = v111.Length                                       │

00:00:27 #1293 [Verbose] > │         let v113 : (struct (int64 * int64) []) = Array.zeroCreate<struct     │

00:00:27 #1294 [Verbose] > │ (int64 * int64)> (v112)                                                      │

00:00:27 #1295 [Verbose] > │         let v114 : Mut1 = {l0 = 0} : Mut1                                    │

00:00:27 #1296 [Verbose] > │         while method15(v112, v114) do                                        │

00:00:27 #1297 [Verbose] > │             let v116 : int32 = v114.l0                                       │

00:00:27 #1298 [Verbose] > │             let struct (v117 : int64, v118 : int64) = v111.[int v116]        │

00:00:27 #1299 [Verbose] > │             let v119 : int64 = v117 + 1L                                     │

00:00:27 #1300 [Verbose] > │             v113.[int v116] <- struct (v119, v118)                           │

00:00:27 #1301 [Verbose] > │             let v120 : int32 = v116 + 1                                      │

00:00:27 #1302 [Verbose] > │             v114.l0 <- v120                                                  │

00:00:27 #1303 [Verbose] > │             ()                                                               │

00:00:27 #1304 [Verbose] > │         let v121 : (struct (int64 * int64) -> int64) = closure4()            │

00:00:27 #1305 [Verbose] > │         let v122 : (struct (int64 * int64) []) = v113 |> Array.sortBy v121   │

00:00:27 #1306 [Verbose] > │         let struct (v123 : int64, v124 : int64) = v122.[int 0]               │

00:00:27 #1307 [Verbose] > │         let v125 : string = $"%A{struct (v123, v124)}"                       │

00:00:27 #1308 [Verbose] > │         let v126 : bool = v92 = v94                                          │

00:00:27 #1309 [Verbose] > │         let v131 : US0 =                                                     │

00:00:27 #1310 [Verbose] > │             if v126 then                                                     │

00:00:27 #1311 [Verbose] > │                 let v127 : System.ConsoleColor =                             │

00:00:27 #1312 [Verbose] > │ System.ConsoleColor.DarkGreen                                                │

00:00:27 #1313 [Verbose] > │                 US0_1(v127)                                                  │

00:00:27 #1314 [Verbose] > │             else                                                             │

00:00:27 #1315 [Verbose] > │                 let v129 : System.ConsoleColor = System.ConsoleColor.DarkRed │

00:00:27 #1316 [Verbose] > │                 US0_1(v129)                                                  │

00:00:27 #1317 [Verbose] > │         let v132 : UH2 = UH2_1                                               │

00:00:27 #1318 [Verbose] > │         let v133 : UH2 = UH2_0(v125, v132)                                   │

00:00:27 #1319 [Verbose] > │         let v134 : UH2 = UH2_0(v94, v133)                                    │

00:00:27 #1320 [Verbose] > │         let v135 : UH2 = UH2_0(v92, v134)                                    │

00:00:27 #1321 [Verbose] > │         let v136 : UH2 = UH2_0(v93, v135)                                    │

00:00:27 #1322 [Verbose] > │         v88.[int v91] <- struct (v136, v131)                                 │

00:00:27 #1323 [Verbose] > │         let v137 : uint64 = v91 + 1UL                                        │

00:00:27 #1324 [Verbose] > │         v89.l0 <- v137                                                       │

00:00:27 #1325 [Verbose] > │         ()                                                                   │

00:00:27 #1326 [Verbose] > │     let v138 : string = "Input"                                              │

00:00:27 #1327 [Verbose] > │     let v139 : string = "Expected"                                           │

00:00:27 #1328 [Verbose] > │     let v140 : string = "Result"                                             │

00:00:27 #1329 [Verbose] > │     let v141 : string = "Best"                                               │

00:00:27 #1330 [Verbose] > │     let v142 : UH2 = UH2_1                                                   │

00:00:27 #1331 [Verbose] > │     let v143 : UH2 = UH2_0(v141, v142)                                       │

00:00:27 #1332 [Verbose] > │     let v144 : UH2 = UH2_0(v140, v143)                                       │

00:00:27 #1333 [Verbose] > │     let v145 : UH2 = UH2_0(v139, v144)                                       │

00:00:27 #1334 [Verbose] > │     let v146 : UH2 = UH2_0(v138, v145)                                       │

00:00:27 #1335 [Verbose] > │     let v147 : US0 = US0_0                                                   │

00:00:27 #1336 [Verbose] > │     let v148 : string = "---"                                                │

00:00:27 #1337 [Verbose] > │     let v149 : UH2 = UH2_1                                                   │

00:00:27 #1338 [Verbose] > │     let v150 : UH2 = UH2_0(v148, v149)                                       │

00:00:27 #1339 [Verbose] > │     let v151 : UH2 = UH2_0(v148, v150)                                       │

00:00:27 #1340 [Verbose] > │     let v152 : UH2 = UH2_0(v148, v151)                                       │

00:00:27 #1341 [Verbose] > │     let v153 : UH2 = UH2_0(v148, v152)                                       │

00:00:27 #1342 [Verbose] > │     let v154 : US0 = US0_0                                                   │

00:00:27 #1343 [Verbose] > │     let v155 : UH4 = UH4_1                                                   │

00:00:27 #1344 [Verbose] > │     let v156 : UH4 = UH4_0(v153, v154, v155)                                 │

00:00:27 #1345 [Verbose] > │     let v157 : UH4 = UH4_0(v146, v147, v156)                                 │

00:00:27 #1346 [Verbose] > │     let v158 : (struct (UH2 * US0) []) = method16(v157)                      │

00:00:27 #1347 [Verbose] > │     let v159 : uint64 = System.Convert.ToUInt64 v158.Length                  │

00:00:27 #1348 [Verbose] > │     let v160 : uint64 = System.Convert.ToUInt64 v88.Length                   │

00:00:27 #1349 [Verbose] > │     let v161 : uint64 = v159 + v160                                          │

00:00:27 #1350 [Verbose] > │     let v162 : (struct (UH2 * US0) []) = Array.zeroCreate<struct (UH2 *      │

00:00:27 #1351 [Verbose] > │ US0)> (System.Convert.ToInt32(v161))                                         │

00:00:27 #1352 [Verbose] > │     let v163 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #1353 [Verbose] > │     while method4(v161, v163) do                                             │

00:00:27 #1354 [Verbose] > │         let v165 : uint64 = v163.l0                                          │

00:00:27 #1355 [Verbose] > │         let v166 : bool = v165 < v159                                        │

00:00:27 #1356 [Verbose] > │         let struct (v172 : UH2, v173 : US0) =                                │

00:00:27 #1357 [Verbose] > │             if v166 then                                                     │

00:00:27 #1358 [Verbose] > │                 let struct (v167 : UH2, v168 : US0) = v158.[int v165]        │

00:00:27 #1359 [Verbose] > │                 struct (v167, v168)                                          │

00:00:27 #1360 [Verbose] > │             else                                                             │

00:00:27 #1361 [Verbose] > │                 let v169 : uint64 = v165 - v159                              │

00:00:27 #1362 [Verbose] > │                 let struct (v170 : UH2, v171 : US0) = v88.[int v169]         │

00:00:27 #1363 [Verbose] > │                 struct (v170, v171)                                          │

00:00:27 #1364 [Verbose] > │         v162.[int v165] <- struct (v172, v173)                               │

00:00:27 #1365 [Verbose] > │         let v174 : uint64 = v165 + 1UL                                       │

00:00:27 #1366 [Verbose] > │         v163.l0 <- v174                                                      │

00:00:27 #1367 [Verbose] > │         ()                                                                   │

00:00:27 #1368 [Verbose] > │     let v175 : uint64 = System.Convert.ToUInt64 v162.Length                  │

00:00:27 #1369 [Verbose] > │     let v176 : ((string []) []) = Array.zeroCreate<(string [])>              │

00:00:27 #1370 [Verbose] > │ (System.Convert.ToInt32(v175))                                               │

00:00:27 #1371 [Verbose] > │     let v177 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #1372 [Verbose] > │     while method4(v175, v177) do                                             │

00:00:27 #1373 [Verbose] > │         let v179 : uint64 = v177.l0                                          │

00:00:27 #1374 [Verbose] > │         let struct (v180 : UH2, v181 : US0) = v162.[int v179]                │

00:00:27 #1375 [Verbose] > │         let v182 : (string []) = method19(v180)                              │

00:00:27 #1376 [Verbose] > │         v176.[int v179] <- v182                                              │

00:00:27 #1377 [Verbose] > │         let v183 : uint64 = v179 + 1UL                                       │

00:00:27 #1378 [Verbose] > │         v177.l0 <- v183                                                      │

00:00:27 #1379 [Verbose] > │         ()                                                                   │

00:00:27 #1380 [Verbose] > │     let v184 : ((string []) []) = v176 |> Array.transpose                    │

00:00:27 #1381 [Verbose] > │     let v185 : uint64 = System.Convert.ToUInt64 v184.Length                  │

00:00:27 #1382 [Verbose] > │     let v186 : (int64 []) = Array.zeroCreate<int64>                          │

00:00:27 #1383 [Verbose] > │ (System.Convert.ToInt32(v185))                                               │

00:00:27 #1384 [Verbose] > │     let v187 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #1385 [Verbose] > │     while method4(v185, v187) do                                             │

00:00:27 #1386 [Verbose] > │         let v189 : uint64 = v187.l0                                          │

00:00:27 #1387 [Verbose] > │         let v190 : (string []) = v184.[int v189]                             │

00:00:27 #1388 [Verbose] > │         let v191 : uint64 = System.Convert.ToUInt64 v190.Length              │

00:00:27 #1389 [Verbose] > │         let v192 : (int64 []) = Array.zeroCreate<int64>                      │

00:00:27 #1390 [Verbose] > │ (System.Convert.ToInt32(v191))                                               │

00:00:27 #1391 [Verbose] > │         let v193 : Mut0 = {l0 = 0UL} : Mut0                                  │

00:00:27 #1392 [Verbose] > │         while method4(v191, v193) do                                         │

00:00:27 #1393 [Verbose] > │             let v195 : uint64 = v193.l0                                      │

00:00:27 #1394 [Verbose] > │             let v196 : string = v190.[int v195]                              │

00:00:27 #1395 [Verbose] > │             let v197 : int64 = System.Convert.ToInt64 v196.Length            │

00:00:27 #1396 [Verbose] > │             v192.[int v195] <- v197                                          │

00:00:27 #1397 [Verbose] > │             let v198 : uint64 = v195 + 1UL                                   │

00:00:27 #1398 [Verbose] > │             v193.l0 <- v198                                                  │

00:00:27 #1399 [Verbose] > │             ()                                                               │

00:00:27 #1400 [Verbose] > │         let v199 : (int64 []) = v192 |> Array.sortDescending                 │

00:00:27 #1401 [Verbose] > │         let v200 : int64 option = v199 |> Array.tryItem 0                    │

00:00:27 #1402 [Verbose] > │         let v201 : (int64 -> US1) = closure5()                               │

00:00:27 #1403 [Verbose] > │         let v202 : US1 = US1_0                                               │

00:00:27 #1404 [Verbose] > │         let v203 : US1 = v200 |> Option.map v201 |> Option.defaultValue v202 │

00:00:27 #1405 [Verbose] > │         let v206 : int64 =                                                   │

00:00:27 #1406 [Verbose] > │             match v203 with                                                  │

00:00:27 #1407 [Verbose] > │             | US1_0 -> (* None *)                                            │

00:00:27 #1408 [Verbose] > │                 0L                                                           │

00:00:27 #1409 [Verbose] > │             | US1_1(v204) -> (* Some *)                                      │

00:00:27 #1410 [Verbose] > │                 v204                                                         │

00:00:27 #1411 [Verbose] > │         v186.[int v189] <- v206                                              │

00:00:27 #1412 [Verbose] > │         let v207 : uint64 = v189 + 1UL                                       │

00:00:27 #1413 [Verbose] > │         v187.l0 <- v207                                                      │

00:00:27 #1414 [Verbose] > │         ()                                                                   │

00:00:27 #1415 [Verbose] > │     let v208 : uint64 = System.Convert.ToUInt64 v186.Length                  │

00:00:27 #1416 [Verbose] > │     let v209 : UH5 = UH5_1                                                   │

00:00:27 #1417 [Verbose] > │     let v210 : Mut3 = {l0 = 0UL; l1 = v209; l2 = 0} : Mut3                   │

00:00:27 #1418 [Verbose] > │     while method22(v208, v210) do                                            │

00:00:27 #1419 [Verbose] > │         let v212 : uint64 = v210.l0                                          │

00:00:27 #1420 [Verbose] > │         let struct (v213 : UH5, v214 : int32) = v210.l1, v210.l2             │

00:00:27 #1421 [Verbose] > │         let v215 : int64 = v186.[int v212]                                   │

00:00:27 #1422 [Verbose] > │         let v216 : int32 = v214 + 1                                          │

00:00:27 #1423 [Verbose] > │         let v217 : uint64 = v212 + 1UL                                       │

00:00:27 #1424 [Verbose] > │         let v218 : UH5 = UH5_0(v214, v215, v213)                             │

00:00:27 #1425 [Verbose] > │         v210.l0 <- v217                                                      │

00:00:27 #1426 [Verbose] > │         v210.l1 <- v218                                                      │

00:00:27 #1427 [Verbose] > │         v210.l2 <- v216                                                      │

00:00:27 #1428 [Verbose] > │         ()                                                                   │

00:00:27 #1429 [Verbose] > │     let struct (v219 : UH5, v220 : int32) = v210.l1, v210.l2                 │

00:00:27 #1430 [Verbose] > │     let v221 : UH5 = UH5_1                                                   │

00:00:27 #1431 [Verbose] > │     let v222 : UH5 = method23(v219, v221)                                    │

00:00:27 #1432 [Verbose] > │     let v223 : (struct (int32 * int64) []) = method24(v222)                  │

00:00:27 #1433 [Verbose] > │     let v224 : Map<int32, int64> = v223 |> Array.map (fun (struct (a, b)) -> │

00:00:27 #1434 [Verbose] > │ a, b) |> Map.ofArray                                                         │

00:00:27 #1435 [Verbose] > │     let v225 : (struct ((string []) * US0) []) = Array.zeroCreate<struct     │

00:00:27 #1436 [Verbose] > │ ((string []) * US0)> (System.Convert.ToInt32(v175))                          │

00:00:27 #1437 [Verbose] > │     let v226 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #1438 [Verbose] > │     while method4(v175, v226) do                                             │

00:00:27 #1439 [Verbose] > │         let v228 : uint64 = v226.l0                                          │

00:00:27 #1440 [Verbose] > │         let struct (v229 : UH2, v230 : US0) = v162.[int v228]                │

00:00:27 #1441 [Verbose] > │         let v231 : UH6 = UH6_1                                               │

00:00:27 #1442 [Verbose] > │         let v232 : int32 = 0                                                 │

00:00:27 #1443 [Verbose] > │         let struct (v233 : UH6, v234 : int32) = method27(v229, v231, v232)   │

00:00:27 #1444 [Verbose] > │         let v235 : UH6 = UH6_1                                               │

00:00:27 #1445 [Verbose] > │         let v236 : UH6 = method28(v233, v235)                                │

00:00:27 #1446 [Verbose] > │         let v237 : UH2 = UH2_1                                               │

00:00:27 #1447 [Verbose] > │         let v238 : UH2 = method29(v224, v236, v237)                          │

00:00:27 #1448 [Verbose] > │         let v239 : (string []) = method30(v238)                              │

00:00:27 #1449 [Verbose] > │         v225.[int v228] <- struct (v239, v230)                               │

00:00:27 #1450 [Verbose] > │         let v240 : uint64 = v228 + 1UL                                       │

00:00:27 #1451 [Verbose] > │         v226.l0 <- v240                                                      │

00:00:27 #1452 [Verbose] > │         ()                                                                   │

00:00:27 #1453 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:27 #1454 [Verbose] > │     let v241 : uint64 = System.Convert.ToUInt64 v225.Length                  │

00:00:27 #1455 [Verbose] > │     let v242 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #1456 [Verbose] > │     while method4(v241, v242) do                                             │

00:00:27 #1457 [Verbose] > │         let v244 : uint64 = v242.l0                                          │

00:00:27 #1458 [Verbose] > │         let struct (v245 : (string []), v246 : US0) = v225.[int v244]        │

00:00:27 #1459 [Verbose] > │         match v246 with                                                      │

00:00:27 #1460 [Verbose] > │         | US0_0 -> (* None *)                                                │

00:00:27 #1461 [Verbose] > │             let mutable result = None                                        │

00:00:27 #1462 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:27 #1463 [Verbose] > │             #if !WASM                                                        │

00:00:27 #1464 [Verbose] > │             ()                                                               │

00:00:27 #1465 [Verbose] > │             #else                                                            │

00:00:27 #1466 [Verbose] > │             ()                                                               │

00:00:27 #1467 [Verbose] > │             #endif                                                           │

00:00:27 #1468 [Verbose] > │             #else                                                            │

00:00:27 #1469 [Verbose] > │             System.Console.ResetColor ()                                     │

00:00:27 #1470 [Verbose] > │             ()                                                               │

00:00:27 #1471 [Verbose] > │             #endif                                                           │

00:00:27 #1472 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:27 #1473 [Verbose] > │             result |> Option.get                                             │

00:00:27 #1474 [Verbose] > │             ()                                                               │

00:00:27 #1475 [Verbose] > │         | US0_1(v247) -> (* Some *)                                          │

00:00:27 #1476 [Verbose] > │             let mutable result = None                                        │

00:00:27 #1477 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:27 #1478 [Verbose] > │             #if !WASM                                                        │

00:00:27 #1479 [Verbose] > │             ()                                                               │

00:00:27 #1480 [Verbose] > │             #else                                                            │

00:00:27 #1481 [Verbose] > │             ()                                                               │

00:00:27 #1482 [Verbose] > │             #endif                                                           │

00:00:27 #1483 [Verbose] > │             #else                                                            │

00:00:27 #1484 [Verbose] > │             System.Console.ForegroundColor <- v247                           │

00:00:27 #1485 [Verbose] > │             ()                                                               │

00:00:27 #1486 [Verbose] > │             #endif                                                           │

00:00:27 #1487 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:27 #1488 [Verbose] > │             result |> Option.get                                             │

00:00:27 #1489 [Verbose] > │             ()                                                               │

00:00:27 #1490 [Verbose] > │         let v248 : string = "\t| "                                           │

00:00:27 #1491 [Verbose] > │         let v249 : string = System.String.Join (v248, v245)                  │

00:00:27 #1492 [Verbose] > │         System.Console.WriteLine v249                                        │

00:00:27 #1493 [Verbose] > │         let mutable result = None                                            │

00:00:27 #1494 [Verbose] > │         #if FABLE_COMPILER_RUST                                              │

00:00:27 #1495 [Verbose] > │         #if !WASM                                                            │

00:00:27 #1496 [Verbose] > │         ()                                                                   │

00:00:27 #1497 [Verbose] > │         #else                                                                │

00:00:27 #1498 [Verbose] > │         ()                                                                   │

00:00:27 #1499 [Verbose] > │         #endif                                                               │

00:00:27 #1500 [Verbose] > │         #else                                                                │

00:00:27 #1501 [Verbose] > │         System.Console.ResetColor ()                                         │

00:00:27 #1502 [Verbose] > │         ()                                                                   │

00:00:27 #1503 [Verbose] > │         #endif                                                               │

00:00:27 #1504 [Verbose] > │         |> fun x -> result <- Some x                                         │

00:00:27 #1505 [Verbose] > │         result |> Option.get                                                 │

00:00:27 #1506 [Verbose] > │         let v250 : uint64 = v244 + 1UL                                       │

00:00:27 #1507 [Verbose] > │         v242.l0 <- v250                                                      │

00:00:27 #1508 [Verbose] > │         ()                                                                   │

00:00:27 #1509 [Verbose] > │     let v251 : ((float []) []) = Array.zeroCreate<(float [])>                │

00:00:27 #1510 [Verbose] > │ (System.Convert.ToInt32(v87))                                                │

00:00:27 #1511 [Verbose] > │     let v252 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #1512 [Verbose] > │     while method4(v87, v252) do                                              │

00:00:27 #1513 [Verbose] > │         let v254 : uint64 = v252.l0                                          │

00:00:27 #1514 [Verbose] > │         let struct (v255 : string, v256 : string, v257 : string, v258 :      │

00:00:27 #1515 [Verbose] > │ (int64 [])) = v11.[int v254]                                                 │

00:00:27 #1516 [Verbose] > │         let v259 : (int64 -> float) = float                                  │

00:00:27 #1517 [Verbose] > │         let v260 : uint64 = System.Convert.ToUInt64 v258.Length              │

00:00:27 #1518 [Verbose] > │         let v261 : (float []) = Array.zeroCreate<float>                      │

00:00:27 #1519 [Verbose] > │ (System.Convert.ToInt32(v260))                                               │

00:00:27 #1520 [Verbose] > │         let v262 : Mut0 = {l0 = 0UL} : Mut0                                  │

00:00:27 #1521 [Verbose] > │         while method4(v260, v262) do                                         │

00:00:27 #1522 [Verbose] > │             let v264 : uint64 = v262.l0                                      │

00:00:27 #1523 [Verbose] > │             let v265 : int64 = v258.[int v264]                               │

00:00:27 #1524 [Verbose] > │             let v266 : float = v259 v265                                     │

00:00:27 #1525 [Verbose] > │             v261.[int v264] <- v266                                          │

00:00:27 #1526 [Verbose] > │             let v267 : uint64 = v264 + 1UL                                   │

00:00:27 #1527 [Verbose] > │             v262.l0 <- v267                                                  │

00:00:27 #1528 [Verbose] > │             ()                                                               │

00:00:27 #1529 [Verbose] > │         v251.[int v254] <- v261                                              │

00:00:27 #1530 [Verbose] > │         let v268 : uint64 = v254 + 1UL                                       │

00:00:27 #1531 [Verbose] > │         v252.l0 <- v268                                                      │

00:00:27 #1532 [Verbose] > │         ()                                                                   │

00:00:27 #1533 [Verbose] > │     let v269 : ((float []) []) = v251 |> Array.transpose                     │

00:00:27 #1534 [Verbose] > │     let v270 : uint64 = System.Convert.ToUInt64 v269.Length                  │

00:00:27 #1535 [Verbose] > │     let v271 : (float []) = Array.zeroCreate<float>                          │

00:00:27 #1536 [Verbose] > │ (System.Convert.ToInt32(v270))                                               │

00:00:27 #1537 [Verbose] > │     let v272 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #1538 [Verbose] > │     while method4(v270, v272) do                                             │

00:00:27 #1539 [Verbose] > │         let v274 : uint64 = v272.l0                                          │

00:00:27 #1540 [Verbose] > │         let v275 : (float []) = v269.[int v274]                              │

00:00:27 #1541 [Verbose] > │         let v276 : float = v275 |> Array.average                             │

00:00:27 #1542 [Verbose] > │         v271.[int v274] <- v276                                              │

00:00:27 #1543 [Verbose] > │         let v277 : uint64 = v274 + 1UL                                       │

00:00:27 #1544 [Verbose] > │         v272.l0 <- v277                                                      │

00:00:27 #1545 [Verbose] > │         ()                                                                   │

00:00:27 #1546 [Verbose] > │     let v278 : (float -> int64) = int64                                      │

00:00:27 #1547 [Verbose] > │     let v279 : uint64 = System.Convert.ToUInt64 v271.Length                  │

00:00:27 #1548 [Verbose] > │     let v280 : (int64 []) = Array.zeroCreate<int64>                          │

00:00:27 #1549 [Verbose] > │ (System.Convert.ToInt32(v279))                                               │

00:00:27 #1550 [Verbose] > │     let v281 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #1551 [Verbose] > │     while method4(v279, v281) do                                             │

00:00:27 #1552 [Verbose] > │         let v283 : uint64 = v281.l0                                          │

00:00:27 #1553 [Verbose] > │         let v284 : float = v271.[int v283]                                   │

00:00:27 #1554 [Verbose] > │         let v285 : int64 = v278 v284                                         │

00:00:27 #1555 [Verbose] > │         v280.[int v283] <- v285                                              │

00:00:27 #1556 [Verbose] > │         let v286 : uint64 = v283 + 1UL                                       │

00:00:27 #1557 [Verbose] > │         v281.l0 <- v286                                                      │

00:00:27 #1558 [Verbose] > │         ()                                                                   │

00:00:27 #1559 [Verbose] > │     let v287 : uint64 = System.Convert.ToUInt64 v280.Length                  │

00:00:27 #1560 [Verbose] > │     let v288 : UH5 = UH5_1                                                   │

00:00:27 #1561 [Verbose] > │     let v289 : Mut3 = {l0 = 0UL; l1 = v288; l2 = 0} : Mut3                   │

00:00:27 #1562 [Verbose] > │     while method22(v287, v289) do                                            │

00:00:27 #1563 [Verbose] > │         let v291 : uint64 = v289.l0                                          │

00:00:27 #1564 [Verbose] > │         let struct (v292 : UH5, v293 : int32) = v289.l1, v289.l2             │

00:00:27 #1565 [Verbose] > │         let v294 : int64 = v280.[int v291]                                   │

00:00:27 #1566 [Verbose] > │         let v295 : int32 = v293 + 1                                          │

00:00:27 #1567 [Verbose] > │         let v296 : uint64 = v291 + 1UL                                       │

00:00:27 #1568 [Verbose] > │         let v297 : UH5 = UH5_0(v293, v294, v292)                             │

00:00:27 #1569 [Verbose] > │         v289.l0 <- v296                                                      │

00:00:27 #1570 [Verbose] > │         v289.l1 <- v297                                                      │

00:00:27 #1571 [Verbose] > │         v289.l2 <- v295                                                      │

00:00:27 #1572 [Verbose] > │         ()                                                                   │

00:00:27 #1573 [Verbose] > │     let struct (v298 : UH5, v299 : int32) = v289.l1, v289.l2                 │

00:00:27 #1574 [Verbose] > │     let v300 : UH5 = UH5_1                                                   │

00:00:27 #1575 [Verbose] > │     let v301 : UH5 = method23(v298, v300)                                    │

00:00:27 #1576 [Verbose] > │     let v302 : (struct (int32 * int64) []) = method33(v301)                  │

00:00:27 #1577 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:27 #1578 [Verbose] > │     let v303 : string = "Average Ranking  "                                  │

00:00:27 #1579 [Verbose] > │     System.Console.WriteLine v303                                            │

00:00:27 #1580 [Verbose] > │     let v304 : (struct (int32 * int64) -> int64) = closure6()                │

00:00:27 #1581 [Verbose] > │     let v305 : (struct (int32 * int64) []) = v302 |> Array.sortBy v304       │

00:00:27 #1582 [Verbose] > │     let v306 : uint64 = System.Convert.ToUInt64 v305.Length                  │

00:00:27 #1583 [Verbose] > │     let v307 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:27 #1584 [Verbose] > │     while method4(v306, v307) do                                             │

00:00:27 #1585 [Verbose] > │         let v309 : uint64 = v307.l0                                          │

00:00:27 #1586 [Verbose] > │         let struct (v310 : int32, v311 : int64) = v305.[int v309]            │

00:00:27 #1587 [Verbose] > │         let v312 : string = $"Test case %d{v310 + 1}. Average Time: %A{v311} │

00:00:27 #1588 [Verbose] > │ "                                                                            │

00:00:27 #1589 [Verbose] > │         System.Console.WriteLine v312                                        │

00:00:27 #1590 [Verbose] > │         let v313 : uint64 = v309 + 1UL                                       │

00:00:27 #1591 [Verbose] > │         v307.l0 <- v313                                                      │

00:00:27 #1592 [Verbose] > │         ()                                                                   │

00:00:27 #1593 [Verbose] > │     ()                                                                       │

00:00:27 #1594 [Verbose] > │ method0()                                                                    │

00:00:27 #1595 [Verbose] > │                                                                              │

00:00:27 #1596 [Verbose] > │                                                                              │

00:00:27 #1597 [Verbose] > │                                                                              │

00:00:27 #1598 [Verbose] > │ Test: v0                                                                     │

00:00:27 #1599 [Verbose] > │                                                                              │

00:00:27 #1600 [Verbose] > │ Solution: struct ("a", "a")                                                  │

00:00:27 #1601 [Verbose] > │ Test case 1. A. Time: 136                                                    │

00:00:27 #1602 [Verbose] > │ Test case 2. B. Time: 125                                                    │

00:00:27 #1603 [Verbose] > │                                                                              │

00:00:27 #1604 [Verbose] > │ Solution: struct ("b", "b")                                                  │

00:00:27 #1605 [Verbose] > │ Test case 1. A. Time: 148                                                    │

00:00:27 #1606 [Verbose] > │ Test case 2. B. Time: 123                                                    │

00:00:27 #1607 [Verbose] > │                                                                              │

00:00:27 #1608 [Verbose] > │ Input            	| Expected	| Result	| Best                                       │

00:00:27 #1609 [Verbose] > │ ---              	| ---     	| ---   	| ---                                        │

00:00:27 #1610 [Verbose] > │ struct ("a", "a")	| "a"     	| "a"   	| struct (2L, 125L)                          │

00:00:27 #1611 [Verbose] > │ struct ("b", "b")	| "b"     	| "b"   	| struct (2L, 123L)                          │

00:00:27 #1612 [Verbose] > │                                                                              │

00:00:27 #1613 [Verbose] > │ Average Ranking                                                              │

00:00:27 #1614 [Verbose] > │ Test case 2. Average Time: 124L                                              │

00:00:27 #1615 [Verbose] > │ Test case 1. Average Time: 142L                                              │

00:00:27 #1616 [Verbose] > │                                                                              │

00:00:27 #1617 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:27 #1618 [Verbose] >

00:00:27 #1619 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:27 #1620 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:27 #1621 [Verbose] > │ ## emptyTests                                                                │

00:00:27 #1622 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:27 #1623 [Verbose] >

00:00:27 #1624 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:27 #1625 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:27 #1626 [Verbose] > │ Test: Empty                                                                  │

00:00:27 #1627 [Verbose] > │                                                                              │

00:00:27 #1628 [Verbose] > │ Solution: 0                                                                  │

00:00:27 #1629 [Verbose] > │ Test case 1. A. Time: 61L                                                    │

00:00:27 #1630 [Verbose] > │                                                                              │

00:00:27 #1631 [Verbose] > │ Solution: 2                                                                  │

00:00:27 #1632 [Verbose] > │ Test case 1. A. Time: 62L                                                    │

00:00:27 #1633 [Verbose] > │                                                                              │

00:00:27 #1634 [Verbose] > │ Solution: 5                                                                  │

00:00:27 #1635 [Verbose] > │ Test case 1. A. Time: 70L                                                    │

00:00:27 #1636 [Verbose] > │                                                                              │

00:00:27 #1637 [Verbose] > │ Input   | Expected        | Result  | Best                                   │

00:00:27 #1638 [Verbose] > │ ---     | ---             | ---     | ---                                    │

00:00:27 #1639 [Verbose] > │ 0       | 0               | 0       | (1, 61)                                │

00:00:27 #1640 [Verbose] > │ 2       | 2               | 2       | (1, 62)                                │

00:00:27 #1641 [Verbose] > │ 5       | 5               | 5       | (1, 70)                                │

00:00:27 #1642 [Verbose] > │                                                                              │

00:00:27 #1643 [Verbose] > │ Averages                                                                     │

00:00:27 #1644 [Verbose] > │ Test case 1. Average Time: 64L                                               │

00:00:27 #1645 [Verbose] > │                                                                              │

00:00:27 #1646 [Verbose] > │ Ranking                                                                      │

00:00:27 #1647 [Verbose] > │ Test case 1. Average Time: 64L                                               │

00:00:27 #1648 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:27 #1649 [Verbose] >

00:00:27 #1650 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:27 #1651 [Verbose] > // // test

00:00:27 #1652 [Verbose] >

00:00:27 #1653 [Verbose] > inl get_solutions () =

00:00:27 #1654 [Verbose] >     [[

00:00:27 #1655 [Verbose] >         "A",

00:00:27 #1656 [Verbose] >         fun n =>

00:00:27 #1657 [Verbose] >             n + 1f64

00:00:27 #1658 [Verbose] >     ]]

00:00:27 #1659 [Verbose] >

00:00:27 #1660 [Verbose] > inl rec empty_1_tests () =

00:00:27 #1661 [Verbose] >     inl test_cases = [[

00:00:27 #1662 [Verbose] >         0, 1

00:00:27 #1663 [Verbose] >         2, 3

00:00:27 #1664 [Verbose] >         5, 6

00:00:27 #1665 [Verbose] >     ]]

00:00:27 #1666 [Verbose] >

00:00:27 #1667 [Verbose] >     inl solutions = get_solutions ()

00:00:27 #1668 [Verbose] >

00:00:27 #1669 [Verbose] >     // inl is_fast () = true

00:00:27 #1670 [Verbose] >

00:00:27 #1671 [Verbose] >     inl count =

00:00:27 #1672 [Verbose] >         if is_fast ()

00:00:27 #1673 [Verbose] >         then 1000i32

00:00:27 #1674 [Verbose] >         else 2000000i32

00:00:27 #1675 [Verbose] >

00:00:27 #1676 [Verbose] >     run_all (nameof empty_1_tests) count solutions test_cases

00:00:27 #1677 [Verbose] >     |> sort_result_list

00:00:27 #1678 [Verbose] >

00:00:27 #1679 [Verbose] > empty_1_tests ()

00:00:27 #1680 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-3711-1158-186276ae4d51\main.spi

00:00:34 #1681 [Verbose] >

00:00:34 #1682 [Verbose] > ╭─[ 7.00s - stdout ]───────────────────────────────────────────────────────────╮

00:00:34 #1683 [Verbose] > │ type UH0 =                                                                   │

00:00:34 #1684 [Verbose] > │     | UH0_0 of float * float * UH0                                           │

00:00:34 #1685 [Verbose] > │     | UH0_1                                                                  │

00:00:34 #1686 [Verbose] > │ and Mut0 = {mutable l0 : uint64}                                             │

00:00:34 #1687 [Verbose] > │ and UH1 =                                                                    │

00:00:34 #1688 [Verbose] > │     | UH1_0 of int32 * string * (float -> float) * UH1                       │

00:00:34 #1689 [Verbose] > │     | UH1_1                                                                  │

00:00:34 #1690 [Verbose] > │ and Mut1 = {mutable l0 : int32}                                              │

00:00:34 #1691 [Verbose] > │ and UH2 =                                                                    │

00:00:34 #1692 [Verbose] > │     | UH2_0 of string * UH2                                                  │

00:00:34 #1693 [Verbose] > │     | UH2_1                                                                  │

00:00:34 #1694 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:34 #1695 [Verbose] > │     | US0_0                                                                  │

00:00:34 #1696 [Verbose] > │     | US0_1 of f1_0 : System.ConsoleColor                                    │

00:00:34 #1697 [Verbose] > │ and UH3 =                                                                    │

00:00:34 #1698 [Verbose] > │     | UH3_0 of int64 * int64 * UH3                                           │

00:00:34 #1699 [Verbose] > │     | UH3_1                                                                  │

00:00:34 #1700 [Verbose] > │ and Mut2 = {mutable l0 : uint64; mutable l1 : UH3; mutable l2 : int64}       │

00:00:34 #1701 [Verbose] > │ and UH4 =                                                                    │

00:00:34 #1702 [Verbose] > │     | UH4_0 of UH2 * US0 * UH4                                               │

00:00:34 #1703 [Verbose] > │     | UH4_1                                                                  │

00:00:34 #1704 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:34 #1705 [Verbose] > │     | US1_0                                                                  │

00:00:34 #1706 [Verbose] > │     | US1_1 of f1_0 : int64                                                  │

00:00:34 #1707 [Verbose] > │ and UH5 =                                                                    │

00:00:34 #1708 [Verbose] > │     | UH5_0 of int32 * int64 * UH5                                           │

00:00:34 #1709 [Verbose] > │     | UH5_1                                                                  │

00:00:34 #1710 [Verbose] > │ and Mut3 = {mutable l0 : uint64; mutable l1 : UH5; mutable l2 : int32}       │

00:00:34 #1711 [Verbose] > │ and UH6 =                                                                    │

00:00:34 #1712 [Verbose] > │     | UH6_0 of int32 * string * UH6                                          │

00:00:34 #1713 [Verbose] > │     | UH6_1                                                                  │

00:00:34 #1714 [Verbose] > │ let rec method2 (v0 : UH0, v1 : uint64) : uint64 =                           │

00:00:34 #1715 [Verbose] > │     match v0 with                                                            │

00:00:34 #1716 [Verbose] > │     | UH0_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:34 #1717 [Verbose] > │         let v5 : uint64 = v1 + 1UL                                           │

00:00:34 #1718 [Verbose] > │         method2(v4, v5)                                                      │

00:00:34 #1719 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:34 #1720 [Verbose] > │         v1                                                                   │

00:00:34 #1721 [Verbose] > │ and method3 (v0 : (struct (float * float) []), v1 : UH0, v2 : uint64) :      │

00:00:34 #1722 [Verbose] > │ uint64 =                                                                     │

00:00:34 #1723 [Verbose] > │     match v1 with                                                            │

00:00:34 #1724 [Verbose] > │     | UH0_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:34 #1725 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:00:34 #1726 [Verbose] > │         let v6 : uint64 = v2 + 1UL                                           │

00:00:34 #1727 [Verbose] > │         method3(v0, v5, v6)                                                  │

00:00:34 #1728 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:34 #1729 [Verbose] > │         v2                                                                   │

00:00:34 #1730 [Verbose] > │ and method1 (v0 : UH0) : (struct (float * float) []) =                       │

00:00:34 #1731 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:00:34 #1732 [Verbose] > │     let v2 : uint64 = method2(v0, v1)                                        │

00:00:34 #1733 [Verbose] > │     let v3 : (struct (float * float) []) = Array.zeroCreate<struct (float *  │

00:00:34 #1734 [Verbose] > │ float)> (System.Convert.ToInt32(v2))                                         │

00:00:34 #1735 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:00:34 #1736 [Verbose] > │     let v5 : uint64 = method3(v3, v0, v4)                                    │

00:00:34 #1737 [Verbose] > │     v3                                                                       │

00:00:34 #1738 [Verbose] > │ and method4 (v0 : uint64, v1 : Mut0) : bool =                                │

00:00:34 #1739 [Verbose] > │     let v2 : uint64 = v1.l0                                                  │

00:00:34 #1740 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:34 #1741 [Verbose] > │     v3                                                                       │

00:00:34 #1742 [Verbose] > │ and closure1 () (v0 : float) : float =                                       │

00:00:34 #1743 [Verbose] > │     let v1 : float = v0 + 1.0                                                │

00:00:34 #1744 [Verbose] > │     v1                                                                       │

00:00:34 #1745 [Verbose] > │ and method6 (v0 : UH1, v1 : uint64) : uint64 =                               │

00:00:34 #1746 [Verbose] > │     match v0 with                                                            │

00:00:34 #1747 [Verbose] > │     | UH1_0(v2, v3, v4, v5) -> (* Cons *)                                    │

00:00:34 #1748 [Verbose] > │         let v6 : uint64 = v1 + 1UL                                           │

00:00:34 #1749 [Verbose] > │         method6(v5, v6)                                                      │

00:00:34 #1750 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:34 #1751 [Verbose] > │         v1                                                                   │

00:00:34 #1752 [Verbose] > │ and method7 (v0 : (struct (int32 * string * (float -> float)) []), v1 : UH1, │

00:00:34 #1753 [Verbose] > │ v2 : uint64) : uint64 =                                                      │

00:00:34 #1754 [Verbose] > │     match v1 with                                                            │

00:00:34 #1755 [Verbose] > │     | UH1_0(v3, v4, v5, v6) -> (* Cons *)                                    │

00:00:34 #1756 [Verbose] > │         v0.[int v2] <- struct (v3, v4, v5)                                   │

00:00:34 #1757 [Verbose] > │         let v7 : uint64 = v2 + 1UL                                           │

00:00:34 #1758 [Verbose] > │         method7(v0, v6, v7)                                                  │

00:00:34 #1759 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:34 #1760 [Verbose] > │         v2                                                                   │

00:00:34 #1761 [Verbose] > │ and method5 (v0 : UH1) : (struct (int32 * string * (float -> float)) []) =   │

00:00:34 #1762 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:00:34 #1763 [Verbose] > │     let v2 : uint64 = method6(v0, v1)                                        │

00:00:34 #1764 [Verbose] > │     let v3 : (struct (int32 * string * (float -> float)) []) =               │

00:00:34 #1765 [Verbose] > │ Array.zeroCreate<struct (int32 * string * (float -> float))>                 │

00:00:34 #1766 [Verbose] > │ (System.Convert.ToInt32(v2))                                                 │

00:00:34 #1767 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:00:34 #1768 [Verbose] > │     let v5 : uint64 = method7(v3, v0, v4)                                    │

00:00:34 #1769 [Verbose] > │     v3                                                                       │

00:00:34 #1770 [Verbose] > │ and method8 (v0 : Mut1) : bool =                                             │

00:00:34 #1771 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:34 #1772 [Verbose] > │     let v2 : bool = v1 < 2000001                                             │

00:00:34 #1773 [Verbose] > │     v2                                                                       │

00:00:34 #1774 [Verbose] > │ and closure2 (v0 : float, v1 : (float -> float)) (v2 : int32) : float =      │

00:00:34 #1775 [Verbose] > │     v1 v0                                                                    │

00:00:34 #1776 [Verbose] > │ and method9 (v0 : float, v1 : (float []), v2 : uint64) : bool =              │

00:00:34 #1777 [Verbose] > │     let v3 : uint64 = System.Convert.ToUInt64 v1.Length                      │

00:00:34 #1778 [Verbose] > │     let v4 : bool = v2 < v3                                                  │

00:00:34 #1779 [Verbose] > │     if v4 then                                                               │

00:00:34 #1780 [Verbose] > │         let v5 : float = v1.[int v2]                                         │

00:00:34 #1781 [Verbose] > │         let v6 : bool = v0 = v5                                              │

00:00:34 #1782 [Verbose] > │         if v6 then                                                           │

00:00:34 #1783 [Verbose] > │             let v7 : uint64 = v2 + 1UL                                       │

00:00:34 #1784 [Verbose] > │             method9(v0, v1, v7)                                              │

00:00:34 #1785 [Verbose] > │         else                                                                 │

00:00:34 #1786 [Verbose] > │             false                                                            │

00:00:34 #1787 [Verbose] > │     else                                                                     │

00:00:34 #1788 [Verbose] > │         true                                                                 │

00:00:34 #1789 [Verbose] > │ and method10 (v0 : uint64, v1 : Mut2) : bool =                               │

00:00:34 #1790 [Verbose] > │     let v2 : uint64 = v1.l0                                                  │

00:00:34 #1791 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:34 #1792 [Verbose] > │     v3                                                                       │

00:00:34 #1793 [Verbose] > │ and method11 (v0 : UH3, v1 : UH3) : UH3 =                                    │

00:00:34 #1794 [Verbose] > │     match v0 with                                                            │

00:00:34 #1795 [Verbose] > │     | UH3_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:34 #1796 [Verbose] > │         let v5 : UH3 = UH3_0(v2, v3, v1)                                     │

00:00:34 #1797 [Verbose] > │         method11(v4, v5)                                                     │

00:00:34 #1798 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:00:34 #1799 [Verbose] > │         v1                                                                   │

00:00:34 #1800 [Verbose] > │ and method13 (v0 : UH3, v1 : int32) : int32 =                                │

00:00:34 #1801 [Verbose] > │     match v0 with                                                            │

00:00:34 #1802 [Verbose] > │     | UH3_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:34 #1803 [Verbose] > │         let v5 : int32 = v1 + 1                                              │

00:00:34 #1804 [Verbose] > │         method13(v4, v5)                                                     │

00:00:34 #1805 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:00:34 #1806 [Verbose] > │         v1                                                                   │

00:00:34 #1807 [Verbose] > │ and method14 (v0 : (struct (int64 * int64) []), v1 : UH3, v2 : int32) :      │

00:00:34 #1808 [Verbose] > │ int32 =                                                                      │

00:00:34 #1809 [Verbose] > │     match v1 with                                                            │

00:00:34 #1810 [Verbose] > │     | UH3_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:34 #1811 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:00:34 #1812 [Verbose] > │         let v6 : int32 = v2 + 1                                              │

00:00:34 #1813 [Verbose] > │         method14(v0, v5, v6)                                                 │

00:00:34 #1814 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:00:34 #1815 [Verbose] > │         v2                                                                   │

00:00:34 #1816 [Verbose] > │ and method12 (v0 : UH3) : (struct (int64 * int64) []) =                      │

00:00:34 #1817 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:34 #1818 [Verbose] > │     let v2 : int32 = method13(v0, v1)                                        │

00:00:34 #1819 [Verbose] > │     let v3 : (struct (int64 * int64) []) = Array.zeroCreate<struct (int64 *  │

00:00:34 #1820 [Verbose] > │ int64)> (v2)                                                                 │

00:00:34 #1821 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:34 #1822 [Verbose] > │     let v5 : int32 = method14(v3, v0, v4)                                    │

00:00:34 #1823 [Verbose] > │     v3                                                                       │

00:00:34 #1824 [Verbose] > │ and method15 (v0 : int32, v1 : Mut1) : bool =                                │

00:00:34 #1825 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:34 #1826 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:34 #1827 [Verbose] > │     v3                                                                       │

00:00:34 #1828 [Verbose] > │ and closure3 () struct (v0 : int64, v1 : int64) : int64 =                    │

00:00:34 #1829 [Verbose] > │     v1                                                                       │

00:00:34 #1830 [Verbose] > │ and method17 (v0 : UH4, v1 : uint64) : uint64 =                              │

00:00:34 #1831 [Verbose] > │     match v0 with                                                            │

00:00:34 #1832 [Verbose] > │     | UH4_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:34 #1833 [Verbose] > │         let v5 : uint64 = v1 + 1UL                                           │

00:00:34 #1834 [Verbose] > │         method17(v4, v5)                                                     │

00:00:34 #1835 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:00:34 #1836 [Verbose] > │         v1                                                                   │

00:00:34 #1837 [Verbose] > │ and method18 (v0 : (struct (UH2 * US0) []), v1 : UH4, v2 : uint64) : uint64  │

00:00:34 #1838 [Verbose] > │ =                                                                            │

00:00:34 #1839 [Verbose] > │     match v1 with                                                            │

00:00:34 #1840 [Verbose] > │     | UH4_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:34 #1841 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:00:34 #1842 [Verbose] > │         let v6 : uint64 = v2 + 1UL                                           │

00:00:34 #1843 [Verbose] > │         method18(v0, v5, v6)                                                 │

00:00:34 #1844 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:00:34 #1845 [Verbose] > │         v2                                                                   │

00:00:34 #1846 [Verbose] > │ and method16 (v0 : UH4) : (struct (UH2 * US0) []) =                          │

00:00:34 #1847 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:00:34 #1848 [Verbose] > │     let v2 : uint64 = method17(v0, v1)                                       │

00:00:34 #1849 [Verbose] > │     let v3 : (struct (UH2 * US0) []) = Array.zeroCreate<struct (UH2 * US0)>  │

00:00:34 #1850 [Verbose] > │ (System.Convert.ToInt32(v2))                                                 │

00:00:34 #1851 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:00:34 #1852 [Verbose] > │     let v5 : uint64 = method18(v3, v0, v4)                                   │

00:00:34 #1853 [Verbose] > │     v3                                                                       │

00:00:34 #1854 [Verbose] > │ and method20 (v0 : UH2, v1 : uint64) : uint64 =                              │

00:00:34 #1855 [Verbose] > │     match v0 with                                                            │

00:00:34 #1856 [Verbose] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

00:00:34 #1857 [Verbose] > │         let v4 : uint64 = v1 + 1UL                                           │

00:00:34 #1858 [Verbose] > │         method20(v3, v4)                                                     │

00:00:34 #1859 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:34 #1860 [Verbose] > │         v1                                                                   │

00:00:34 #1861 [Verbose] > │ and method21 (v0 : (string []), v1 : UH2, v2 : uint64) : uint64 =            │

00:00:34 #1862 [Verbose] > │     match v1 with                                                            │

00:00:34 #1863 [Verbose] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

00:00:34 #1864 [Verbose] > │         v0.[int v2] <- v3                                                    │

00:00:34 #1865 [Verbose] > │         let v5 : uint64 = v2 + 1UL                                           │

00:00:34 #1866 [Verbose] > │         method21(v0, v4, v5)                                                 │

00:00:34 #1867 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:34 #1868 [Verbose] > │         v2                                                                   │

00:00:34 #1869 [Verbose] > │ and method19 (v0 : UH2) : (string []) =                                      │

00:00:34 #1870 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:00:34 #1871 [Verbose] > │     let v2 : uint64 = method20(v0, v1)                                       │

00:00:34 #1872 [Verbose] > │     let v3 : (string []) = Array.zeroCreate<string>                          │

00:00:34 #1873 [Verbose] > │ (System.Convert.ToInt32(v2))                                                 │

00:00:34 #1874 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:00:34 #1875 [Verbose] > │     let v5 : uint64 = method21(v3, v0, v4)                                   │

00:00:34 #1876 [Verbose] > │     v3                                                                       │

00:00:34 #1877 [Verbose] > │ and closure4 () (v0 : int64) : US1 =                                         │

00:00:34 #1878 [Verbose] > │     US1_1(v0)                                                                │

00:00:34 #1879 [Verbose] > │ and method22 (v0 : uint64, v1 : Mut3) : bool =                               │

00:00:34 #1880 [Verbose] > │     let v2 : uint64 = v1.l0                                                  │

00:00:34 #1881 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:34 #1882 [Verbose] > │     v3                                                                       │

00:00:34 #1883 [Verbose] > │ and method23 (v0 : UH5, v1 : UH5) : UH5 =                                    │

00:00:34 #1884 [Verbose] > │     match v0 with                                                            │

00:00:34 #1885 [Verbose] > │     | UH5_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:34 #1886 [Verbose] > │         let v5 : UH5 = UH5_0(v2, v3, v1)                                     │

00:00:34 #1887 [Verbose] > │         method23(v4, v5)                                                     │

00:00:34 #1888 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:00:34 #1889 [Verbose] > │         v1                                                                   │

00:00:34 #1890 [Verbose] > │ and method25 (v0 : UH5, v1 : int32) : int32 =                                │

00:00:34 #1891 [Verbose] > │     match v0 with                                                            │

00:00:34 #1892 [Verbose] > │     | UH5_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:34 #1893 [Verbose] > │         let v5 : int32 = v1 + 1                                              │

00:00:34 #1894 [Verbose] > │         method25(v4, v5)                                                     │

00:00:34 #1895 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:00:34 #1896 [Verbose] > │         v1                                                                   │

00:00:34 #1897 [Verbose] > │ and method26 (v0 : (struct (int32 * int64) []), v1 : UH5, v2 : int32) :      │

00:00:34 #1898 [Verbose] > │ int32 =                                                                      │

00:00:34 #1899 [Verbose] > │     match v1 with                                                            │

00:00:34 #1900 [Verbose] > │     | UH5_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:34 #1901 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:00:34 #1902 [Verbose] > │         let v6 : int32 = v2 + 1                                              │

00:00:34 #1903 [Verbose] > │         method26(v0, v5, v6)                                                 │

00:00:34 #1904 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:00:34 #1905 [Verbose] > │         v2                                                                   │

00:00:34 #1906 [Verbose] > │ and method24 (v0 : UH5) : (struct (int32 * int64) []) =                      │

00:00:34 #1907 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:34 #1908 [Verbose] > │     let v2 : int32 = method25(v0, v1)                                        │

00:00:34 #1909 [Verbose] > │     let v3 : (struct (int32 * int64) []) = Array.zeroCreate<struct (int32 *  │

00:00:34 #1910 [Verbose] > │ int64)> (v2)                                                                 │

00:00:34 #1911 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:34 #1912 [Verbose] > │     let v5 : int32 = method26(v3, v0, v4)                                    │

00:00:34 #1913 [Verbose] > │     v3                                                                       │

00:00:34 #1914 [Verbose] > │ and method27 (v0 : UH2, v1 : UH6, v2 : int32) : struct (UH6 * int32) =       │

00:00:34 #1915 [Verbose] > │     match v0 with                                                            │

00:00:34 #1916 [Verbose] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

00:00:34 #1917 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:00:34 #1918 [Verbose] > │         let v6 : UH6 = UH6_0(v2, v3, v1)                                     │

00:00:34 #1919 [Verbose] > │         method27(v4, v6, v5)                                                 │

00:00:34 #1920 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:34 #1921 [Verbose] > │         struct (v1, v2)                                                      │

00:00:34 #1922 [Verbose] > │ and method28 (v0 : UH6, v1 : UH6) : UH6 =                                    │

00:00:34 #1923 [Verbose] > │     match v0 with                                                            │

00:00:34 #1924 [Verbose] > │     | UH6_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:34 #1925 [Verbose] > │         let v5 : UH6 = UH6_0(v2, v3, v1)                                     │

00:00:34 #1926 [Verbose] > │         method28(v4, v5)                                                     │

00:00:34 #1927 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:00:34 #1928 [Verbose] > │         v1                                                                   │

00:00:34 #1929 [Verbose] > │ and method29 (v0 : Map<int32, int64>, v1 : UH6, v2 : UH2) : UH2 =            │

00:00:34 #1930 [Verbose] > │     match v1 with                                                            │

00:00:34 #1931 [Verbose] > │     | UH6_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:34 #1932 [Verbose] > │         let v6 : UH2 = method29(v0, v5, v2)                                  │

00:00:34 #1933 [Verbose] > │         let v7 : int64 = v0.[v3]                                             │

00:00:34 #1934 [Verbose] > │         let v8 : int32 = int32 v7                                            │

00:00:34 #1935 [Verbose] > │         let v9 : string = v4.PadRight v8                                     │

00:00:34 #1936 [Verbose] > │         UH2_0(v9, v6)                                                        │

00:00:34 #1937 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:00:34 #1938 [Verbose] > │         v2                                                                   │

00:00:34 #1939 [Verbose] > │ and method31 (v0 : UH2, v1 : int32) : int32 =                                │

00:00:34 #1940 [Verbose] > │     match v0 with                                                            │

00:00:34 #1941 [Verbose] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

00:00:34 #1942 [Verbose] > │         let v4 : int32 = v1 + 1                                              │

00:00:34 #1943 [Verbose] > │         method31(v3, v4)                                                     │

00:00:34 #1944 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:34 #1945 [Verbose] > │         v1                                                                   │

00:00:34 #1946 [Verbose] > │ and method32 (v0 : (string []), v1 : UH2, v2 : int32) : int32 =              │

00:00:34 #1947 [Verbose] > │     match v1 with                                                            │

00:00:34 #1948 [Verbose] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

00:00:34 #1949 [Verbose] > │         v0.[int v2] <- v3                                                    │

00:00:34 #1950 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:00:34 #1951 [Verbose] > │         method32(v0, v4, v5)                                                 │

00:00:34 #1952 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:34 #1953 [Verbose] > │         v2                                                                   │

00:00:34 #1954 [Verbose] > │ and method30 (v0 : UH2) : (string []) =                                      │

00:00:34 #1955 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:34 #1956 [Verbose] > │     let v2 : int32 = method31(v0, v1)                                        │

00:00:34 #1957 [Verbose] > │     let v3 : (string []) = Array.zeroCreate<string> (v2)                     │

00:00:34 #1958 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:34 #1959 [Verbose] > │     let v5 : int32 = method32(v3, v0, v4)                                    │

00:00:34 #1960 [Verbose] > │     v3                                                                       │

00:00:34 #1961 [Verbose] > │ and method34 (v0 : UH5, v1 : uint64) : uint64 =                              │

00:00:34 #1962 [Verbose] > │     match v0 with                                                            │

00:00:34 #1963 [Verbose] > │     | UH5_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:34 #1964 [Verbose] > │         let v5 : uint64 = v1 + 1UL                                           │

00:00:34 #1965 [Verbose] > │         method34(v4, v5)                                                     │

00:00:34 #1966 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:00:34 #1967 [Verbose] > │         v1                                                                   │

00:00:34 #1968 [Verbose] > │ and method35 (v0 : (struct (int32 * int64) []), v1 : UH5, v2 : uint64) :     │

00:00:34 #1969 [Verbose] > │ uint64 =                                                                     │

00:00:34 #1970 [Verbose] > │     match v1 with                                                            │

00:00:34 #1971 [Verbose] > │     | UH5_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:34 #1972 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:00:34 #1973 [Verbose] > │         let v6 : uint64 = v2 + 1UL                                           │

00:00:34 #1974 [Verbose] > │         method35(v0, v5, v6)                                                 │

00:00:34 #1975 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:00:34 #1976 [Verbose] > │         v2                                                                   │

00:00:34 #1977 [Verbose] > │ and method33 (v0 : UH5) : (struct (int32 * int64) []) =                      │

00:00:34 #1978 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:00:34 #1979 [Verbose] > │     let v2 : uint64 = method34(v0, v1)                                       │

00:00:34 #1980 [Verbose] > │     let v3 : (struct (int32 * int64) []) = Array.zeroCreate<struct (int32 *  │

00:00:34 #1981 [Verbose] > │ int64)> (System.Convert.ToInt32(v2))                                         │

00:00:34 #1982 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:00:34 #1983 [Verbose] > │     let v5 : uint64 = method35(v3, v0, v4)                                   │

00:00:34 #1984 [Verbose] > │     v3                                                                       │

00:00:34 #1985 [Verbose] > │ and closure5 () struct (v0 : int32, v1 : int64) : int64 =                    │

00:00:34 #1986 [Verbose] > │     v1                                                                       │

00:00:34 #1987 [Verbose] > │ and closure0 () () : unit =                                                  │

00:00:34 #1988 [Verbose] > │     let v0 : (unit -> unit) = closure0()                                     │

00:00:34 #1989 [Verbose] > │     let v1 : string = nameof v0                                              │

00:00:34 #1990 [Verbose] > │     let v2 : string = ""                                                     │

00:00:34 #1991 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:34 #1992 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:34 #1993 [Verbose] > │     let v3 : string = $"Test: {v1}"                                          │

00:00:34 #1994 [Verbose] > │     System.Console.WriteLine v3                                              │

00:00:34 #1995 [Verbose] > │     let v4 : float = 0.0                                                     │

00:00:34 #1996 [Verbose] > │     let v5 : float = 1.0                                                     │

00:00:34 #1997 [Verbose] > │     let v6 : float = 2.0                                                     │

00:00:34 #1998 [Verbose] > │     let v7 : float = 3.0                                                     │

00:00:34 #1999 [Verbose] > │     let v8 : float = 5.0                                                     │

00:00:34 #2000 [Verbose] > │     let v9 : float = 6.0                                                     │

00:00:34 #2001 [Verbose] > │     let v10 : UH0 = UH0_1                                                    │

00:00:34 #2002 [Verbose] > │     let v11 : UH0 = UH0_0(v8, v9, v10)                                       │

00:00:34 #2003 [Verbose] > │     let v12 : UH0 = UH0_0(v6, v7, v11)                                       │

00:00:34 #2004 [Verbose] > │     let v13 : UH0 = UH0_0(v4, v5, v12)                                       │

00:00:34 #2005 [Verbose] > │     let v14 : (struct (float * float) []) = method1(v13)                     │

00:00:34 #2006 [Verbose] > │     let v15 : uint64 = System.Convert.ToUInt64 v14.Length                    │

00:00:34 #2007 [Verbose] > │     let v16 : (struct (string * string * string * (int64 [])) []) =          │

00:00:34 #2008 [Verbose] > │ Array.zeroCreate<struct (string * string * string * (int64 []))>             │

00:00:34 #2009 [Verbose] > │ (System.Convert.ToInt32(v15))                                                │

00:00:34 #2010 [Verbose] > │     let v17 : Mut0 = {l0 = 0UL} : Mut0                                       │

00:00:34 #2011 [Verbose] > │     while method4(v15, v17) do                                               │

00:00:34 #2012 [Verbose] > │         let v19 : uint64 = v17.l0                                            │

00:00:34 #2013 [Verbose] > │         let struct (v20 : float, v21 : float) = v14.[int v19]                │

00:00:34 #2014 [Verbose] > │         let v22 : string = $"%A{v20}"                                        │

00:00:34 #2015 [Verbose] > │         System.Console.WriteLine v2                                          │

00:00:34 #2016 [Verbose] > │         let v23 : string = $"Solution: {v22}  "                              │

00:00:34 #2017 [Verbose] > │         System.Console.WriteLine v23                                         │

00:00:34 #2018 [Verbose] > │         let v24 : int32 = 0                                                  │

00:00:34 #2019 [Verbose] > │         let v25 : string = "A"                                               │

00:00:34 #2020 [Verbose] > │         let v26 : (float -> float) = closure1()                              │

00:00:34 #2021 [Verbose] > │         let v27 : UH1 = UH1_1                                                │

00:00:34 #2022 [Verbose] > │         let v28 : UH1 = UH1_0(v24, v25, v26, v27)                            │

00:00:34 #2023 [Verbose] > │         let v29 : (struct (int32 * string * (float -> float)) []) =          │

00:00:34 #2024 [Verbose] > │ method5(v28)                                                                 │

00:00:34 #2025 [Verbose] > │         let v30 : uint64 = System.Convert.ToUInt64 v29.Length                │

00:00:34 #2026 [Verbose] > │         let v31 : (struct (float * int64) []) = Array.zeroCreate<struct      │

00:00:34 #2027 [Verbose] > │ (float * int64)> (System.Convert.ToInt32(v30))                               │

00:00:34 #2028 [Verbose] > │         let v32 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:34 #2029 [Verbose] > │         while method4(v30, v32) do                                           │

00:00:34 #2030 [Verbose] > │             let v34 : uint64 = v32.l0                                        │

00:00:34 #2031 [Verbose] > │             let struct (v35 : int32, v36 : string, v37 : (float -> float)) = │

00:00:34 #2032 [Verbose] > │ v29.[int v34]                                                                │

00:00:34 #2033 [Verbose] > │             let mutable result = None                                        │

00:00:34 #2034 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:34 #2035 [Verbose] > │             #if !WASM                                                        │

00:00:34 #2036 [Verbose] > │             ()                                                               │

00:00:34 #2037 [Verbose] > │             #else                                                            │

00:00:34 #2038 [Verbose] > │             ()                                                               │

00:00:34 #2039 [Verbose] > │             #endif                                                           │

00:00:34 #2040 [Verbose] > │             #else                                                            │

00:00:34 #2041 [Verbose] > │             System.GC.Collect ()                                             │

00:00:34 #2042 [Verbose] > │             ()                                                               │

00:00:34 #2043 [Verbose] > │             #endif                                                           │

00:00:34 #2044 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:34 #2045 [Verbose] > │             result |> Option.get                                             │

00:00:34 #2046 [Verbose] > │             let v38 : (unit -> System.Diagnostics.Stopwatch) =               │

00:00:34 #2047 [Verbose] > │ System.Diagnostics.Stopwatch                                                 │

00:00:34 #2048 [Verbose] > │             let v39 : System.Diagnostics.Stopwatch = v38 ()                  │

00:00:34 #2049 [Verbose] > │             v39.Start ()                                                     │

00:00:34 #2050 [Verbose] > │             let v40 : int64 = v39.ElapsedMilliseconds                        │

00:00:34 #2051 [Verbose] > │             let v41 : (int32 []) = Array.zeroCreate<int32> (2000001)         │

00:00:34 #2052 [Verbose] > │             let v42 : Mut1 = {l0 = 0} : Mut1                                 │

00:00:34 #2053 [Verbose] > │             while method8(v42) do                                            │

00:00:34 #2054 [Verbose] > │                 let v44 : int32 = v42.l0                                     │

00:00:34 #2055 [Verbose] > │                 v41.[int v44] <- v44                                         │

00:00:34 #2056 [Verbose] > │                 let v45 : int32 = v44 + 1                                    │

00:00:34 #2057 [Verbose] > │                 v42.l0 <- v45                                                │

00:00:34 #2058 [Verbose] > │                 ()                                                           │

00:00:34 #2059 [Verbose] > │             let v46 : (int32 -> float) = closure2(v20, v37)                  │

00:00:34 #2060 [Verbose] > │             let v47 : (float []) = v41 |> Array.Parallel.map v46             │

00:00:34 #2061 [Verbose] > │             let v48 : int32 = v47.Length                                     │

00:00:34 #2062 [Verbose] > │             let v49 : int32 = v48 - 1                                        │

00:00:34 #2063 [Verbose] > │             let v50 : float = v47.[int v49]                                  │

00:00:34 #2064 [Verbose] > │             let v51 : int64 = v39.ElapsedMilliseconds                        │

00:00:34 #2065 [Verbose] > │             let v52 : int64 = v51 - v40                                      │

00:00:34 #2066 [Verbose] > │             let v53 : string = $"Test case {v35 + 1}. {v36}. Time: {v52}  "  │

00:00:34 #2067 [Verbose] > │             System.Console.WriteLine v53                                     │

00:00:34 #2068 [Verbose] > │             v31.[int v34] <- struct (v50, v52)                               │

00:00:34 #2069 [Verbose] > │             let v54 : uint64 = v34 + 1UL                                     │

00:00:34 #2070 [Verbose] > │             v32.l0 <- v54                                                    │

00:00:34 #2071 [Verbose] > │             ()                                                               │

00:00:34 #2072 [Verbose] > │         let v55 : uint64 = System.Convert.ToUInt64 v31.Length                │

00:00:34 #2073 [Verbose] > │         let v56 : (float []) = Array.zeroCreate<float>                       │

00:00:34 #2074 [Verbose] > │ (System.Convert.ToInt32(v55))                                                │

00:00:34 #2075 [Verbose] > │         let v57 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:34 #2076 [Verbose] > │         while method4(v55, v57) do                                           │

00:00:34 #2077 [Verbose] > │             let v59 : uint64 = v57.l0                                        │

00:00:34 #2078 [Verbose] > │             let struct (v60 : float, v61 : int64) = v31.[int v59]            │

00:00:34 #2079 [Verbose] > │             v56.[int v59] <- v60                                             │

00:00:34 #2080 [Verbose] > │             let v62 : uint64 = v59 + 1UL                                     │

00:00:34 #2081 [Verbose] > │             v57.l0 <- v62                                                    │

00:00:34 #2082 [Verbose] > │             ()                                                               │

00:00:34 #2083 [Verbose] > │         let v63 : uint64 = System.Convert.ToUInt64 v56.Length                │

00:00:34 #2084 [Verbose] > │         let v64 : bool = v63 <= 1UL                                          │

00:00:34 #2085 [Verbose] > │         if v64 then                                                          │

00:00:34 #2086 [Verbose] > │             ()                                                               │

00:00:34 #2087 [Verbose] > │         else                                                                 │

00:00:34 #2088 [Verbose] > │             let v65 : float = v56.[int 0UL]                                  │

00:00:34 #2089 [Verbose] > │             let v66 : uint64 = 0UL                                           │

00:00:34 #2090 [Verbose] > │             let v67 : bool = method9(v65, v56, v66)                          │

00:00:34 #2091 [Verbose] > │             if v67 then                                                      │

00:00:34 #2092 [Verbose] > │                 ()                                                           │

00:00:34 #2093 [Verbose] > │             else                                                             │

00:00:34 #2094 [Verbose] > │                 let v68 : string = $"Challenge error: {v56}"                 │

00:00:34 #2095 [Verbose] > │                 failwith<unit> v68                                           │

00:00:34 #2096 [Verbose] > │         let v69 : string = $"%A{v21}"                                        │

00:00:34 #2097 [Verbose] > │         let v70 : (float []) = Array.zeroCreate<float>                       │

00:00:34 #2098 [Verbose] > │ (System.Convert.ToInt32(v55))                                                │

00:00:34 #2099 [Verbose] > │         let v71 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:34 #2100 [Verbose] > │         while method4(v55, v71) do                                           │

00:00:34 #2101 [Verbose] > │             let v73 : uint64 = v71.l0                                        │

00:00:34 #2102 [Verbose] > │             let struct (v74 : float, v75 : int64) = v31.[int v73]            │

00:00:34 #2103 [Verbose] > │             v70.[int v73] <- v74                                             │

00:00:34 #2104 [Verbose] > │             let v76 : uint64 = v73 + 1UL                                     │

00:00:34 #2105 [Verbose] > │             v71.l0 <- v76                                                    │

00:00:34 #2106 [Verbose] > │             ()                                                               │

00:00:34 #2107 [Verbose] > │         let v77 : float = v70.[int 0UL]                                      │

00:00:34 #2108 [Verbose] > │         let v78 : string = $"%A{v77}"                                        │

00:00:34 #2109 [Verbose] > │         let v79 : (int64 []) = Array.zeroCreate<int64>                       │

00:00:34 #2110 [Verbose] > │ (System.Convert.ToInt32(v55))                                                │

00:00:34 #2111 [Verbose] > │         let v80 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:34 #2112 [Verbose] > │         while method4(v55, v80) do                                           │

00:00:34 #2113 [Verbose] > │             let v82 : uint64 = v80.l0                                        │

00:00:34 #2114 [Verbose] > │             let struct (v83 : float, v84 : int64) = v31.[int v82]            │

00:00:34 #2115 [Verbose] > │             v79.[int v82] <- v84                                             │

00:00:34 #2116 [Verbose] > │             let v85 : uint64 = v82 + 1UL                                     │

00:00:34 #2117 [Verbose] > │             v80.l0 <- v85                                                    │

00:00:34 #2118 [Verbose] > │             ()                                                               │

00:00:34 #2119 [Verbose] > │         v16.[int v19] <- struct (v69, v22, v78, v79)                         │

00:00:34 #2120 [Verbose] > │         let v86 : uint64 = v19 + 1UL                                         │

00:00:34 #2121 [Verbose] > │         v17.l0 <- v86                                                        │

00:00:34 #2122 [Verbose] > │         ()                                                                   │

00:00:34 #2123 [Verbose] > │     let v87 : uint64 = System.Convert.ToUInt64 v16.Length                    │

00:00:34 #2124 [Verbose] > │     let v88 : (struct (UH2 * US0) []) = Array.zeroCreate<struct (UH2 * US0)> │

00:00:34 #2125 [Verbose] > │ (System.Convert.ToInt32(v87))                                                │

00:00:34 #2126 [Verbose] > │     let v89 : Mut0 = {l0 = 0UL} : Mut0                                       │

00:00:34 #2127 [Verbose] > │     while method4(v87, v89) do                                               │

00:00:34 #2128 [Verbose] > │         let v91 : uint64 = v89.l0                                            │

00:00:34 #2129 [Verbose] > │         let struct (v92 : string, v93 : string, v94 : string, v95 : (int64 [ │

00:00:34 #2130 [Verbose] > │ ])) = v16.[int v91]                                                          │

00:00:34 #2131 [Verbose] > │         let v96 : uint64 = System.Convert.ToUInt64 v95.Length                │

00:00:34 #2132 [Verbose] > │         let v97 : UH3 = UH3_1                                                │

00:00:34 #2133 [Verbose] > │         let v98 : Mut2 = {l0 = 0UL; l1 = v97; l2 = 0L} : Mut2                │

00:00:34 #2134 [Verbose] > │         while method10(v96, v98) do                                          │

00:00:34 #2135 [Verbose] > │             let v100 : uint64 = v98.l0                                       │

00:00:34 #2136 [Verbose] > │             let struct (v101 : UH3, v102 : int64) = v98.l1, v98.l2           │

00:00:34 #2137 [Verbose] > │             let v103 : int64 = v95.[int v100]                                │

00:00:34 #2138 [Verbose] > │             let v104 : int64 = v102 + 1L                                     │

00:00:34 #2139 [Verbose] > │             let v105 : uint64 = v100 + 1UL                                   │

00:00:34 #2140 [Verbose] > │             let v106 : UH3 = UH3_0(v102, v103, v101)                         │

00:00:34 #2141 [Verbose] > │             v98.l0 <- v105                                                   │

00:00:34 #2142 [Verbose] > │             v98.l1 <- v106                                                   │

00:00:34 #2143 [Verbose] > │             v98.l2 <- v104                                                   │

00:00:34 #2144 [Verbose] > │             ()                                                               │

00:00:34 #2145 [Verbose] > │         let struct (v107 : UH3, v108 : int64) = v98.l1, v98.l2               │

00:00:34 #2146 [Verbose] > │         let v109 : UH3 = UH3_1                                               │

00:00:34 #2147 [Verbose] > │         let v110 : UH3 = method11(v107, v109)                                │

00:00:34 #2148 [Verbose] > │         let v111 : (struct (int64 * int64) []) = method12(v110)              │

00:00:34 #2149 [Verbose] > │         let v112 : int32 = v111.Length                                       │

00:00:34 #2150 [Verbose] > │         let v113 : (struct (int64 * int64) []) = Array.zeroCreate<struct     │

00:00:34 #2151 [Verbose] > │ (int64 * int64)> (v112)                                                      │

00:00:34 #2152 [Verbose] > │         let v114 : Mut1 = {l0 = 0} : Mut1                                    │

00:00:34 #2153 [Verbose] > │         while method15(v112, v114) do                                        │

00:00:34 #2154 [Verbose] > │             let v116 : int32 = v114.l0                                       │

00:00:34 #2155 [Verbose] > │             let struct (v117 : int64, v118 : int64) = v111.[int v116]        │

00:00:34 #2156 [Verbose] > │             let v119 : int64 = v117 + 1L                                     │

00:00:34 #2157 [Verbose] > │             v113.[int v116] <- struct (v119, v118)                           │

00:00:34 #2158 [Verbose] > │             let v120 : int32 = v116 + 1                                      │

00:00:34 #2159 [Verbose] > │             v114.l0 <- v120                                                  │

00:00:34 #2160 [Verbose] > │             ()                                                               │

00:00:34 #2161 [Verbose] > │         let v121 : (struct (int64 * int64) -> int64) = closure3()            │

00:00:34 #2162 [Verbose] > │         let v122 : (struct (int64 * int64) []) = v113 |> Array.sortBy v121   │

00:00:34 #2163 [Verbose] > │         let struct (v123 : int64, v124 : int64) = v122.[int 0]               │

00:00:34 #2164 [Verbose] > │         let v125 : string = $"%A{struct (v123, v124)}"                       │

00:00:34 #2165 [Verbose] > │         let v126 : bool = v92 = v94                                          │

00:00:34 #2166 [Verbose] > │         let v131 : US0 =                                                     │

00:00:34 #2167 [Verbose] > │             if v126 then                                                     │

00:00:34 #2168 [Verbose] > │                 let v127 : System.ConsoleColor =                             │

00:00:34 #2169 [Verbose] > │ System.ConsoleColor.DarkGreen                                                │

00:00:34 #2170 [Verbose] > │                 US0_1(v127)                                                  │

00:00:34 #2171 [Verbose] > │             else                                                             │

00:00:34 #2172 [Verbose] > │                 let v129 : System.ConsoleColor = System.ConsoleColor.DarkRed │

00:00:34 #2173 [Verbose] > │                 US0_1(v129)                                                  │

00:00:34 #2174 [Verbose] > │         let v132 : UH2 = UH2_1                                               │

00:00:34 #2175 [Verbose] > │         let v133 : UH2 = UH2_0(v125, v132)                                   │

00:00:34 #2176 [Verbose] > │         let v134 : UH2 = UH2_0(v94, v133)                                    │

00:00:34 #2177 [Verbose] > │         let v135 : UH2 = UH2_0(v92, v134)                                    │

00:00:34 #2178 [Verbose] > │         let v136 : UH2 = UH2_0(v93, v135)                                    │

00:00:34 #2179 [Verbose] > │         v88.[int v91] <- struct (v136, v131)                                 │

00:00:34 #2180 [Verbose] > │         let v137 : uint64 = v91 + 1UL                                        │

00:00:34 #2181 [Verbose] > │         v89.l0 <- v137                                                       │

00:00:34 #2182 [Verbose] > │         ()                                                                   │

00:00:34 #2183 [Verbose] > │     let v138 : string = "Input"                                              │

00:00:34 #2184 [Verbose] > │     let v139 : string = "Expected"                                           │

00:00:34 #2185 [Verbose] > │     let v140 : string = "Result"                                             │

00:00:34 #2186 [Verbose] > │     let v141 : string = "Best"                                               │

00:00:34 #2187 [Verbose] > │     let v142 : UH2 = UH2_1                                                   │

00:00:34 #2188 [Verbose] > │     let v143 : UH2 = UH2_0(v141, v142)                                       │

00:00:34 #2189 [Verbose] > │     let v144 : UH2 = UH2_0(v140, v143)                                       │

00:00:34 #2190 [Verbose] > │     let v145 : UH2 = UH2_0(v139, v144)                                       │

00:00:34 #2191 [Verbose] > │     let v146 : UH2 = UH2_0(v138, v145)                                       │

00:00:34 #2192 [Verbose] > │     let v147 : US0 = US0_0                                                   │

00:00:34 #2193 [Verbose] > │     let v148 : string = "---"                                                │

00:00:34 #2194 [Verbose] > │     let v149 : UH2 = UH2_1                                                   │

00:00:34 #2195 [Verbose] > │     let v150 : UH2 = UH2_0(v148, v149)                                       │

00:00:34 #2196 [Verbose] > │     let v151 : UH2 = UH2_0(v148, v150)                                       │

00:00:34 #2197 [Verbose] > │     let v152 : UH2 = UH2_0(v148, v151)                                       │

00:00:34 #2198 [Verbose] > │     let v153 : UH2 = UH2_0(v148, v152)                                       │

00:00:34 #2199 [Verbose] > │     let v154 : US0 = US0_0                                                   │

00:00:34 #2200 [Verbose] > │     let v155 : UH4 = UH4_1                                                   │

00:00:34 #2201 [Verbose] > │     let v156 : UH4 = UH4_0(v153, v154, v155)                                 │

00:00:34 #2202 [Verbose] > │     let v157 : UH4 = UH4_0(v146, v147, v156)                                 │

00:00:34 #2203 [Verbose] > │     let v158 : (struct (UH2 * US0) []) = method16(v157)                      │

00:00:34 #2204 [Verbose] > │     let v159 : uint64 = System.Convert.ToUInt64 v158.Length                  │

00:00:34 #2205 [Verbose] > │     let v160 : uint64 = System.Convert.ToUInt64 v88.Length                   │

00:00:34 #2206 [Verbose] > │     let v161 : uint64 = v159 + v160                                          │

00:00:34 #2207 [Verbose] > │     let v162 : (struct (UH2 * US0) []) = Array.zeroCreate<struct (UH2 *      │

00:00:34 #2208 [Verbose] > │ US0)> (System.Convert.ToInt32(v161))                                         │

00:00:34 #2209 [Verbose] > │     let v163 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:34 #2210 [Verbose] > │     while method4(v161, v163) do                                             │

00:00:34 #2211 [Verbose] > │         let v165 : uint64 = v163.l0                                          │

00:00:34 #2212 [Verbose] > │         let v166 : bool = v165 < v159                                        │

00:00:34 #2213 [Verbose] > │         let struct (v172 : UH2, v173 : US0) =                                │

00:00:34 #2214 [Verbose] > │             if v166 then                                                     │

00:00:34 #2215 [Verbose] > │                 let struct (v167 : UH2, v168 : US0) = v158.[int v165]        │

00:00:34 #2216 [Verbose] > │                 struct (v167, v168)                                          │

00:00:34 #2217 [Verbose] > │             else                                                             │

00:00:34 #2218 [Verbose] > │                 let v169 : uint64 = v165 - v159                              │

00:00:34 #2219 [Verbose] > │                 let struct (v170 : UH2, v171 : US0) = v88.[int v169]         │

00:00:34 #2220 [Verbose] > │                 struct (v170, v171)                                          │

00:00:34 #2221 [Verbose] > │         v162.[int v165] <- struct (v172, v173)                               │

00:00:34 #2222 [Verbose] > │         let v174 : uint64 = v165 + 1UL                                       │

00:00:34 #2223 [Verbose] > │         v163.l0 <- v174                                                      │

00:00:34 #2224 [Verbose] > │         ()                                                                   │

00:00:34 #2225 [Verbose] > │     let v175 : uint64 = System.Convert.ToUInt64 v162.Length                  │

00:00:34 #2226 [Verbose] > │     let v176 : ((string []) []) = Array.zeroCreate<(string [])>              │

00:00:34 #2227 [Verbose] > │ (System.Convert.ToInt32(v175))                                               │

00:00:34 #2228 [Verbose] > │     let v177 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:34 #2229 [Verbose] > │     while method4(v175, v177) do                                             │

00:00:34 #2230 [Verbose] > │         let v179 : uint64 = v177.l0                                          │

00:00:34 #2231 [Verbose] > │         let struct (v180 : UH2, v181 : US0) = v162.[int v179]                │

00:00:34 #2232 [Verbose] > │         let v182 : (string []) = method19(v180)                              │

00:00:34 #2233 [Verbose] > │         v176.[int v179] <- v182                                              │

00:00:34 #2234 [Verbose] > │         let v183 : uint64 = v179 + 1UL                                       │

00:00:34 #2235 [Verbose] > │         v177.l0 <- v183                                                      │

00:00:34 #2236 [Verbose] > │         ()                                                                   │

00:00:34 #2237 [Verbose] > │     let v184 : ((string []) []) = v176 |> Array.transpose                    │

00:00:34 #2238 [Verbose] > │     let v185 : uint64 = System.Convert.ToUInt64 v184.Length                  │

00:00:34 #2239 [Verbose] > │     let v186 : (int64 []) = Array.zeroCreate<int64>                          │

00:00:34 #2240 [Verbose] > │ (System.Convert.ToInt32(v185))                                               │

00:00:34 #2241 [Verbose] > │     let v187 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:34 #2242 [Verbose] > │     while method4(v185, v187) do                                             │

00:00:34 #2243 [Verbose] > │         let v189 : uint64 = v187.l0                                          │

00:00:34 #2244 [Verbose] > │         let v190 : (string []) = v184.[int v189]                             │

00:00:34 #2245 [Verbose] > │         let v191 : uint64 = System.Convert.ToUInt64 v190.Length              │

00:00:34 #2246 [Verbose] > │         let v192 : (int64 []) = Array.zeroCreate<int64>                      │

00:00:34 #2247 [Verbose] > │ (System.Convert.ToInt32(v191))                                               │

00:00:34 #2248 [Verbose] > │         let v193 : Mut0 = {l0 = 0UL} : Mut0                                  │

00:00:34 #2249 [Verbose] > │         while method4(v191, v193) do                                         │

00:00:34 #2250 [Verbose] > │             let v195 : uint64 = v193.l0                                      │

00:00:34 #2251 [Verbose] > │             let v196 : string = v190.[int v195]                              │

00:00:34 #2252 [Verbose] > │             let v197 : int64 = System.Convert.ToInt64 v196.Length            │

00:00:34 #2253 [Verbose] > │             v192.[int v195] <- v197                                          │

00:00:34 #2254 [Verbose] > │             let v198 : uint64 = v195 + 1UL                                   │

00:00:34 #2255 [Verbose] > │             v193.l0 <- v198                                                  │

00:00:34 #2256 [Verbose] > │             ()                                                               │

00:00:34 #2257 [Verbose] > │         let v199 : (int64 []) = v192 |> Array.sortDescending                 │

00:00:34 #2258 [Verbose] > │         let v200 : int64 option = v199 |> Array.tryItem 0                    │

00:00:34 #2259 [Verbose] > │         let v201 : (int64 -> US1) = closure4()                               │

00:00:34 #2260 [Verbose] > │         let v202 : US1 = US1_0                                               │

00:00:34 #2261 [Verbose] > │         let v203 : US1 = v200 |> Option.map v201 |> Option.defaultValue v202 │

00:00:34 #2262 [Verbose] > │         let v206 : int64 =                                                   │

00:00:34 #2263 [Verbose] > │             match v203 with                                                  │

00:00:34 #2264 [Verbose] > │             | US1_0 -> (* None *)                                            │

00:00:34 #2265 [Verbose] > │                 0L                                                           │

00:00:34 #2266 [Verbose] > │             | US1_1(v204) -> (* Some *)                                      │

00:00:34 #2267 [Verbose] > │                 v204                                                         │

00:00:34 #2268 [Verbose] > │         v186.[int v189] <- v206                                              │

00:00:34 #2269 [Verbose] > │         let v207 : uint64 = v189 + 1UL                                       │

00:00:34 #2270 [Verbose] > │         v187.l0 <- v207                                                      │

00:00:34 #2271 [Verbose] > │         ()                                                                   │

00:00:34 #2272 [Verbose] > │     let v208 : uint64 = System.Convert.ToUInt64 v186.Length                  │

00:00:34 #2273 [Verbose] > │     let v209 : UH5 = UH5_1                                                   │

00:00:34 #2274 [Verbose] > │     let v210 : Mut3 = {l0 = 0UL; l1 = v209; l2 = 0} : Mut3                   │

00:00:34 #2275 [Verbose] > │     while method22(v208, v210) do                                            │

00:00:34 #2276 [Verbose] > │         let v212 : uint64 = v210.l0                                          │

00:00:34 #2277 [Verbose] > │         let struct (v213 : UH5, v214 : int32) = v210.l1, v210.l2             │

00:00:34 #2278 [Verbose] > │         let v215 : int64 = v186.[int v212]                                   │

00:00:34 #2279 [Verbose] > │         let v216 : int32 = v214 + 1                                          │

00:00:34 #2280 [Verbose] > │         let v217 : uint64 = v212 + 1UL                                       │

00:00:34 #2281 [Verbose] > │         let v218 : UH5 = UH5_0(v214, v215, v213)                             │

00:00:34 #2282 [Verbose] > │         v210.l0 <- v217                                                      │

00:00:34 #2283 [Verbose] > │         v210.l1 <- v218                                                      │

00:00:34 #2284 [Verbose] > │         v210.l2 <- v216                                                      │

00:00:34 #2285 [Verbose] > │         ()                                                                   │

00:00:34 #2286 [Verbose] > │     let struct (v219 : UH5, v220 : int32) = v210.l1, v210.l2                 │

00:00:34 #2287 [Verbose] > │     let v221 : UH5 = UH5_1                                                   │

00:00:34 #2288 [Verbose] > │     let v222 : UH5 = method23(v219, v221)                                    │

00:00:34 #2289 [Verbose] > │     let v223 : (struct (int32 * int64) []) = method24(v222)                  │

00:00:34 #2290 [Verbose] > │     let v224 : Map<int32, int64> = v223 |> Array.map (fun (struct (a, b)) -> │

00:00:34 #2291 [Verbose] > │ a, b) |> Map.ofArray                                                         │

00:00:34 #2292 [Verbose] > │     let v225 : (struct ((string []) * US0) []) = Array.zeroCreate<struct     │

00:00:34 #2293 [Verbose] > │ ((string []) * US0)> (System.Convert.ToInt32(v175))                          │

00:00:34 #2294 [Verbose] > │     let v226 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:34 #2295 [Verbose] > │     while method4(v175, v226) do                                             │

00:00:34 #2296 [Verbose] > │         let v228 : uint64 = v226.l0                                          │

00:00:34 #2297 [Verbose] > │         let struct (v229 : UH2, v230 : US0) = v162.[int v228]                │

00:00:34 #2298 [Verbose] > │         let v231 : UH6 = UH6_1                                               │

00:00:34 #2299 [Verbose] > │         let v232 : int32 = 0                                                 │

00:00:34 #2300 [Verbose] > │         let struct (v233 : UH6, v234 : int32) = method27(v229, v231, v232)   │

00:00:34 #2301 [Verbose] > │         let v235 : UH6 = UH6_1                                               │

00:00:34 #2302 [Verbose] > │         let v236 : UH6 = method28(v233, v235)                                │

00:00:34 #2303 [Verbose] > │         let v237 : UH2 = UH2_1                                               │

00:00:34 #2304 [Verbose] > │         let v238 : UH2 = method29(v224, v236, v237)                          │

00:00:34 #2305 [Verbose] > │         let v239 : (string []) = method30(v238)                              │

00:00:34 #2306 [Verbose] > │         v225.[int v228] <- struct (v239, v230)                               │

00:00:34 #2307 [Verbose] > │         let v240 : uint64 = v228 + 1UL                                       │

00:00:34 #2308 [Verbose] > │         v226.l0 <- v240                                                      │

00:00:34 #2309 [Verbose] > │         ()                                                                   │

00:00:34 #2310 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:34 #2311 [Verbose] > │     let v241 : uint64 = System.Convert.ToUInt64 v225.Length                  │

00:00:34 #2312 [Verbose] > │     let v242 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:34 #2313 [Verbose] > │     while method4(v241, v242) do                                             │

00:00:34 #2314 [Verbose] > │         let v244 : uint64 = v242.l0                                          │

00:00:34 #2315 [Verbose] > │         let struct (v245 : (string []), v246 : US0) = v225.[int v244]        │

00:00:34 #2316 [Verbose] > │         match v246 with                                                      │

00:00:34 #2317 [Verbose] > │         | US0_0 -> (* None *)                                                │

00:00:34 #2318 [Verbose] > │             let mutable result = None                                        │

00:00:34 #2319 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:34 #2320 [Verbose] > │             #if !WASM                                                        │

00:00:34 #2321 [Verbose] > │             ()                                                               │

00:00:34 #2322 [Verbose] > │             #else                                                            │

00:00:34 #2323 [Verbose] > │             ()                                                               │

00:00:34 #2324 [Verbose] > │             #endif                                                           │

00:00:34 #2325 [Verbose] > │             #else                                                            │

00:00:34 #2326 [Verbose] > │             System.Console.ResetColor ()                                     │

00:00:34 #2327 [Verbose] > │             ()                                                               │

00:00:34 #2328 [Verbose] > │             #endif                                                           │

00:00:34 #2329 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:34 #2330 [Verbose] > │             result |> Option.get                                             │

00:00:34 #2331 [Verbose] > │             ()                                                               │

00:00:34 #2332 [Verbose] > │         | US0_1(v247) -> (* Some *)                                          │

00:00:34 #2333 [Verbose] > │             let mutable result = None                                        │

00:00:34 #2334 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:34 #2335 [Verbose] > │             #if !WASM                                                        │

00:00:34 #2336 [Verbose] > │             ()                                                               │

00:00:34 #2337 [Verbose] > │             #else                                                            │

00:00:34 #2338 [Verbose] > │             ()                                                               │

00:00:34 #2339 [Verbose] > │             #endif                                                           │

00:00:34 #2340 [Verbose] > │             #else                                                            │

00:00:34 #2341 [Verbose] > │             System.Console.ForegroundColor <- v247                           │

00:00:34 #2342 [Verbose] > │             ()                                                               │

00:00:34 #2343 [Verbose] > │             #endif                                                           │

00:00:34 #2344 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:34 #2345 [Verbose] > │             result |> Option.get                                             │

00:00:34 #2346 [Verbose] > │             ()                                                               │

00:00:34 #2347 [Verbose] > │         let v248 : string = "\t| "                                           │

00:00:34 #2348 [Verbose] > │         let v249 : string = System.String.Join (v248, v245)                  │

00:00:34 #2349 [Verbose] > │         System.Console.WriteLine v249                                        │

00:00:34 #2350 [Verbose] > │         let mutable result = None                                            │

00:00:34 #2351 [Verbose] > │         #if FABLE_COMPILER_RUST                                              │

00:00:34 #2352 [Verbose] > │         #if !WASM                                                            │

00:00:34 #2353 [Verbose] > │         ()                                                                   │

00:00:34 #2354 [Verbose] > │         #else                                                                │

00:00:34 #2355 [Verbose] > │         ()                                                                   │

00:00:34 #2356 [Verbose] > │         #endif                                                               │

00:00:34 #2357 [Verbose] > │         #else                                                                │

00:00:34 #2358 [Verbose] > │         System.Console.ResetColor ()                                         │

00:00:34 #2359 [Verbose] > │         ()                                                                   │

00:00:34 #2360 [Verbose] > │         #endif                                                               │

00:00:34 #2361 [Verbose] > │         |> fun x -> result <- Some x                                         │

00:00:34 #2362 [Verbose] > │         result |> Option.get                                                 │

00:00:34 #2363 [Verbose] > │         let v250 : uint64 = v244 + 1UL                                       │

00:00:34 #2364 [Verbose] > │         v242.l0 <- v250                                                      │

00:00:34 #2365 [Verbose] > │         ()                                                                   │

00:00:34 #2366 [Verbose] > │     let v251 : ((float []) []) = Array.zeroCreate<(float [])>                │

00:00:34 #2367 [Verbose] > │ (System.Convert.ToInt32(v87))                                                │

00:00:34 #2368 [Verbose] > │     let v252 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:34 #2369 [Verbose] > │     while method4(v87, v252) do                                              │

00:00:34 #2370 [Verbose] > │         let v254 : uint64 = v252.l0                                          │

00:00:34 #2371 [Verbose] > │         let struct (v255 : string, v256 : string, v257 : string, v258 :      │

00:00:34 #2372 [Verbose] > │ (int64 [])) = v16.[int v254]                                                 │

00:00:34 #2373 [Verbose] > │         let v259 : (int64 -> float) = float                                  │

00:00:34 #2374 [Verbose] > │         let v260 : uint64 = System.Convert.ToUInt64 v258.Length              │

00:00:34 #2375 [Verbose] > │         let v261 : (float []) = Array.zeroCreate<float>                      │

00:00:34 #2376 [Verbose] > │ (System.Convert.ToInt32(v260))                                               │

00:00:34 #2377 [Verbose] > │         let v262 : Mut0 = {l0 = 0UL} : Mut0                                  │

00:00:34 #2378 [Verbose] > │         while method4(v260, v262) do                                         │

00:00:34 #2379 [Verbose] > │             let v264 : uint64 = v262.l0                                      │

00:00:34 #2380 [Verbose] > │             let v265 : int64 = v258.[int v264]                               │

00:00:34 #2381 [Verbose] > │             let v266 : float = v259 v265                                     │

00:00:34 #2382 [Verbose] > │             v261.[int v264] <- v266                                          │

00:00:34 #2383 [Verbose] > │             let v267 : uint64 = v264 + 1UL                                   │

00:00:34 #2384 [Verbose] > │             v262.l0 <- v267                                                  │

00:00:34 #2385 [Verbose] > │             ()                                                               │

00:00:34 #2386 [Verbose] > │         v251.[int v254] <- v261                                              │

00:00:34 #2387 [Verbose] > │         let v268 : uint64 = v254 + 1UL                                       │

00:00:34 #2388 [Verbose] > │         v252.l0 <- v268                                                      │

00:00:34 #2389 [Verbose] > │         ()                                                                   │

00:00:34 #2390 [Verbose] > │     let v269 : ((float []) []) = v251 |> Array.transpose                     │

00:00:34 #2391 [Verbose] > │     let v270 : uint64 = System.Convert.ToUInt64 v269.Length                  │

00:00:34 #2392 [Verbose] > │     let v271 : (float []) = Array.zeroCreate<float>                          │

00:00:34 #2393 [Verbose] > │ (System.Convert.ToInt32(v270))                                               │

00:00:34 #2394 [Verbose] > │     let v272 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:34 #2395 [Verbose] > │     while method4(v270, v272) do                                             │

00:00:34 #2396 [Verbose] > │         let v274 : uint64 = v272.l0                                          │

00:00:34 #2397 [Verbose] > │         let v275 : (float []) = v269.[int v274]                              │

00:00:34 #2398 [Verbose] > │         let v276 : float = v275 |> Array.average                             │

00:00:34 #2399 [Verbose] > │         v271.[int v274] <- v276                                              │

00:00:34 #2400 [Verbose] > │         let v277 : uint64 = v274 + 1UL                                       │

00:00:34 #2401 [Verbose] > │         v272.l0 <- v277                                                      │

00:00:34 #2402 [Verbose] > │         ()                                                                   │

00:00:34 #2403 [Verbose] > │     let v278 : (float -> int64) = int64                                      │

00:00:34 #2404 [Verbose] > │     let v279 : uint64 = System.Convert.ToUInt64 v271.Length                  │

00:00:34 #2405 [Verbose] > │     let v280 : (int64 []) = Array.zeroCreate<int64>                          │

00:00:34 #2406 [Verbose] > │ (System.Convert.ToInt32(v279))                                               │

00:00:34 #2407 [Verbose] > │     let v281 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:34 #2408 [Verbose] > │     while method4(v279, v281) do                                             │

00:00:34 #2409 [Verbose] > │         let v283 : uint64 = v281.l0                                          │

00:00:34 #2410 [Verbose] > │         let v284 : float = v271.[int v283]                                   │

00:00:34 #2411 [Verbose] > │         let v285 : int64 = v278 v284                                         │

00:00:34 #2412 [Verbose] > │         v280.[int v283] <- v285                                              │

00:00:34 #2413 [Verbose] > │         let v286 : uint64 = v283 + 1UL                                       │

00:00:34 #2414 [Verbose] > │         v281.l0 <- v286                                                      │

00:00:34 #2415 [Verbose] > │         ()                                                                   │

00:00:34 #2416 [Verbose] > │     let v287 : uint64 = System.Convert.ToUInt64 v280.Length                  │

00:00:34 #2417 [Verbose] > │     let v288 : UH5 = UH5_1                                                   │

00:00:34 #2418 [Verbose] > │     let v289 : Mut3 = {l0 = 0UL; l1 = v288; l2 = 0} : Mut3                   │

00:00:34 #2419 [Verbose] > │     while method22(v287, v289) do                                            │

00:00:34 #2420 [Verbose] > │         let v291 : uint64 = v289.l0                                          │

00:00:34 #2421 [Verbose] > │         let struct (v292 : UH5, v293 : int32) = v289.l1, v289.l2             │

00:00:34 #2422 [Verbose] > │         let v294 : int64 = v280.[int v291]                                   │

00:00:34 #2423 [Verbose] > │         let v295 : int32 = v293 + 1                                          │

00:00:34 #2424 [Verbose] > │         let v296 : uint64 = v291 + 1UL                                       │

00:00:34 #2425 [Verbose] > │         let v297 : UH5 = UH5_0(v293, v294, v292)                             │

00:00:34 #2426 [Verbose] > │         v289.l0 <- v296                                                      │

00:00:34 #2427 [Verbose] > │         v289.l1 <- v297                                                      │

00:00:34 #2428 [Verbose] > │         v289.l2 <- v295                                                      │

00:00:34 #2429 [Verbose] > │         ()                                                                   │

00:00:34 #2430 [Verbose] > │     let struct (v298 : UH5, v299 : int32) = v289.l1, v289.l2                 │

00:00:34 #2431 [Verbose] > │     let v300 : UH5 = UH5_1                                                   │

00:00:34 #2432 [Verbose] > │     let v301 : UH5 = method23(v298, v300)                                    │

00:00:34 #2433 [Verbose] > │     let v302 : (struct (int32 * int64) []) = method33(v301)                  │

00:00:34 #2434 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:34 #2435 [Verbose] > │     let v303 : string = "Average Ranking  "                                  │

00:00:34 #2436 [Verbose] > │     System.Console.WriteLine v303                                            │

00:00:34 #2437 [Verbose] > │     let v304 : (struct (int32 * int64) -> int64) = closure5()                │

00:00:34 #2438 [Verbose] > │     let v305 : (struct (int32 * int64) []) = v302 |> Array.sortBy v304       │

00:00:34 #2439 [Verbose] > │     let v306 : uint64 = System.Convert.ToUInt64 v305.Length                  │

00:00:34 #2440 [Verbose] > │     let v307 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:34 #2441 [Verbose] > │     while method4(v306, v307) do                                             │

00:00:34 #2442 [Verbose] > │         let v309 : uint64 = v307.l0                                          │

00:00:34 #2443 [Verbose] > │         let struct (v310 : int32, v311 : int64) = v305.[int v309]            │

00:00:34 #2444 [Verbose] > │         let v312 : string = $"Test case %d{v310 + 1}. Average Time: %A{v311} │

00:00:34 #2445 [Verbose] > │ "                                                                            │

00:00:34 #2446 [Verbose] > │         System.Console.WriteLine v312                                        │

00:00:34 #2447 [Verbose] > │         let v313 : uint64 = v309 + 1UL                                       │

00:00:34 #2448 [Verbose] > │         v307.l0 <- v313                                                      │

00:00:34 #2449 [Verbose] > │         ()                                                                   │

00:00:34 #2450 [Verbose] > │     ()                                                                       │

00:00:34 #2451 [Verbose] > │ and method0 () : unit =                                                      │

00:00:34 #2452 [Verbose] > │     let v0 : (unit -> unit) = closure0()                                     │

00:00:34 #2453 [Verbose] > │     let v1 : string = nameof v0                                              │

00:00:34 #2454 [Verbose] > │     let v2 : string = ""                                                     │

00:00:34 #2455 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:34 #2456 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:34 #2457 [Verbose] > │     let v3 : string = $"Test: {v1}"                                          │

00:00:34 #2458 [Verbose] > │     System.Console.WriteLine v3                                              │

00:00:34 #2459 [Verbose] > │     let v4 : float = 0.0                                                     │

00:00:34 #2460 [Verbose] > │     let v5 : float = 1.0                                                     │

00:00:34 #2461 [Verbose] > │     let v6 : float = 2.0                                                     │

00:00:34 #2462 [Verbose] > │     let v7 : float = 3.0                                                     │

00:00:34 #2463 [Verbose] > │     let v8 : float = 5.0                                                     │

00:00:34 #2464 [Verbose] > │     let v9 : float = 6.0                                                     │

00:00:34 #2465 [Verbose] > │     let v10 : UH0 = UH0_1                                                    │

00:00:34 #2466 [Verbose] > │     let v11 : UH0 = UH0_0(v8, v9, v10)                                       │

00:00:34 #2467 [Verbose] > │     let v12 : UH0 = UH0_0(v6, v7, v11)                                       │

00:00:34 #2468 [Verbose] > │     let v13 : UH0 = UH0_0(v4, v5, v12)                                       │

00:00:34 #2469 [Verbose] > │     let v14 : (struct (float * float) []) = method1(v13)                     │

00:00:34 #2470 [Verbose] > │     let v15 : uint64 = System.Convert.ToUInt64 v14.Length                    │

00:00:34 #2471 [Verbose] > │     let v16 : (struct (string * string * string * (int64 [])) []) =          │

00:00:34 #2472 [Verbose] > │ Array.zeroCreate<struct (string * string * string * (int64 []))>             │

00:00:34 #2473 [Verbose] > │ (System.Convert.ToInt32(v15))                                                │

00:00:34 #2474 [Verbose] > │     let v17 : Mut0 = {l0 = 0UL} : Mut0                                       │

00:00:34 #2475 [Verbose] > │     while method4(v15, v17) do                                               │

00:00:34 #2476 [Verbose] > │         let v19 : uint64 = v17.l0                                            │

00:00:34 #2477 [Verbose] > │         let struct (v20 : float, v21 : float) = v14.[int v19]                │

00:00:34 #2478 [Verbose] > │         let v22 : string = $"%A{v20}"                                        │

00:00:34 #2479 [Verbose] > │         System.Console.WriteLine v2                                          │

00:00:34 #2480 [Verbose] > │         let v23 : string = $"Solution: {v22}  "                              │

00:00:34 #2481 [Verbose] > │         System.Console.WriteLine v23                                         │

00:00:34 #2482 [Verbose] > │         let v24 : int32 = 0                                                  │

00:00:34 #2483 [Verbose] > │         let v25 : string = "A"                                               │

00:00:34 #2484 [Verbose] > │         let v26 : (float -> float) = closure1()                              │

00:00:34 #2485 [Verbose] > │         let v27 : UH1 = UH1_1                                                │

00:00:34 #2486 [Verbose] > │         let v28 : UH1 = UH1_0(v24, v25, v26, v27)                            │

00:00:34 #2487 [Verbose] > │         let v29 : (struct (int32 * string * (float -> float)) []) =          │

00:00:34 #2488 [Verbose] > │ method5(v28)                                                                 │

00:00:34 #2489 [Verbose] > │         let v30 : uint64 = System.Convert.ToUInt64 v29.Length                │

00:00:34 #2490 [Verbose] > │         let v31 : (struct (float * int64) []) = Array.zeroCreate<struct      │

00:00:34 #2491 [Verbose] > │ (float * int64)> (System.Convert.ToInt32(v30))                               │

00:00:34 #2492 [Verbose] > │         let v32 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:34 #2493 [Verbose] > │         while method4(v30, v32) do                                           │

00:00:34 #2494 [Verbose] > │             let v34 : uint64 = v32.l0                                        │

00:00:34 #2495 [Verbose] > │             let struct (v35 : int32, v36 : string, v37 : (float -> float)) = │

00:00:34 #2496 [Verbose] > │ v29.[int v34]                                                                │

00:00:34 #2497 [Verbose] > │             let mutable result = None                                        │

00:00:34 #2498 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:34 #2499 [Verbose] > │             #if !WASM                                                        │

00:00:34 #2500 [Verbose] > │             ()                                                               │

00:00:34 #2501 [Verbose] > │             #else                                                            │

00:00:34 #2502 [Verbose] > │             ()                                                               │

00:00:34 #2503 [Verbose] > │             #endif                                                           │

00:00:34 #2504 [Verbose] > │             #else                                                            │

00:00:34 #2505 [Verbose] > │             System.GC.Collect ()                                             │

00:00:34 #2506 [Verbose] > │             ()                                                               │

00:00:34 #2507 [Verbose] > │             #endif                                                           │

00:00:34 #2508 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:34 #2509 [Verbose] > │             result |> Option.get                                             │

00:00:34 #2510 [Verbose] > │             let v38 : (unit -> System.Diagnostics.Stopwatch) =               │

00:00:34 #2511 [Verbose] > │ System.Diagnostics.Stopwatch                                                 │

00:00:34 #2512 [Verbose] > │             let v39 : System.Diagnostics.Stopwatch = v38 ()                  │

00:00:34 #2513 [Verbose] > │             v39.Start ()                                                     │

00:00:34 #2514 [Verbose] > │             let v40 : int64 = v39.ElapsedMilliseconds                        │

00:00:34 #2515 [Verbose] > │             let v41 : (int32 []) = Array.zeroCreate<int32> (2000001)         │

00:00:34 #2516 [Verbose] > │             let v42 : Mut1 = {l0 = 0} : Mut1                                 │

00:00:34 #2517 [Verbose] > │             while method8(v42) do                                            │

00:00:34 #2518 [Verbose] > │                 let v44 : int32 = v42.l0                                     │

00:00:34 #2519 [Verbose] > │                 v41.[int v44] <- v44                                         │

00:00:34 #2520 [Verbose] > │                 let v45 : int32 = v44 + 1                                    │

00:00:34 #2521 [Verbose] > │                 v42.l0 <- v45                                                │

00:00:34 #2522 [Verbose] > │                 ()                                                           │

00:00:34 #2523 [Verbose] > │             let v46 : (int32 -> float) = closure2(v20, v37)                  │

00:00:34 #2524 [Verbose] > │             let v47 : (float []) = v41 |> Array.Parallel.map v46             │

00:00:34 #2525 [Verbose] > │             let v48 : int32 = v47.Length                                     │

00:00:34 #2526 [Verbose] > │             let v49 : int32 = v48 - 1                                        │

00:00:34 #2527 [Verbose] > │             let v50 : float = v47.[int v49]                                  │

00:00:34 #2528 [Verbose] > │             let v51 : int64 = v39.ElapsedMilliseconds                        │

00:00:34 #2529 [Verbose] > │             let v52 : int64 = v51 - v40                                      │

00:00:34 #2530 [Verbose] > │             let v53 : string = $"Test case {v35 + 1}. {v36}. Time: {v52}  "  │

00:00:34 #2531 [Verbose] > │             System.Console.WriteLine v53                                     │

00:00:34 #2532 [Verbose] > │             v31.[int v34] <- struct (v50, v52)                               │

00:00:34 #2533 [Verbose] > │             let v54 : uint64 = v34 + 1UL                                     │

00:00:34 #2534 [Verbose] > │             v32.l0 <- v54                                                    │

00:00:34 #2535 [Verbose] > │             ()                                                               │

00:00:34 #2536 [Verbose] > │         let v55 : uint64 = System.Convert.ToUInt64 v31.Length                │

00:00:34 #2537 [Verbose] > │         let v56 : (float []) = Array.zeroCreate<float>                       │

00:00:34 #2538 [Verbose] > │ (System.Convert.ToInt32(v55))                                                │

00:00:34 #2539 [Verbose] > │         let v57 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:34 #2540 [Verbose] > │         while method4(v55, v57) do                                           │

00:00:34 #2541 [Verbose] > │             let v59 : uint64 = v57.l0                                        │

00:00:34 #2542 [Verbose] > │             let struct (v60 : float, v61 : int64) = v31.[int v59]            │

00:00:34 #2543 [Verbose] > │             v56.[int v59] <- v60                                             │

00:00:34 #2544 [Verbose] > │             let v62 : uint64 = v59 + 1UL                                     │

00:00:34 #2545 [Verbose] > │             v57.l0 <- v62                                                    │

00:00:34 #2546 [Verbose] > │             ()                                                               │

00:00:34 #2547 [Verbose] > │         let v63 : uint64 = System.Convert.ToUInt64 v56.Length                │

00:00:34 #2548 [Verbose] > │         let v64 : bool = v63 <= 1UL                                          │

00:00:34 #2549 [Verbose] > │         if v64 then                                                          │

00:00:34 #2550 [Verbose] > │             ()                                                               │

00:00:34 #2551 [Verbose] > │         else                                                                 │

00:00:34 #2552 [Verbose] > │             let v65 : float = v56.[int 0UL]                                  │

00:00:34 #2553 [Verbose] > │             let v66 : uint64 = 0UL                                           │

00:00:34 #2554 [Verbose] > │             let v67 : bool = method9(v65, v56, v66)                          │

00:00:34 #2555 [Verbose] > │             if v67 then                                                      │

00:00:34 #2556 [Verbose] > │                 ()                                                           │

00:00:34 #2557 [Verbose] > │             else                                                             │

00:00:34 #2558 [Verbose] > │                 let v68 : string = $"Challenge error: {v56}"                 │

00:00:34 #2559 [Verbose] > │                 failwith<unit> v68                                           │

00:00:34 #2560 [Verbose] > │         let v69 : string = $"%A{v21}"                                        │

00:00:34 #2561 [Verbose] > │         let v70 : (float []) = Array.zeroCreate<float>                       │

00:00:34 #2562 [Verbose] > │ (System.Convert.ToInt32(v55))                                                │

00:00:34 #2563 [Verbose] > │         let v71 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:34 #2564 [Verbose] > │         while method4(v55, v71) do                                           │

00:00:34 #2565 [Verbose] > │             let v73 : uint64 = v71.l0                                        │

00:00:34 #2566 [Verbose] > │             let struct (v74 : float, v75 : int64) = v31.[int v73]            │

00:00:34 #2567 [Verbose] > │             v70.[int v73] <- v74                                             │

00:00:34 #2568 [Verbose] > │             let v76 : uint64 = v73 + 1UL                                     │

00:00:34 #2569 [Verbose] > │             v71.l0 <- v76                                                    │

00:00:34 #2570 [Verbose] > │             ()                                                               │

00:00:34 #2571 [Verbose] > │         let v77 : float = v70.[int 0UL]                                      │

00:00:34 #2572 [Verbose] > │         let v78 : string = $"%A{v77}"                                        │

00:00:34 #2573 [Verbose] > │         let v79 : (int64 []) = Array.zeroCreate<int64>                       │

00:00:34 #2574 [Verbose] > │ (System.Convert.ToInt32(v55))                                                │

00:00:34 #2575 [Verbose] > │         let v80 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:00:34 #2576 [Verbose] > │         while method4(v55, v80) do                                           │

00:00:34 #2577 [Verbose] > │             let v82 : uint64 = v80.l0                                        │

00:00:34 #2578 [Verbose] > │             let struct (v83 : float, v84 : int64) = v31.[int v82]            │

00:00:34 #2579 [Verbose] > │             v79.[int v82] <- v84                                             │

00:00:34 #2580 [Verbose] > │             let v85 : uint64 = v82 + 1UL                                     │

00:00:34 #2581 [Verbose] > │             v80.l0 <- v85                                                    │

00:00:34 #2582 [Verbose] > │             ()                                                               │

00:00:34 #2583 [Verbose] > │         v16.[int v19] <- struct (v69, v22, v78, v79)                         │

00:00:34 #2584 [Verbose] > │         let v86 : uint64 = v19 + 1UL                                         │

00:00:34 #2585 [Verbose] > │         v17.l0 <- v86                                                        │

00:00:34 #2586 [Verbose] > │         ()                                                                   │

00:00:34 #2587 [Verbose] > │     let v87 : uint64 = System.Convert.ToUInt64 v16.Length                    │

00:00:34 #2588 [Verbose] > │     let v88 : (struct (UH2 * US0) []) = Array.zeroCreate<struct (UH2 * US0)> │

00:00:34 #2589 [Verbose] > │ (System.Convert.ToInt32(v87))                                                │

00:00:34 #2590 [Verbose] > │     let v89 : Mut0 = {l0 = 0UL} : Mut0                                       │

00:00:34 #2591 [Verbose] > │     while method4(v87, v89) do                                               │

00:00:34 #2592 [Verbose] > │         let v91 : uint64 = v89.l0                                            │

00:00:34 #2593 [Verbose] > │         let struct (v92 : string, v93 : string, v94 : string, v95 : (int64 [ │

00:00:34 #2594 [Verbose] > │ ])) = v16.[int v91]                                                          │

00:00:34 #2595 [Verbose] > │         let v96 : uint64 = System.Convert.ToUInt64 v95.Length                │

00:00:34 #2596 [Verbose] > │         let v97 : UH3 = UH3_1                                                │

00:00:34 #2597 [Verbose] > │         let v98 : Mut2 = {l0 = 0UL; l1 = v97; l2 = 0L} : Mut2                │

00:00:34 #2598 [Verbose] > │         while method10(v96, v98) do                                          │

00:00:34 #2599 [Verbose] > │             let v100 : uint64 = v98.l0                                       │

00:00:34 #2600 [Verbose] > │             let struct (v101 : UH3, v102 : int64) = v98.l1, v98.l2           │

00:00:34 #2601 [Verbose] > │             let v103 : int64 = v95.[int v100]                                │

00:00:34 #2602 [Verbose] > │             let v104 : int64 = v102 + 1L                                     │

00:00:34 #2603 [Verbose] > │             let v105 : uint64 = v100 + 1UL                                   │

00:00:34 #2604 [Verbose] > │             let v106 : UH3 = UH3_0(v102, v103, v101)                         │

00:00:34 #2605 [Verbose] > │             v98.l0 <- v105                                                   │

00:00:34 #2606 [Verbose] > │             v98.l1 <- v106                                                   │

00:00:34 #2607 [Verbose] > │             v98.l2 <- v104                                                   │

00:00:34 #2608 [Verbose] > │             ()                                                               │

00:00:34 #2609 [Verbose] > │         let struct (v107 : UH3, v108 : int64) = v98.l1, v98.l2               │

00:00:34 #2610 [Verbose] > │         let v109 : UH3 = UH3_1                                               │

00:00:34 #2611 [Verbose] > │         let v110 : UH3 = method11(v107, v109)                                │

00:00:34 #2612 [Verbose] > │         let v111 : (struct (int64 * int64) []) = method12(v110)              │

00:00:34 #2613 [Verbose] > │         let v112 : int32 = v111.Length                                       │

00:00:34 #2614 [Verbose] > │         let v113 : (struct (int64 * int64) []) = Array.zeroCreate<struct     │

00:00:34 #2615 [Verbose] > │ (int64 * int64)> (v112)                                                      │

00:00:34 #2616 [Verbose] > │         let v114 : Mut1 = {l0 = 0} : Mut1                                    │

00:00:34 #2617 [Verbose] > │         while method15(v112, v114) do                                        │

00:00:34 #2618 [Verbose] > │             let v116 : int32 = v114.l0                                       │

00:00:34 #2619 [Verbose] > │             let struct (v117 : int64, v118 : int64) = v111.[int v116]        │

00:00:34 #2620 [Verbose] > │             let v119 : int64 = v117 + 1L                                     │

00:00:34 #2621 [Verbose] > │             v113.[int v116] <- struct (v119, v118)                           │

00:00:34 #2622 [Verbose] > │             let v120 : int32 = v116 + 1                                      │

00:00:34 #2623 [Verbose] > │             v114.l0 <- v120                                                  │

00:00:34 #2624 [Verbose] > │             ()                                                               │

00:00:34 #2625 [Verbose] > │         let v121 : (struct (int64 * int64) -> int64) = closure3()            │

00:00:34 #2626 [Verbose] > │         let v122 : (struct (int64 * int64) []) = v113 |> Array.sortBy v121   │

00:00:34 #2627 [Verbose] > │         let struct (v123 : int64, v124 : int64) = v122.[int 0]               │

00:00:35 #2628 [Verbose] > │         let v125 : string = $"%A{struct (v123, v124)}"                       │

00:00:35 #2629 [Verbose] > │         let v126 : bool = v92 = v94                                          │

00:00:35 #2630 [Verbose] > │         let v131 : US0 =                                                     │

00:00:35 #2631 [Verbose] > │             if v126 then                                                     │

00:00:35 #2632 [Verbose] > │                 let v127 : System.ConsoleColor =                             │

00:00:35 #2633 [Verbose] > │ System.ConsoleColor.DarkGreen                                                │

00:00:35 #2634 [Verbose] > │                 US0_1(v127)                                                  │

00:00:35 #2635 [Verbose] > │             else                                                             │

00:00:35 #2636 [Verbose] > │                 let v129 : System.ConsoleColor = System.ConsoleColor.DarkRed │

00:00:35 #2637 [Verbose] > │                 US0_1(v129)                                                  │

00:00:35 #2638 [Verbose] > │         let v132 : UH2 = UH2_1                                               │

00:00:35 #2639 [Verbose] > │         let v133 : UH2 = UH2_0(v125, v132)                                   │

00:00:35 #2640 [Verbose] > │         let v134 : UH2 = UH2_0(v94, v133)                                    │

00:00:35 #2641 [Verbose] > │         let v135 : UH2 = UH2_0(v92, v134)                                    │

00:00:35 #2642 [Verbose] > │         let v136 : UH2 = UH2_0(v93, v135)                                    │

00:00:35 #2643 [Verbose] > │         v88.[int v91] <- struct (v136, v131)                                 │

00:00:35 #2644 [Verbose] > │         let v137 : uint64 = v91 + 1UL                                        │

00:00:35 #2645 [Verbose] > │         v89.l0 <- v137                                                       │

00:00:35 #2646 [Verbose] > │         ()                                                                   │

00:00:35 #2647 [Verbose] > │     let v138 : string = "Input"                                              │

00:00:35 #2648 [Verbose] > │     let v139 : string = "Expected"                                           │

00:00:35 #2649 [Verbose] > │     let v140 : string = "Result"                                             │

00:00:35 #2650 [Verbose] > │     let v141 : string = "Best"                                               │

00:00:35 #2651 [Verbose] > │     let v142 : UH2 = UH2_1                                                   │

00:00:35 #2652 [Verbose] > │     let v143 : UH2 = UH2_0(v141, v142)                                       │

00:00:35 #2653 [Verbose] > │     let v144 : UH2 = UH2_0(v140, v143)                                       │

00:00:35 #2654 [Verbose] > │     let v145 : UH2 = UH2_0(v139, v144)                                       │

00:00:35 #2655 [Verbose] > │     let v146 : UH2 = UH2_0(v138, v145)                                       │

00:00:35 #2656 [Verbose] > │     let v147 : US0 = US0_0                                                   │

00:00:35 #2657 [Verbose] > │     let v148 : string = "---"                                                │

00:00:35 #2658 [Verbose] > │     let v149 : UH2 = UH2_1                                                   │

00:00:35 #2659 [Verbose] > │     let v150 : UH2 = UH2_0(v148, v149)                                       │

00:00:35 #2660 [Verbose] > │     let v151 : UH2 = UH2_0(v148, v150)                                       │

00:00:35 #2661 [Verbose] > │     let v152 : UH2 = UH2_0(v148, v151)                                       │

00:00:35 #2662 [Verbose] > │     let v153 : UH2 = UH2_0(v148, v152)                                       │

00:00:35 #2663 [Verbose] > │     let v154 : US0 = US0_0                                                   │

00:00:35 #2664 [Verbose] > │     let v155 : UH4 = UH4_1                                                   │

00:00:35 #2665 [Verbose] > │     let v156 : UH4 = UH4_0(v153, v154, v155)                                 │

00:00:35 #2666 [Verbose] > │     let v157 : UH4 = UH4_0(v146, v147, v156)                                 │

00:00:35 #2667 [Verbose] > │     let v158 : (struct (UH2 * US0) []) = method16(v157)                      │

00:00:35 #2668 [Verbose] > │     let v159 : uint64 = System.Convert.ToUInt64 v158.Length                  │

00:00:35 #2669 [Verbose] > │     let v160 : uint64 = System.Convert.ToUInt64 v88.Length                   │

00:00:35 #2670 [Verbose] > │     let v161 : uint64 = v159 + v160                                          │

00:00:35 #2671 [Verbose] > │     let v162 : (struct (UH2 * US0) []) = Array.zeroCreate<struct (UH2 *      │

00:00:35 #2672 [Verbose] > │ US0)> (System.Convert.ToInt32(v161))                                         │

00:00:35 #2673 [Verbose] > │     let v163 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:35 #2674 [Verbose] > │     while method4(v161, v163) do                                             │

00:00:35 #2675 [Verbose] > │         let v165 : uint64 = v163.l0                                          │

00:00:35 #2676 [Verbose] > │         let v166 : bool = v165 < v159                                        │

00:00:35 #2677 [Verbose] > │         let struct (v172 : UH2, v173 : US0) =                                │

00:00:35 #2678 [Verbose] > │             if v166 then                                                     │

00:00:35 #2679 [Verbose] > │                 let struct (v167 : UH2, v168 : US0) = v158.[int v165]        │

00:00:35 #2680 [Verbose] > │                 struct (v167, v168)                                          │

00:00:35 #2681 [Verbose] > │             else                                                             │

00:00:35 #2682 [Verbose] > │                 let v169 : uint64 = v165 - v159                              │

00:00:35 #2683 [Verbose] > │                 let struct (v170 : UH2, v171 : US0) = v88.[int v169]         │

00:00:35 #2684 [Verbose] > │                 struct (v170, v171)                                          │

00:00:35 #2685 [Verbose] > │         v162.[int v165] <- struct (v172, v173)                               │

00:00:35 #2686 [Verbose] > │         let v174 : uint64 = v165 + 1UL                                       │

00:00:35 #2687 [Verbose] > │         v163.l0 <- v174                                                      │

00:00:35 #2688 [Verbose] > │         ()                                                                   │

00:00:35 #2689 [Verbose] > │     let v175 : uint64 = System.Convert.ToUInt64 v162.Length                  │

00:00:35 #2690 [Verbose] > │     let v176 : ((string []) []) = Array.zeroCreate<(string [])>              │

00:00:35 #2691 [Verbose] > │ (System.Convert.ToInt32(v175))                                               │

00:00:35 #2692 [Verbose] > │     let v177 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:35 #2693 [Verbose] > │     while method4(v175, v177) do                                             │

00:00:35 #2694 [Verbose] > │         let v179 : uint64 = v177.l0                                          │

00:00:35 #2695 [Verbose] > │         let struct (v180 : UH2, v181 : US0) = v162.[int v179]                │

00:00:35 #2696 [Verbose] > │         let v182 : (string []) = method19(v180)                              │

00:00:35 #2697 [Verbose] > │         v176.[int v179] <- v182                                              │

00:00:35 #2698 [Verbose] > │         let v183 : uint64 = v179 + 1UL                                       │

00:00:35 #2699 [Verbose] > │         v177.l0 <- v183                                                      │

00:00:35 #2700 [Verbose] > │         ()                                                                   │

00:00:35 #2701 [Verbose] > │     let v184 : ((string []) []) = v176 |> Array.transpose                    │

00:00:35 #2702 [Verbose] > │     let v185 : uint64 = System.Convert.ToUInt64 v184.Length                  │

00:00:35 #2703 [Verbose] > │     let v186 : (int64 []) = Array.zeroCreate<int64>                          │

00:00:35 #2704 [Verbose] > │ (System.Convert.ToInt32(v185))                                               │

00:00:35 #2705 [Verbose] > │     let v187 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:35 #2706 [Verbose] > │     while method4(v185, v187) do                                             │

00:00:35 #2707 [Verbose] > │         let v189 : uint64 = v187.l0                                          │

00:00:35 #2708 [Verbose] > │         let v190 : (string []) = v184.[int v189]                             │

00:00:35 #2709 [Verbose] > │         let v191 : uint64 = System.Convert.ToUInt64 v190.Length              │

00:00:35 #2710 [Verbose] > │         let v192 : (int64 []) = Array.zeroCreate<int64>                      │

00:00:35 #2711 [Verbose] > │ (System.Convert.ToInt32(v191))                                               │

00:00:35 #2712 [Verbose] > │         let v193 : Mut0 = {l0 = 0UL} : Mut0                                  │

00:00:35 #2713 [Verbose] > │         while method4(v191, v193) do                                         │

00:00:35 #2714 [Verbose] > │             let v195 : uint64 = v193.l0                                      │

00:00:35 #2715 [Verbose] > │             let v196 : string = v190.[int v195]                              │

00:00:35 #2716 [Verbose] > │             let v197 : int64 = System.Convert.ToInt64 v196.Length            │

00:00:35 #2717 [Verbose] > │             v192.[int v195] <- v197                                          │

00:00:35 #2718 [Verbose] > │             let v198 : uint64 = v195 + 1UL                                   │

00:00:35 #2719 [Verbose] > │             v193.l0 <- v198                                                  │

00:00:35 #2720 [Verbose] > │             ()                                                               │

00:00:35 #2721 [Verbose] > │         let v199 : (int64 []) = v192 |> Array.sortDescending                 │

00:00:35 #2722 [Verbose] > │         let v200 : int64 option = v199 |> Array.tryItem 0                    │

00:00:35 #2723 [Verbose] > │         let v201 : (int64 -> US1) = closure4()                               │

00:00:35 #2724 [Verbose] > │         let v202 : US1 = US1_0                                               │

00:00:35 #2725 [Verbose] > │         let v203 : US1 = v200 |> Option.map v201 |> Option.defaultValue v202 │

00:00:35 #2726 [Verbose] > │         let v206 : int64 =                                                   │

00:00:35 #2727 [Verbose] > │             match v203 with                                                  │

00:00:35 #2728 [Verbose] > │             | US1_0 -> (* None *)                                            │

00:00:35 #2729 [Verbose] > │                 0L                                                           │

00:00:35 #2730 [Verbose] > │             | US1_1(v204) -> (* Some *)                                      │

00:00:35 #2731 [Verbose] > │                 v204                                                         │

00:00:35 #2732 [Verbose] > │         v186.[int v189] <- v206                                              │

00:00:35 #2733 [Verbose] > │         let v207 : uint64 = v189 + 1UL                                       │

00:00:35 #2734 [Verbose] > │         v187.l0 <- v207                                                      │

00:00:35 #2735 [Verbose] > │         ()                                                                   │

00:00:35 #2736 [Verbose] > │     let v208 : uint64 = System.Convert.ToUInt64 v186.Length                  │

00:00:35 #2737 [Verbose] > │     let v209 : UH5 = UH5_1                                                   │

00:00:35 #2738 [Verbose] > │     let v210 : Mut3 = {l0 = 0UL; l1 = v209; l2 = 0} : Mut3                   │

00:00:35 #2739 [Verbose] > │     while method22(v208, v210) do                                            │

00:00:35 #2740 [Verbose] > │         let v212 : uint64 = v210.l0                                          │

00:00:35 #2741 [Verbose] > │         let struct (v213 : UH5, v214 : int32) = v210.l1, v210.l2             │

00:00:35 #2742 [Verbose] > │         let v215 : int64 = v186.[int v212]                                   │

00:00:35 #2743 [Verbose] > │         let v216 : int32 = v214 + 1                                          │

00:00:35 #2744 [Verbose] > │         let v217 : uint64 = v212 + 1UL                                       │

00:00:35 #2745 [Verbose] > │         let v218 : UH5 = UH5_0(v214, v215, v213)                             │

00:00:35 #2746 [Verbose] > │         v210.l0 <- v217                                                      │

00:00:35 #2747 [Verbose] > │         v210.l1 <- v218                                                      │

00:00:35 #2748 [Verbose] > │         v210.l2 <- v216                                                      │

00:00:35 #2749 [Verbose] > │         ()                                                                   │

00:00:35 #2750 [Verbose] > │     let struct (v219 : UH5, v220 : int32) = v210.l1, v210.l2                 │

00:00:35 #2751 [Verbose] > │     let v221 : UH5 = UH5_1                                                   │

00:00:35 #2752 [Verbose] > │     let v222 : UH5 = method23(v219, v221)                                    │

00:00:35 #2753 [Verbose] > │     let v223 : (struct (int32 * int64) []) = method24(v222)                  │

00:00:35 #2754 [Verbose] > │     let v224 : Map<int32, int64> = v223 |> Array.map (fun (struct (a, b)) -> │

00:00:35 #2755 [Verbose] > │ a, b) |> Map.ofArray                                                         │

00:00:35 #2756 [Verbose] > │     let v225 : (struct ((string []) * US0) []) = Array.zeroCreate<struct     │

00:00:35 #2757 [Verbose] > │ ((string []) * US0)> (System.Convert.ToInt32(v175))                          │

00:00:35 #2758 [Verbose] > │     let v226 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:35 #2759 [Verbose] > │     while method4(v175, v226) do                                             │

00:00:35 #2760 [Verbose] > │         let v228 : uint64 = v226.l0                                          │

00:00:35 #2761 [Verbose] > │         let struct (v229 : UH2, v230 : US0) = v162.[int v228]                │

00:00:35 #2762 [Verbose] > │         let v231 : UH6 = UH6_1                                               │

00:00:35 #2763 [Verbose] > │         let v232 : int32 = 0                                                 │

00:00:35 #2764 [Verbose] > │         let struct (v233 : UH6, v234 : int32) = method27(v229, v231, v232)   │

00:00:35 #2765 [Verbose] > │         let v235 : UH6 = UH6_1                                               │

00:00:35 #2766 [Verbose] > │         let v236 : UH6 = method28(v233, v235)                                │

00:00:35 #2767 [Verbose] > │         let v237 : UH2 = UH2_1                                               │

00:00:35 #2768 [Verbose] > │         let v238 : UH2 = method29(v224, v236, v237)                          │

00:00:35 #2769 [Verbose] > │         let v239 : (string []) = method30(v238)                              │

00:00:35 #2770 [Verbose] > │         v225.[int v228] <- struct (v239, v230)                               │

00:00:35 #2771 [Verbose] > │         let v240 : uint64 = v228 + 1UL                                       │

00:00:35 #2772 [Verbose] > │         v226.l0 <- v240                                                      │

00:00:35 #2773 [Verbose] > │         ()                                                                   │

00:00:35 #2774 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:35 #2775 [Verbose] > │     let v241 : uint64 = System.Convert.ToUInt64 v225.Length                  │

00:00:35 #2776 [Verbose] > │     let v242 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:35 #2777 [Verbose] > │     while method4(v241, v242) do                                             │

00:00:35 #2778 [Verbose] > │         let v244 : uint64 = v242.l0                                          │

00:00:35 #2779 [Verbose] > │         let struct (v245 : (string []), v246 : US0) = v225.[int v244]        │

00:00:35 #2780 [Verbose] > │         match v246 with                                                      │

00:00:35 #2781 [Verbose] > │         | US0_0 -> (* None *)                                                │

00:00:35 #2782 [Verbose] > │             let mutable result = None                                        │

00:00:35 #2783 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:35 #2784 [Verbose] > │             #if !WASM                                                        │

00:00:35 #2785 [Verbose] > │             ()                                                               │

00:00:35 #2786 [Verbose] > │             #else                                                            │

00:00:35 #2787 [Verbose] > │             ()                                                               │

00:00:35 #2788 [Verbose] > │             #endif                                                           │

00:00:35 #2789 [Verbose] > │             #else                                                            │

00:00:35 #2790 [Verbose] > │             System.Console.ResetColor ()                                     │

00:00:35 #2791 [Verbose] > │             ()                                                               │

00:00:35 #2792 [Verbose] > │             #endif                                                           │

00:00:35 #2793 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:35 #2794 [Verbose] > │             result |> Option.get                                             │

00:00:35 #2795 [Verbose] > │             ()                                                               │

00:00:35 #2796 [Verbose] > │         | US0_1(v247) -> (* Some *)                                          │

00:00:35 #2797 [Verbose] > │             let mutable result = None                                        │

00:00:35 #2798 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:35 #2799 [Verbose] > │             #if !WASM                                                        │

00:00:35 #2800 [Verbose] > │             ()                                                               │

00:00:35 #2801 [Verbose] > │             #else                                                            │

00:00:35 #2802 [Verbose] > │             ()                                                               │

00:00:35 #2803 [Verbose] > │             #endif                                                           │

00:00:35 #2804 [Verbose] > │             #else                                                            │

00:00:35 #2805 [Verbose] > │             System.Console.ForegroundColor <- v247                           │

00:00:35 #2806 [Verbose] > │             ()                                                               │

00:00:35 #2807 [Verbose] > │             #endif                                                           │

00:00:35 #2808 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:35 #2809 [Verbose] > │             result |> Option.get                                             │

00:00:35 #2810 [Verbose] > │             ()                                                               │

00:00:35 #2811 [Verbose] > │         let v248 : string = "\t| "                                           │

00:00:35 #2812 [Verbose] > │         let v249 : string = System.String.Join (v248, v245)                  │

00:00:35 #2813 [Verbose] > │         System.Console.WriteLine v249                                        │

00:00:35 #2814 [Verbose] > │         let mutable result = None                                            │

00:00:35 #2815 [Verbose] > │         #if FABLE_COMPILER_RUST                                              │

00:00:35 #2816 [Verbose] > │         #if !WASM                                                            │

00:00:35 #2817 [Verbose] > │         ()                                                                   │

00:00:35 #2818 [Verbose] > │         #else                                                                │

00:00:35 #2819 [Verbose] > │         ()                                                                   │

00:00:35 #2820 [Verbose] > │         #endif                                                               │

00:00:35 #2821 [Verbose] > │         #else                                                                │

00:00:35 #2822 [Verbose] > │         System.Console.ResetColor ()                                         │

00:00:35 #2823 [Verbose] > │         ()                                                                   │

00:00:35 #2824 [Verbose] > │         #endif                                                               │

00:00:35 #2825 [Verbose] > │         |> fun x -> result <- Some x                                         │

00:00:35 #2826 [Verbose] > │         result |> Option.get                                                 │

00:00:35 #2827 [Verbose] > │         let v250 : uint64 = v244 + 1UL                                       │

00:00:35 #2828 [Verbose] > │         v242.l0 <- v250                                                      │

00:00:35 #2829 [Verbose] > │         ()                                                                   │

00:00:35 #2830 [Verbose] > │     let v251 : ((float []) []) = Array.zeroCreate<(float [])>                │

00:00:35 #2831 [Verbose] > │ (System.Convert.ToInt32(v87))                                                │

00:00:35 #2832 [Verbose] > │     let v252 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:35 #2833 [Verbose] > │     while method4(v87, v252) do                                              │

00:00:35 #2834 [Verbose] > │         let v254 : uint64 = v252.l0                                          │

00:00:35 #2835 [Verbose] > │         let struct (v255 : string, v256 : string, v257 : string, v258 :      │

00:00:35 #2836 [Verbose] > │ (int64 [])) = v16.[int v254]                                                 │

00:00:35 #2837 [Verbose] > │         let v259 : (int64 -> float) = float                                  │

00:00:35 #2838 [Verbose] > │         let v260 : uint64 = System.Convert.ToUInt64 v258.Length              │

00:00:35 #2839 [Verbose] > │         let v261 : (float []) = Array.zeroCreate<float>                      │

00:00:35 #2840 [Verbose] > │ (System.Convert.ToInt32(v260))                                               │

00:00:35 #2841 [Verbose] > │         let v262 : Mut0 = {l0 = 0UL} : Mut0                                  │

00:00:35 #2842 [Verbose] > │         while method4(v260, v262) do                                         │

00:00:35 #2843 [Verbose] > │             let v264 : uint64 = v262.l0                                      │

00:00:35 #2844 [Verbose] > │             let v265 : int64 = v258.[int v264]                               │

00:00:35 #2845 [Verbose] > │             let v266 : float = v259 v265                                     │

00:00:35 #2846 [Verbose] > │             v261.[int v264] <- v266                                          │

00:00:35 #2847 [Verbose] > │             let v267 : uint64 = v264 + 1UL                                   │

00:00:35 #2848 [Verbose] > │             v262.l0 <- v267                                                  │

00:00:35 #2849 [Verbose] > │             ()                                                               │

00:00:35 #2850 [Verbose] > │         v251.[int v254] <- v261                                              │

00:00:35 #2851 [Verbose] > │         let v268 : uint64 = v254 + 1UL                                       │

00:00:35 #2852 [Verbose] > │         v252.l0 <- v268                                                      │

00:00:35 #2853 [Verbose] > │         ()                                                                   │

00:00:35 #2854 [Verbose] > │     let v269 : ((float []) []) = v251 |> Array.transpose                     │

00:00:35 #2855 [Verbose] > │     let v270 : uint64 = System.Convert.ToUInt64 v269.Length                  │

00:00:35 #2856 [Verbose] > │     let v271 : (float []) = Array.zeroCreate<float>                          │

00:00:35 #2857 [Verbose] > │ (System.Convert.ToInt32(v270))                                               │

00:00:35 #2858 [Verbose] > │     let v272 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:35 #2859 [Verbose] > │     while method4(v270, v272) do                                             │

00:00:35 #2860 [Verbose] > │         let v274 : uint64 = v272.l0                                          │

00:00:35 #2861 [Verbose] > │         let v275 : (float []) = v269.[int v274]                              │

00:00:35 #2862 [Verbose] > │         let v276 : float = v275 |> Array.average                             │

00:00:35 #2863 [Verbose] > │         v271.[int v274] <- v276                                              │

00:00:35 #2864 [Verbose] > │         let v277 : uint64 = v274 + 1UL                                       │

00:00:35 #2865 [Verbose] > │         v272.l0 <- v277                                                      │

00:00:35 #2866 [Verbose] > │         ()                                                                   │

00:00:35 #2867 [Verbose] > │     let v278 : (float -> int64) = int64                                      │

00:00:35 #2868 [Verbose] > │     let v279 : uint64 = System.Convert.ToUInt64 v271.Length                  │

00:00:35 #2869 [Verbose] > │     let v280 : (int64 []) = Array.zeroCreate<int64>                          │

00:00:35 #2870 [Verbose] > │ (System.Convert.ToInt32(v279))                                               │

00:00:35 #2871 [Verbose] > │     let v281 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:35 #2872 [Verbose] > │     while method4(v279, v281) do                                             │

00:00:35 #2873 [Verbose] > │         let v283 : uint64 = v281.l0                                          │

00:00:35 #2874 [Verbose] > │         let v284 : float = v271.[int v283]                                   │

00:00:35 #2875 [Verbose] > │         let v285 : int64 = v278 v284                                         │

00:00:35 #2876 [Verbose] > │         v280.[int v283] <- v285                                              │

00:00:35 #2877 [Verbose] > │         let v286 : uint64 = v283 + 1UL                                       │

00:00:35 #2878 [Verbose] > │         v281.l0 <- v286                                                      │

00:00:35 #2879 [Verbose] > │         ()                                                                   │

00:00:35 #2880 [Verbose] > │     let v287 : uint64 = System.Convert.ToUInt64 v280.Length                  │

00:00:35 #2881 [Verbose] > │     let v288 : UH5 = UH5_1                                                   │

00:00:35 #2882 [Verbose] > │     let v289 : Mut3 = {l0 = 0UL; l1 = v288; l2 = 0} : Mut3                   │

00:00:35 #2883 [Verbose] > │     while method22(v287, v289) do                                            │

00:00:35 #2884 [Verbose] > │         let v291 : uint64 = v289.l0                                          │

00:00:35 #2885 [Verbose] > │         let struct (v292 : UH5, v293 : int32) = v289.l1, v289.l2             │

00:00:35 #2886 [Verbose] > │         let v294 : int64 = v280.[int v291]                                   │

00:00:35 #2887 [Verbose] > │         let v295 : int32 = v293 + 1                                          │

00:00:35 #2888 [Verbose] > │         let v296 : uint64 = v291 + 1UL                                       │

00:00:35 #2889 [Verbose] > │         let v297 : UH5 = UH5_0(v293, v294, v292)                             │

00:00:35 #2890 [Verbose] > │         v289.l0 <- v296                                                      │

00:00:35 #2891 [Verbose] > │         v289.l1 <- v297                                                      │

00:00:35 #2892 [Verbose] > │         v289.l2 <- v295                                                      │

00:00:35 #2893 [Verbose] > │         ()                                                                   │

00:00:35 #2894 [Verbose] > │     let struct (v298 : UH5, v299 : int32) = v289.l1, v289.l2                 │

00:00:35 #2895 [Verbose] > │     let v300 : UH5 = UH5_1                                                   │

00:00:35 #2896 [Verbose] > │     let v301 : UH5 = method23(v298, v300)                                    │

00:00:35 #2897 [Verbose] > │     let v302 : (struct (int32 * int64) []) = method33(v301)                  │

00:00:35 #2898 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:35 #2899 [Verbose] > │     let v303 : string = "Average Ranking  "                                  │

00:00:35 #2900 [Verbose] > │     System.Console.WriteLine v303                                            │

00:00:35 #2901 [Verbose] > │     let v304 : (struct (int32 * int64) -> int64) = closure5()                │

00:00:35 #2902 [Verbose] > │     let v305 : (struct (int32 * int64) []) = v302 |> Array.sortBy v304       │

00:00:35 #2903 [Verbose] > │     let v306 : uint64 = System.Convert.ToUInt64 v305.Length                  │

00:00:35 #2904 [Verbose] > │     let v307 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:00:35 #2905 [Verbose] > │     while method4(v306, v307) do                                             │

00:00:35 #2906 [Verbose] > │         let v309 : uint64 = v307.l0                                          │

00:00:35 #2907 [Verbose] > │         let struct (v310 : int32, v311 : int64) = v305.[int v309]            │

00:00:35 #2908 [Verbose] > │         let v312 : string = $"Test case %d{v310 + 1}. Average Time: %A{v311} │

00:00:35 #2909 [Verbose] > │ "                                                                            │

00:00:35 #2910 [Verbose] > │         System.Console.WriteLine v312                                        │

00:00:35 #2911 [Verbose] > │         let v313 : uint64 = v309 + 1UL                                       │

00:00:35 #2912 [Verbose] > │         v307.l0 <- v313                                                      │

00:00:35 #2913 [Verbose] > │         ()                                                                   │

00:00:35 #2914 [Verbose] > │     ()                                                                       │

00:00:35 #2915 [Verbose] > │ method0()                                                                    │

00:00:35 #2916 [Verbose] > │                                                                              │

00:00:35 #2917 [Verbose] > │                                                                              │

00:00:35 #2918 [Verbose] > │                                                                              │

00:00:35 #2919 [Verbose] > │ Test: v0                                                                     │

00:00:35 #2920 [Verbose] > │                                                                              │

00:00:35 #2921 [Verbose] > │ Solution: 0.0                                                                │

00:00:35 #2922 [Verbose] > │ Test case 1. A. Time: 31                                                     │

00:00:35 #2923 [Verbose] > │                                                                              │

00:00:35 #2924 [Verbose] > │ Solution: 2.0                                                                │

00:00:35 #2925 [Verbose] > │ Test case 1. A. Time: 13                                                     │

00:00:35 #2926 [Verbose] > │                                                                              │

00:00:35 #2927 [Verbose] > │ Solution: 5.0                                                                │

00:00:35 #2928 [Verbose] > │ Test case 1. A. Time: 16                                                     │

00:00:35 #2929 [Verbose] > │                                                                              │

00:00:35 #2930 [Verbose] > │ Input	| Expected	| Result	| Best                                                   │

00:00:35 #2931 [Verbose] > │ ---  	| ---     	| ---   	| ---                                                    │

00:00:35 #2932 [Verbose] > │ 0.0  	| 1.0     	| 1.0   	| struct (1L, 31L)                                       │

00:00:35 #2933 [Verbose] > │ 2.0  	| 3.0     	| 3.0   	| struct (1L, 13L)                                       │

00:00:35 #2934 [Verbose] > │ 5.0  	| 6.0     	| 6.0   	| struct (1L, 16L)                                       │

00:00:35 #2935 [Verbose] > │                                                                              │

00:00:35 #2936 [Verbose] > │ Average Ranking                                                              │

00:00:35 #2937 [Verbose] > │ Test case 1. Average Time: 20L                                               │

00:00:35 #2938 [Verbose] > │                                                                              │

00:00:35 #2939 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:37 #2940 [Verbose] > [NbConvertApp] Converting notebook benchmark.dib.ipynb to html

00:00:37 #2941 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:00:37 #2942 [Verbose] >   validate(nb)

00:00:38 #2943 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:00:38 #2944 [Verbose] >   return _pygments_highlight(

00:00:38 #2945 [Verbose] > [NbConvertApp] Writing 406228 bytes to benchmark.dib.html

00:00:39 #2946 [Debug] executeAsync / exitCode: 0 / output.Length: 221255

00:00:39 #2947 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\lib\spiral

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 stream.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:04 #11 [Verbose] >

00:00:04 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:04 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:04 #14 [Verbose] > │ # stream                                                                     │

00:00:04 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:04 #16 [Verbose] >

00:00:04 #17 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:04 #18 [Verbose] > // // test

00:00:04 #19 [Verbose] >

00:00:04 #20 [Verbose] > open testing

00:00:08 #21 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1637-5778-7817-7c2bb6cad5ad\main.spi

00:00:11 #22 [Verbose] >

00:00:11 #23 [Verbose] > ╭─[ 6.92s - stdout ]───────────────────────────────────────────────────────────╮

00:00:11 #24 [Verbose] > │ ()                                                                           │

00:00:11 #25 [Verbose] > │                                                                              │

00:00:11 #26 [Verbose] > │                                                                              │

00:00:11 #27 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #28 [Verbose] >

00:00:11 #29 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:11 #30 [Verbose] > union rec stream t =

00:00:11 #31 [Verbose] >     | StreamCons : t * (() -> stream t)

00:00:11 #32 [Verbose] >     | StreamNil

00:00:11 #33 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0195-9569-92d87cf2e4af\main.spi

00:00:11 #34 [Verbose] >

00:00:11 #35 [Verbose] > ╭─[ 234.23ms - stdout ]────────────────────────────────────────────────────────╮

00:00:11 #36 [Verbose] > │ ()                                                                           │

00:00:11 #37 [Verbose] > │                                                                              │

00:00:11 #38 [Verbose] > │                                                                              │

00:00:11 #39 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #40 [Verbose] >

00:00:11 #41 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:11 #42 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:11 #43 [Verbose] > │ ## fold                                                                      │

00:00:11 #44 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #45 [Verbose] >

00:00:11 #46 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:11 #47 [Verbose] > inl fold fn init s =

00:00:11 #48 [Verbose] >     inl rec body acc = function

00:00:11 #49 [Verbose] >         | StreamCons (st, fn') => loop (fn acc st) (fn' ())

00:00:11 #50 [Verbose] >         | StreamNil => acc

00:00:11 #51 [Verbose] >     and inl loop acc = join_body body acc

00:00:11 #52 [Verbose] >     loop init s

00:00:12 #53 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0219-1982-114b8ee50b4f\main.spi

00:00:12 #54 [Verbose] >

00:00:12 #55 [Verbose] > ╭─[ 263.32ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #56 [Verbose] > │ ()                                                                           │

00:00:12 #57 [Verbose] > │                                                                              │

00:00:12 #58 [Verbose] > │                                                                              │

00:00:12 #59 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #60 [Verbose] >

00:00:12 #61 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #62 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #63 [Verbose] > │ ## fold_back                                                                 │

00:00:12 #64 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #65 [Verbose] >

00:00:12 #66 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #67 [Verbose] > inl fold_back fn s init =

00:00:12 #68 [Verbose] >     inl rec body acc = function

00:00:12 #69 [Verbose] >         | StreamCons (st, fn') => fn st (loop acc (fn' ()))

00:00:12 #70 [Verbose] >         | StreamNil => acc

00:00:12 #71 [Verbose] >     and inl loop acc = join_body body acc

00:00:12 #72 [Verbose] >     loop init s

00:00:12 #73 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0246-4626-40332a18732d\main.spi

00:00:12 #74 [Verbose] >

00:00:12 #75 [Verbose] > ╭─[ 263.78ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #76 [Verbose] > │ ()                                                                           │

00:00:12 #77 [Verbose] > │                                                                              │

00:00:12 #78 [Verbose] > │                                                                              │

00:00:12 #79 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #80 [Verbose] >

00:00:12 #81 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #82 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #83 [Verbose] > │ ## to_list                                                                   │

00:00:12 #84 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #85 [Verbose] >

00:00:12 #86 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #87 [Verbose] > inl to_list s =

00:00:12 #88 [Verbose] >     (s, [[]])

00:00:12 #89 [Verbose] >     ||> fold_back fun x acc =>

00:00:12 #90 [Verbose] >         x :: acc

00:00:12 #91 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0273-7357-74e44ccba394\main.spi

00:00:12 #92 [Verbose] >

00:00:12 #93 [Verbose] > ╭─[ 229.13ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #94 [Verbose] > │ ()                                                                           │

00:00:12 #95 [Verbose] > │                                                                              │

00:00:12 #96 [Verbose] > │                                                                              │

00:00:12 #97 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #98 [Verbose] >

00:00:12 #99 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #100 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #101 [Verbose] > │ ## rev                                                                       │

00:00:12 #102 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #103 [Verbose] >

00:00:12 #104 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #105 [Verbose] > inl rev s =

00:00:12 #106 [Verbose] >     (StreamNil, s)

00:00:12 #107 [Verbose] >     ||> fold fun s x =>

00:00:12 #108 [Verbose] >         StreamCons (x, fun () => s)

00:00:12 #109 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0297-9701-9d8a730d6897\main.spi

00:00:12 #110 [Verbose] >

00:00:12 #111 [Verbose] > ╭─[ 243.61ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #112 [Verbose] > │ ()                                                                           │

00:00:12 #113 [Verbose] > │                                                                              │

00:00:12 #114 [Verbose] > │                                                                              │

00:00:12 #115 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #116 [Verbose] >

00:00:12 #117 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #118 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #119 [Verbose] > │ ## from_list                                                                 │

00:00:12 #120 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #121 [Verbose] >

00:00:12 #122 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #123 [Verbose] > inl from_list list =

00:00:12 #124 [Verbose] >     (list, StreamNil)

00:00:12 #125 [Verbose] >     ||> listm.foldBack fun x acc =>

00:00:12 #126 [Verbose] >         StreamCons (x, fun () => acc)

00:00:13 #127 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0322-2245-2a09cc2b717b\main.spi

00:00:13 #128 [Verbose] >

00:00:13 #129 [Verbose] > ╭─[ 232.20ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #130 [Verbose] > │ ()                                                                           │

00:00:13 #131 [Verbose] > │                                                                              │

00:00:13 #132 [Verbose] > │                                                                              │

00:00:13 #133 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #134 [Verbose] >

00:00:13 #135 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:13 #136 [Verbose] > // // test

00:00:13 #137 [Verbose] >

00:00:13 #138 [Verbose] > listm.init 3i32 id

00:00:13 #139 [Verbose] > |> from_list

00:00:13 #140 [Verbose] > |> rev

00:00:13 #141 [Verbose] > |> to_list

00:00:13 #142 [Verbose] > |> _equal [[ 2; 1; 0 ]]

00:00:13 #143 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0345-4549-4416657717f9\main.spi

00:00:14 #144 [Verbose] >

00:00:14 #145 [Verbose] > ╭─[ 1.58s - stdout ]───────────────────────────────────────────────────────────╮

00:00:14 #146 [Verbose] > │ type UH0 =                                                                   │

00:00:14 #147 [Verbose] > │     | UH0_0 of int32 * UH0                                                   │

00:00:14 #148 [Verbose] > │     | UH0_1                                                                  │

00:00:14 #149 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:14 #150 [Verbose] > │     let v0 : UH0 = UH0_1                                                     │

00:00:14 #151 [Verbose] > │     let v1 : UH0 = UH0_0(0, v0)                                              │

00:00:14 #152 [Verbose] > │     let v2 : UH0 = UH0_0(1, v1)                                              │

00:00:14 #153 [Verbose] > │     let v3 : UH0 = UH0_0(2, v2)                                              │

00:00:14 #154 [Verbose] > │     let v4 : UH0 = UH0_1                                                     │

00:00:14 #155 [Verbose] > │     let v5 : UH0 = UH0_0(0, v4)                                              │

00:00:14 #156 [Verbose] > │     let v6 : UH0 = UH0_0(1, v5)                                              │

00:00:14 #157 [Verbose] > │     let v7 : UH0 = UH0_0(2, v6)                                              │

00:00:14 #158 [Verbose] > │     let v8 : string = $"__expect / actual: %A{v3} / expected: %A{v7}"        │

00:00:14 #159 [Verbose] > │     ()                                                                       │

00:00:14 #160 [Verbose] > │ method0()                                                                    │

00:00:14 #161 [Verbose] > │                                                                              │

00:00:14 #162 [Verbose] > │                                                                              │

00:00:14 #163 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #164 [Verbose] >

00:00:14 #165 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:14 #166 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:14 #167 [Verbose] > │ ## try_item                                                                  │

00:00:14 #168 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #169 [Verbose] >

00:00:14 #170 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #171 [Verbose] > inl try_item i s =

00:00:14 #172 [Verbose] >     inl rec body i = function

00:00:14 #173 [Verbose] >         | StreamCons (x, _) when i <= 0 => Some x

00:00:14 #174 [Verbose] >         | StreamCons (_, fn) => loop (i - 1) (fn ())

00:00:14 #175 [Verbose] >         | StreamNil => None

00:00:14 #176 [Verbose] >     and inl loop acc s' =

00:00:14 #177 [Verbose] >         match var_is acc, var_is s' with

00:00:14 #178 [Verbose] >         | false, false => body acc s'

00:00:14 #179 [Verbose] >         | _ =>

00:00:14 #180 [Verbose] >             inl acc = dyn acc

00:00:14 #181 [Verbose] >             inl s' = dyn s'

00:00:14 #182 [Verbose] >             join body acc s'

00:00:14 #183 [Verbose] >     loop i s

00:00:14 #184 [Verbose] >

00:00:14 #185 [Verbose] > inl item i =

00:00:14 #186 [Verbose] >     try_item i >> optionm.value

00:00:14 #187 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0504-0460-046608ec1822\main.spi

00:00:14 #188 [Verbose] >

00:00:14 #189 [Verbose] > ╭─[ 232.86ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #190 [Verbose] > │ ()                                                                           │

00:00:14 #191 [Verbose] > │                                                                              │

00:00:14 #192 [Verbose] > │                                                                              │

00:00:14 #193 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #194 [Verbose] >

00:00:14 #195 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #196 [Verbose] > // // test

00:00:14 #197 [Verbose] >

00:00:14 #198 [Verbose] > listm.init 10i32 id

00:00:14 #199 [Verbose] > |> from_list

00:00:14 #200 [Verbose] > |> item 9i32

00:00:14 #201 [Verbose] > |> _equal 9

00:00:15 #202 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0527-2776-2013b929c4cb\main.spi

00:00:15 #203 [Verbose] >

00:00:15 #204 [Verbose] > ╭─[ 224.26ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #205 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:15 #206 [Verbose] > │     let v0 : string = $"__expect / actual: %A{9} / expected: %A{9}"          │

00:00:15 #207 [Verbose] > │     ()                                                                       │

00:00:15 #208 [Verbose] > │ method0()                                                                    │

00:00:15 #209 [Verbose] > │                                                                              │

00:00:15 #210 [Verbose] > │                                                                              │

00:00:15 #211 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #212 [Verbose] >

00:00:15 #213 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #214 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #215 [Verbose] > │ ## new_infinite_stream                                                       │

00:00:15 #216 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #217 [Verbose] >

00:00:15 #218 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #219 [Verbose] > inl new_infinite_stream fn =

00:00:15 #220 [Verbose] >     inl rec loop n =

00:00:15 #221 [Verbose] >         StreamCons (fn n, fun () => loop (n + 1))

00:00:15 #222 [Verbose] >     loop 0

00:00:15 #223 [Verbose] >

00:00:15 #224 [Verbose] > inl new_infinite_stream_ fn =

00:00:15 #225 [Verbose] >     let rec loop n =

00:00:15 #226 [Verbose] >         StreamCons (fn n, fun () => loop (n + 1))

00:00:15 #227 [Verbose] >     loop 0

00:00:15 #228 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0550-5090-55fee4f9f07c\main.spi

00:00:15 #229 [Verbose] >

00:00:15 #230 [Verbose] > ╭─[ 209.56ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #231 [Verbose] > │ ()                                                                           │

00:00:15 #232 [Verbose] > │                                                                              │

00:00:15 #233 [Verbose] > │                                                                              │

00:00:15 #234 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #235 [Verbose] >

00:00:15 #236 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #237 [Verbose] > // // test

00:00:15 #238 [Verbose] >

00:00:15 #239 [Verbose] > new_infinite_stream print_and_return

00:00:15 #240 [Verbose] > |> item 4i32

00:00:15 #241 [Verbose] > |> _equal 4i32

00:00:15 #242 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0572-7222-7087e0d11bc9\main.spi

00:00:15 #243 [Verbose] >

00:00:15 #244 [Verbose] > ╭─[ 375.64ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #245 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:15 #246 [Verbose] > │     printfn $"print_and_return / x: {0}"                                     │

00:00:15 #247 [Verbose] > │     printfn $"print_and_return / x: {1}"                                     │

00:00:15 #248 [Verbose] > │     printfn $"print_and_return / x: {2}"                                     │

00:00:15 #249 [Verbose] > │     printfn $"print_and_return / x: {3}"                                     │

00:00:15 #250 [Verbose] > │     printfn $"print_and_return / x: {4}"                                     │

00:00:15 #251 [Verbose] > │     let v0 : string = $"__expect / actual: %A{4} / expected: %A{4}"          │

00:00:15 #252 [Verbose] > │     ()                                                                       │

00:00:15 #253 [Verbose] > │ method0()                                                                    │

00:00:15 #254 [Verbose] > │                                                                              │

00:00:15 #255 [Verbose] > │ print_and_return / x: 0                                                      │

00:00:15 #256 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:15 #257 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:15 #258 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:15 #259 [Verbose] > │ print_and_return / x: 4                                                      │

00:00:15 #260 [Verbose] > │                                                                              │

00:00:15 #261 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #262 [Verbose] >

00:00:15 #263 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #264 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #265 [Verbose] > │ ## new_finite_stream                                                         │

00:00:15 #266 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #267 [Verbose] >

00:00:15 #268 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #269 [Verbose] > inl new_finite_stream fn max =

00:00:15 #270 [Verbose] >     inl rec loop n =

00:00:15 #271 [Verbose] >         if n >= max

00:00:15 #272 [Verbose] >         then StreamNil

00:00:15 #273 [Verbose] >         else StreamCons (fn n, fun () => loop (n + 1))

00:00:15 #274 [Verbose] >     loop 0

00:00:15 #275 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0611-1112-1589546af6ac\main.spi

00:00:16 #276 [Verbose] >

00:00:16 #277 [Verbose] > ╭─[ 193.49ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #278 [Verbose] > │ ()                                                                           │

00:00:16 #279 [Verbose] > │                                                                              │

00:00:16 #280 [Verbose] > │                                                                              │

00:00:16 #281 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #282 [Verbose] >

00:00:16 #283 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #284 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #285 [Verbose] > │ ## memoize                                                                   │

00:00:16 #286 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #287 [Verbose] >

00:00:16 #288 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #289 [Verbose] > union memoized_stream t =

00:00:16 #290 [Verbose] >     | NotComputed : () -> stream t

00:00:16 #291 [Verbose] >     | Computed : stream t

00:00:16 #292 [Verbose] >

00:00:16 #293 [Verbose] > inl memoize s =

00:00:16 #294 [Verbose] >     inl rec body s =

00:00:16 #295 [Verbose] >         inl state = mut (NotComputed s)

00:00:16 #296 [Verbose] >         fun () =>

00:00:16 #297 [Verbose] >             match *state with

00:00:16 #298 [Verbose] >             | Computed x => x

00:00:16 #299 [Verbose] >             | NotComputed fn =>

00:00:16 #300 [Verbose] >                 inl new_state =

00:00:16 #301 [Verbose] >                     match fn () with

00:00:16 #302 [Verbose] >                     | StreamNil => StreamNil

00:00:16 #303 [Verbose] >                     | StreamCons (x, fn) => StreamCons (x, loop fn)

00:00:16 #304 [Verbose] >                 state <- Computed new_state

00:00:16 #305 [Verbose] >                 new_state

00:00:16 #306 [Verbose] >     and inl loop s' = join_body_unit body s s'

00:00:16 #307 [Verbose] >     loop (fun () => s)

00:00:16 #308 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0631-3157-38ef426841fd\main.spi

00:00:16 #309 [Verbose] >

00:00:16 #310 [Verbose] > ╭─[ 218.24ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #311 [Verbose] > │ ()                                                                           │

00:00:16 #312 [Verbose] > │                                                                              │

00:00:16 #313 [Verbose] > │                                                                              │

00:00:16 #314 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #315 [Verbose] >

00:00:16 #316 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #317 [Verbose] > // // test

00:00:16 #318 [Verbose] >

00:00:16 #319 [Verbose] > inl memo_stream = new_finite_stream print_and_return 10 |> memoize

00:00:16 #320 [Verbose] >

00:00:16 #321 [Verbose] > memo_stream ()

00:00:16 #322 [Verbose] > |> item 3i32

00:00:16 #323 [Verbose] > |> _equal 3i32

00:00:16 #324 [Verbose] >

00:00:16 #325 [Verbose] > memo_stream ()

00:00:16 #326 [Verbose] > |> item 5i32

00:00:16 #327 [Verbose] > |> _equal 5i32

00:00:16 #328 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0653-5371-5ccbc7f1a040\main.spi

00:00:17 #329 [Verbose] >

00:00:17 #330 [Verbose] > ╭─[ 854.37ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #331 [Verbose] > │ type UH0 =                                                                   │

00:00:17 #332 [Verbose] > │     | UH0_0 of int32 * (unit -> UH0)                                         │

00:00:17 #333 [Verbose] > │     | UH0_1                                                                  │

00:00:17 #334 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:17 #335 [Verbose] > │     | US0_0 of f0_0 : UH0                                                    │

00:00:17 #336 [Verbose] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

00:00:17 #337 [Verbose] > │ and Mut0 = {mutable l0 : US0}                                                │

00:00:17 #338 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:17 #339 [Verbose] > │     | US1_0                                                                  │

00:00:17 #340 [Verbose] > │     | US1_1 of f1_0 : int32                                                  │

00:00:17 #341 [Verbose] > │ let rec closure10 () () : UH0 =                                              │

00:00:17 #342 [Verbose] > │     UH0_1                                                                    │

00:00:17 #343 [Verbose] > │ and closure9 () () : UH0 =                                                   │

00:00:17 #344 [Verbose] > │     printfn $"print_and_return / x: {9}"                                     │

00:00:17 #345 [Verbose] > │     let v0 : (unit -> UH0) = closure10()                                     │

00:00:17 #346 [Verbose] > │     UH0_0(9, v0)                                                             │

00:00:17 #347 [Verbose] > │ and closure8 () () : UH0 =                                                   │

00:00:17 #348 [Verbose] > │     printfn $"print_and_return / x: {8}"                                     │

00:00:17 #349 [Verbose] > │     let v0 : (unit -> UH0) = closure9()                                      │

00:00:17 #350 [Verbose] > │     UH0_0(8, v0)                                                             │

00:00:17 #351 [Verbose] > │ and closure7 () () : UH0 =                                                   │

00:00:17 #352 [Verbose] > │     printfn $"print_and_return / x: {7}"                                     │

00:00:17 #353 [Verbose] > │     let v0 : (unit -> UH0) = closure8()                                      │

00:00:17 #354 [Verbose] > │     UH0_0(7, v0)                                                             │

00:00:17 #355 [Verbose] > │ and closure6 () () : UH0 =                                                   │

00:00:17 #356 [Verbose] > │     printfn $"print_and_return / x: {6}"                                     │

00:00:17 #357 [Verbose] > │     let v0 : (unit -> UH0) = closure7()                                      │

00:00:17 #358 [Verbose] > │     UH0_0(6, v0)                                                             │

00:00:17 #359 [Verbose] > │ and closure5 () () : UH0 =                                                   │

00:00:17 #360 [Verbose] > │     printfn $"print_and_return / x: {5}"                                     │

00:00:17 #361 [Verbose] > │     let v0 : (unit -> UH0) = closure6()                                      │

00:00:17 #362 [Verbose] > │     UH0_0(5, v0)                                                             │

00:00:17 #363 [Verbose] > │ and closure4 () () : UH0 =                                                   │

00:00:17 #364 [Verbose] > │     printfn $"print_and_return / x: {4}"                                     │

00:00:17 #365 [Verbose] > │     let v0 : (unit -> UH0) = closure5()                                      │

00:00:17 #366 [Verbose] > │     UH0_0(4, v0)                                                             │

00:00:17 #367 [Verbose] > │ and closure3 () () : UH0 =                                                   │

00:00:17 #368 [Verbose] > │     printfn $"print_and_return / x: {3}"                                     │

00:00:17 #369 [Verbose] > │     let v0 : (unit -> UH0) = closure4()                                      │

00:00:17 #370 [Verbose] > │     UH0_0(3, v0)                                                             │

00:00:17 #371 [Verbose] > │ and closure2 () () : UH0 =                                                   │

00:00:17 #372 [Verbose] > │     printfn $"print_and_return / x: {2}"                                     │

00:00:17 #373 [Verbose] > │     let v0 : (unit -> UH0) = closure3()                                      │

00:00:17 #374 [Verbose] > │     UH0_0(2, v0)                                                             │

00:00:17 #375 [Verbose] > │ and closure1 () () : UH0 =                                                   │

00:00:17 #376 [Verbose] > │     printfn $"print_and_return / x: {1}"                                     │

00:00:17 #377 [Verbose] > │     let v0 : (unit -> UH0) = closure2()                                      │

00:00:17 #378 [Verbose] > │     UH0_0(1, v0)                                                             │

00:00:17 #379 [Verbose] > │ and closure0 () () : UH0 =                                                   │

00:00:17 #380 [Verbose] > │     let v0 : (unit -> UH0) = closure1()                                      │

00:00:17 #381 [Verbose] > │     UH0_0(0, v0)                                                             │

00:00:17 #382 [Verbose] > │ and closure11 (v0 : Mut0) () : UH0 =                                         │

00:00:17 #383 [Verbose] > │     let v1 : US0 = v0.l0                                                     │

00:00:17 #384 [Verbose] > │     match v1 with                                                            │

00:00:17 #385 [Verbose] > │     | US0_0(v2) -> (* Computed *)                                            │

00:00:17 #386 [Verbose] > │         v2                                                                   │

00:00:17 #387 [Verbose] > │     | US0_1(v3) -> (* NotComputed *)                                         │

00:00:17 #388 [Verbose] > │         let v4 : UH0 = v3 ()                                                 │

00:00:17 #389 [Verbose] > │         let v13 : UH0 =                                                      │

00:00:17 #390 [Verbose] > │             match v4 with                                                    │

00:00:17 #391 [Verbose] > │             | UH0_0(v6, v7) -> (* StreamCons *)                              │

00:00:17 #392 [Verbose] > │                 let v8 : US0 = US0_1(v7)                                     │

00:00:17 #393 [Verbose] > │                 let v9 : Mut0 = {l0 = v8} : Mut0                             │

00:00:17 #394 [Verbose] > │                 let v10 : (unit -> UH0) = closure11(v9)                      │

00:00:17 #395 [Verbose] > │                 UH0_0(v6, v10)                                               │

00:00:17 #396 [Verbose] > │             | UH0_1 -> (* StreamNil *)                                       │

00:00:17 #397 [Verbose] > │                 UH0_1                                                        │

00:00:17 #398 [Verbose] > │         let v14 : US0 = US0_0(v13)                                           │

00:00:17 #399 [Verbose] > │         v0.l0 <- v14                                                         │

00:00:17 #400 [Verbose] > │         v13                                                                  │

00:00:17 #401 [Verbose] > │ and method1 (v0 : int32, v1 : UH0) : US1 =                                   │

00:00:17 #402 [Verbose] > │     match v1 with                                                            │

00:00:17 #403 [Verbose] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

00:00:17 #404 [Verbose] > │         let v4 : bool = v0 <= 0                                              │

00:00:17 #405 [Verbose] > │         if v4 then                                                           │

00:00:17 #406 [Verbose] > │             US1_1(v2)                                                        │

00:00:17 #407 [Verbose] > │         else                                                                 │

00:00:17 #408 [Verbose] > │             let v6 : int32 = v0 - 1                                          │

00:00:17 #409 [Verbose] > │             let v7 : UH0 = v3 ()                                             │

00:00:17 #410 [Verbose] > │             method1(v6, v7)                                                  │

00:00:17 #411 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:17 #412 [Verbose] > │         US1_0                                                                │

00:00:17 #413 [Verbose] > │ and method0 () : unit =                                                      │

00:00:17 #414 [Verbose] > │     printfn $"print_and_return / x: {0}"                                     │

00:00:17 #415 [Verbose] > │     let v0 : (unit -> UH0) = closure0()                                      │

00:00:17 #416 [Verbose] > │     let v1 : US0 = US0_1(v0)                                                 │

00:00:17 #417 [Verbose] > │     let v2 : Mut0 = {l0 = v1} : Mut0                                         │

00:00:17 #418 [Verbose] > │     let v3 : US0 = v2.l0                                                     │

00:00:17 #419 [Verbose] > │     let v18 : UH0 =                                                          │

00:00:17 #420 [Verbose] > │         match v3 with                                                        │

00:00:17 #421 [Verbose] > │         | US0_0(v4) -> (* Computed *)                                        │

00:00:17 #422 [Verbose] > │             v4                                                               │

00:00:17 #423 [Verbose] > │         | US0_1(v5) -> (* NotComputed *)                                     │

00:00:17 #424 [Verbose] > │             let v6 : UH0 = v5 ()                                             │

00:00:17 #425 [Verbose] > │             let v15 : UH0 =                                                  │

00:00:17 #426 [Verbose] > │                 match v6 with                                                │

00:00:17 #427 [Verbose] > │                 | UH0_0(v8, v9) -> (* StreamCons *)                          │

00:00:17 #428 [Verbose] > │                     let v10 : US0 = US0_1(v9)                                │

00:00:17 #429 [Verbose] > │                     let v11 : Mut0 = {l0 = v10} : Mut0                       │

00:00:17 #430 [Verbose] > │                     let v12 : (unit -> UH0) = closure11(v11)                 │

00:00:17 #431 [Verbose] > │                     UH0_0(v8, v12)                                           │

00:00:17 #432 [Verbose] > │                 | UH0_1 -> (* StreamNil *)                                   │

00:00:17 #433 [Verbose] > │                     UH0_1                                                    │

00:00:17 #434 [Verbose] > │             let v16 : US0 = US0_0(v15)                                       │

00:00:17 #435 [Verbose] > │             v2.l0 <- v16                                                     │

00:00:17 #436 [Verbose] > │             v15                                                              │

00:00:17 #437 [Verbose] > │     let v19 : int32 = 3                                                      │

00:00:17 #438 [Verbose] > │     let v20 : US1 = method1(v19, v18)                                        │

00:00:17 #439 [Verbose] > │     let v24 : int32 =                                                        │

00:00:17 #440 [Verbose] > │         match v20 with                                                       │

00:00:17 #441 [Verbose] > │         | US1_0 -> (* None *)                                                │

00:00:17 #442 [Verbose] > │             failwith<int32> "Option does not have a value."                  │

00:00:17 #443 [Verbose] > │         | US1_1(v21) -> (* Some *)                                           │

00:00:17 #444 [Verbose] > │             v21                                                              │

00:00:17 #445 [Verbose] > │     let v25 : string = $"__expect / actual: %A{v24} / expected: %A{3}"       │

00:00:17 #446 [Verbose] > │     let v26 : bool = v24 = 3                                                 │

00:00:17 #447 [Verbose] > │     let v27 : bool = v26 = false                                             │

00:00:17 #448 [Verbose] > │     if v27 then                                                              │

00:00:17 #449 [Verbose] > │         failwith<unit> v25                                                   │

00:00:17 #450 [Verbose] > │     let v28 : US0 = v2.l0                                                    │

00:00:17 #451 [Verbose] > │     let v43 : UH0 =                                                          │

00:00:17 #452 [Verbose] > │         match v28 with                                                       │

00:00:17 #453 [Verbose] > │         | US0_0(v29) -> (* Computed *)                                       │

00:00:17 #454 [Verbose] > │             v29                                                              │

00:00:17 #455 [Verbose] > │         | US0_1(v30) -> (* NotComputed *)                                    │

00:00:17 #456 [Verbose] > │             let v31 : UH0 = v30 ()                                           │

00:00:17 #457 [Verbose] > │             let v40 : UH0 =                                                  │

00:00:17 #458 [Verbose] > │                 match v31 with                                               │

00:00:17 #459 [Verbose] > │                 | UH0_0(v33, v34) -> (* StreamCons *)                        │

00:00:17 #460 [Verbose] > │                     let v35 : US0 = US0_1(v34)                               │

00:00:17 #461 [Verbose] > │                     let v36 : Mut0 = {l0 = v35} : Mut0                       │

00:00:17 #462 [Verbose] > │                     let v37 : (unit -> UH0) = closure11(v36)                 │

00:00:17 #463 [Verbose] > │                     UH0_0(v33, v37)                                          │

00:00:17 #464 [Verbose] > │                 | UH0_1 -> (* StreamNil *)                                   │

00:00:17 #465 [Verbose] > │                     UH0_1                                                    │

00:00:17 #466 [Verbose] > │             let v41 : US0 = US0_0(v40)                                       │

00:00:17 #467 [Verbose] > │             v2.l0 <- v41                                                     │

00:00:17 #468 [Verbose] > │             v40                                                              │

00:00:17 #469 [Verbose] > │     let v44 : int32 = 5                                                      │

00:00:17 #470 [Verbose] > │     let v45 : US1 = method1(v44, v43)                                        │

00:00:17 #471 [Verbose] > │     let v49 : int32 =                                                        │

00:00:17 #472 [Verbose] > │         match v45 with                                                       │

00:00:17 #473 [Verbose] > │         | US1_0 -> (* None *)                                                │

00:00:17 #474 [Verbose] > │             failwith<int32> "Option does not have a value."                  │

00:00:17 #475 [Verbose] > │         | US1_1(v46) -> (* Some *)                                           │

00:00:17 #476 [Verbose] > │             v46                                                              │

00:00:17 #477 [Verbose] > │     let v50 : string = $"__expect / actual: %A{v49} / expected: %A{5}"       │

00:00:17 #478 [Verbose] > │     let v51 : bool = v49 = 5                                                 │

00:00:17 #479 [Verbose] > │     let v52 : bool = v51 = false                                             │

00:00:17 #480 [Verbose] > │     if v52 then                                                              │

00:00:17 #481 [Verbose] > │         failwith<unit> v50                                                   │

00:00:17 #482 [Verbose] > │ method0()                                                                    │

00:00:17 #483 [Verbose] > │                                                                              │

00:00:17 #484 [Verbose] > │ print_and_return / x: 0                                                      │

00:00:17 #485 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:17 #486 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:17 #487 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:17 #488 [Verbose] > │ print_and_return / x: 4                                                      │

00:00:17 #489 [Verbose] > │ print_and_return / x: 5                                                      │

00:00:17 #490 [Verbose] > │                                                                              │

00:00:17 #491 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #492 [Verbose] >

00:00:17 #493 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #494 [Verbose] > // // test

00:00:17 #495 [Verbose] >

00:00:17 #496 [Verbose] > inl memo_stream = new_infinite_stream_ print_and_return |> memoize

00:00:17 #497 [Verbose] >

00:00:17 #498 [Verbose] > memo_stream ()

00:00:17 #499 [Verbose] > |> item 3i32

00:00:17 #500 [Verbose] > |> _equal 3i32

00:00:17 #501 [Verbose] >

00:00:17 #502 [Verbose] > memo_stream ()

00:00:17 #503 [Verbose] > |> item 5i32

00:00:17 #504 [Verbose] > |> _equal 5i32

00:00:17 #505 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0749-4961-4132739dc4bc\main.spi

00:00:17 #506 [Verbose] >

00:00:17 #507 [Verbose] > ╭─[ 295.82ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #508 [Verbose] > │ type UH0 =                                                                   │

00:00:17 #509 [Verbose] > │     | UH0_0 of int32 * (unit -> UH0)                                         │

00:00:17 #510 [Verbose] > │     | UH0_1                                                                  │

00:00:17 #511 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:17 #512 [Verbose] > │     | US0_0 of f0_0 : UH0                                                    │

00:00:17 #513 [Verbose] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

00:00:17 #514 [Verbose] > │ and Mut0 = {mutable l0 : US0}                                                │

00:00:17 #515 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:17 #516 [Verbose] > │     | US1_0                                                                  │

00:00:17 #517 [Verbose] > │     | US1_1 of f1_0 : int32                                                  │

00:00:17 #518 [Verbose] > │ let rec closure0 (v0 : int32) () : UH0 =                                     │

00:00:17 #519 [Verbose] > │     let v1 : int32 = v0 + 1                                                  │

00:00:17 #520 [Verbose] > │     method1(v1)                                                              │

00:00:17 #521 [Verbose] > │ and method1 (v0 : int32) : UH0 =                                             │

00:00:17 #522 [Verbose] > │     printfn $"print_and_return / x: {v0}"                                    │

00:00:17 #523 [Verbose] > │     let v1 : (unit -> UH0) = closure0(v0)                                    │

00:00:17 #524 [Verbose] > │     UH0_0(v0, v1)                                                            │

00:00:17 #525 [Verbose] > │ and closure1 (v0 : UH0) () : UH0 =                                           │

00:00:17 #526 [Verbose] > │     v0                                                                       │

00:00:17 #527 [Verbose] > │ and closure2 (v0 : UH0, v1 : Mut0) () : UH0 =                                │

00:00:17 #528 [Verbose] > │     let v2 : US0 = v1.l0                                                     │

00:00:17 #529 [Verbose] > │     match v2 with                                                            │

00:00:17 #530 [Verbose] > │     | US0_0(v3) -> (* Computed *)                                            │

00:00:17 #531 [Verbose] > │         v3                                                                   │

00:00:17 #532 [Verbose] > │     | US0_1(v4) -> (* NotComputed *)                                         │

00:00:17 #533 [Verbose] > │         let v5 : UH0 = v4 ()                                                 │

00:00:17 #534 [Verbose] > │         let v12 : UH0 =                                                      │

00:00:17 #535 [Verbose] > │             match v5 with                                                    │

00:00:17 #536 [Verbose] > │             | UH0_0(v7, v8) -> (* StreamCons *)                              │

00:00:17 #537 [Verbose] > │                 let v9 : (unit -> UH0) = method2(v0, v8)                     │

00:00:17 #538 [Verbose] > │                 UH0_0(v7, v9)                                                │

00:00:17 #539 [Verbose] > │             | UH0_1 -> (* StreamNil *)                                       │

00:00:17 #540 [Verbose] > │                 UH0_1                                                        │

00:00:17 #541 [Verbose] > │         let v13 : US0 = US0_0(v12)                                           │

00:00:17 #542 [Verbose] > │         v1.l0 <- v13                                                         │

00:00:17 #543 [Verbose] > │         v12                                                                  │

00:00:17 #544 [Verbose] > │ and method2 (v0 : UH0, v1 : (unit -> UH0)) : (unit -> UH0) =                 │

00:00:17 #545 [Verbose] > │     let v2 : US0 = US0_1(v1)                                                 │

00:00:17 #546 [Verbose] > │     let v3 : Mut0 = {l0 = v2} : Mut0                                         │

00:00:17 #547 [Verbose] > │     closure2(v0, v3)                                                         │

00:00:17 #548 [Verbose] > │ and method3 (v0 : int32, v1 : UH0) : US1 =                                   │

00:00:17 #549 [Verbose] > │     match v1 with                                                            │

00:00:17 #550 [Verbose] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

00:00:17 #551 [Verbose] > │         let v4 : bool = v0 <= 0                                              │

00:00:17 #552 [Verbose] > │         if v4 then                                                           │

00:00:17 #553 [Verbose] > │             US1_1(v2)                                                        │

00:00:17 #554 [Verbose] > │         else                                                                 │

00:00:17 #555 [Verbose] > │             let v6 : int32 = v0 - 1                                          │

00:00:17 #556 [Verbose] > │             let v7 : UH0 = v3 ()                                             │

00:00:17 #557 [Verbose] > │             method3(v6, v7)                                                  │

00:00:17 #558 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:17 #559 [Verbose] > │         US1_0                                                                │

00:00:17 #560 [Verbose] > │ and method0 () : unit =                                                      │

00:00:17 #561 [Verbose] > │     let v0 : int32 = 0                                                       │

00:00:17 #562 [Verbose] > │     let v1 : UH0 = method1(v0)                                               │

00:00:17 #563 [Verbose] > │     let v2 : (unit -> UH0) = closure1(v1)                                    │

00:00:17 #564 [Verbose] > │     let v3 : (unit -> UH0) = method2(v1, v2)                                 │

00:00:17 #565 [Verbose] > │     let v4 : UH0 = v3 ()                                                     │

00:00:17 #566 [Verbose] > │     let v5 : int32 = 3                                                       │

00:00:17 #567 [Verbose] > │     let v6 : US1 = method3(v5, v4)                                           │

00:00:17 #568 [Verbose] > │     let v10 : int32 =                                                        │

00:00:17 #569 [Verbose] > │         match v6 with                                                        │

00:00:17 #570 [Verbose] > │         | US1_0 -> (* None *)                                                │

00:00:17 #571 [Verbose] > │             failwith<int32> "Option does not have a value."                  │

00:00:17 #572 [Verbose] > │         | US1_1(v7) -> (* Some *)                                            │

00:00:17 #573 [Verbose] > │             v7                                                               │

00:00:17 #574 [Verbose] > │     let v11 : string = $"__expect / actual: %A{v10} / expected: %A{3}"       │

00:00:17 #575 [Verbose] > │     let v12 : bool = v10 = 3                                                 │

00:00:17 #576 [Verbose] > │     let v13 : bool = v12 = false                                             │

00:00:17 #577 [Verbose] > │     if v13 then                                                              │

00:00:17 #578 [Verbose] > │         failwith<unit> v11                                                   │

00:00:17 #579 [Verbose] > │     let v14 : UH0 = v3 ()                                                    │

00:00:17 #580 [Verbose] > │     let v15 : int32 = 5                                                      │

00:00:17 #581 [Verbose] > │     let v16 : US1 = method3(v15, v14)                                        │

00:00:17 #582 [Verbose] > │     let v20 : int32 =                                                        │

00:00:17 #583 [Verbose] > │         match v16 with                                                       │

00:00:17 #584 [Verbose] > │         | US1_0 -> (* None *)                                                │

00:00:17 #585 [Verbose] > │             failwith<int32> "Option does not have a value."                  │

00:00:17 #586 [Verbose] > │         | US1_1(v17) -> (* Some *)                                           │

00:00:17 #587 [Verbose] > │             v17                                                              │

00:00:17 #588 [Verbose] > │     let v21 : string = $"__expect / actual: %A{v20} / expected: %A{5}"       │

00:00:17 #589 [Verbose] > │     let v22 : bool = v20 = 5                                                 │

00:00:17 #590 [Verbose] > │     let v23 : bool = v22 = false                                             │

00:00:17 #591 [Verbose] > │     if v23 then                                                              │

00:00:17 #592 [Verbose] > │         failwith<unit> v21                                                   │

00:00:17 #593 [Verbose] > │ method0()                                                                    │

00:00:17 #594 [Verbose] > │                                                                              │

00:00:17 #595 [Verbose] > │ print_and_return / x: 0                                                      │

00:00:17 #596 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:17 #597 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:17 #598 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:17 #599 [Verbose] > │ print_and_return / x: 4                                                      │

00:00:17 #600 [Verbose] > │ print_and_return / x: 5                                                      │

00:00:17 #601 [Verbose] > │                                                                              │

00:00:17 #602 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #603 [Verbose] >

00:00:17 #604 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #605 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #606 [Verbose] > │ ## unfold                                                                    │

00:00:17 #607 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #608 [Verbose] >

00:00:17 #609 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #610 [Verbose] > inl unfold f x0 =

00:00:17 #611 [Verbose] >     inl rec body x =

00:00:17 #612 [Verbose] >         match f x with

00:00:17 #613 [Verbose] >         | Some (x', y) => StreamCons (x', fun () => loop y)

00:00:17 #614 [Verbose] >         | None => StreamNil

00:00:17 #615 [Verbose] >     and inl loop x = join_body_unit body x0 x

00:00:17 #616 [Verbose] >     loop x0

00:00:17 #617 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0785-8567-8cdc31b0020d\main.spi

00:00:17 #618 [Verbose] >

00:00:17 #619 [Verbose] > ╭─[ 193.62ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #620 [Verbose] > │ ()                                                                           │

00:00:17 #621 [Verbose] > │                                                                              │

00:00:17 #622 [Verbose] > │                                                                              │

00:00:17 #623 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #624 [Verbose] >

00:00:17 #625 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #626 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #627 [Verbose] > │ ## iterate                                                                   │

00:00:17 #628 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #629 [Verbose] >

00:00:17 #630 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #631 [Verbose] > inl iterate f =

00:00:17 #632 [Verbose] >     unfold (fun x => Some (x, f x))

00:00:17 #633 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0805-0560-00324cac56a7\main.spi

00:00:17 #634 [Verbose] >

00:00:17 #635 [Verbose] > ╭─[ 177.37ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #636 [Verbose] > │ ()                                                                           │

00:00:17 #637 [Verbose] > │                                                                              │

00:00:17 #638 [Verbose] > │                                                                              │

00:00:17 #639 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #640 [Verbose] >

00:00:17 #641 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #642 [Verbose] > // // test

00:00:17 #643 [Verbose] >

00:00:17 #644 [Verbose] > iterate ((*) 2) 1i32

00:00:17 #645 [Verbose] > |> item 10i32

00:00:17 #646 [Verbose] > |> _equal 1024

00:00:18 #647 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0823-2358-28de33dc502e\main.spi

00:00:18 #648 [Verbose] >

00:00:18 #649 [Verbose] > ╭─[ 190.56ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #650 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:18 #651 [Verbose] > │     let v0 : string = $"__expect / actual: %A{1024} / expected: %A{1024}"    │

00:00:18 #652 [Verbose] > │     ()                                                                       │

00:00:18 #653 [Verbose] > │ method0()                                                                    │

00:00:18 #654 [Verbose] > │                                                                              │

00:00:18 #655 [Verbose] > │                                                                              │

00:00:18 #656 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #657 [Verbose] >

00:00:18 #658 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:18 #659 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:18 #660 [Verbose] > │ ## take_while                                                                │

00:00:18 #661 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #662 [Verbose] >

00:00:18 #663 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #664 [Verbose] > inl take_while cond s =

00:00:18 #665 [Verbose] >     inl rec body i = function

00:00:18 #666 [Verbose] >         | StreamCons (st, fn) when cond st i => StreamCons (st, fun () => loop

00:00:18 #667 [Verbose] > (i + 1) (fn ()))

00:00:18 #668 [Verbose] >         | _ => StreamNil

00:00:18 #669 [Verbose] >     and inl loop i = join_body body i

00:00:18 #670 [Verbose] >     loop 0 s

00:00:18 #671 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0843-4348-44f5f0cb0950\main.spi

00:00:18 #672 [Verbose] >

00:00:18 #673 [Verbose] > ╭─[ 193.33ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #674 [Verbose] > │ ()                                                                           │

00:00:18 #675 [Verbose] > │                                                                              │

00:00:18 #676 [Verbose] > │                                                                              │

00:00:18 #677 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #678 [Verbose] >

00:00:18 #679 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:18 #680 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:18 #681 [Verbose] > │ ## sum                                                                       │

00:00:18 #682 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #683 [Verbose] >

00:00:18 #684 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #685 [Verbose] > inl sum seq =

00:00:18 #686 [Verbose] >     seq |> fold (+) 0

00:00:18 #687 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0863-6333-6b9ce1dac0d6\main.spi

00:00:18 #688 [Verbose] >

00:00:18 #689 [Verbose] > ╭─[ 360.75ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #690 [Verbose] > │ ()                                                                           │

00:00:18 #691 [Verbose] > │                                                                              │

00:00:18 #692 [Verbose] > │                                                                              │

00:00:18 #693 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #694 [Verbose] >

00:00:18 #695 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #696 [Verbose] > // // test

00:00:18 #697 [Verbose] >

00:00:18 #698 [Verbose] > listm.init 10i32 id

00:00:18 #699 [Verbose] > |> from_list

00:00:18 #700 [Verbose] > |> sum

00:00:18 #701 [Verbose] > |> _equal 45

00:00:18 #702 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0899-9966-98f7028f8f5c\main.spi

00:00:18 #703 [Verbose] >

00:00:18 #704 [Verbose] > ╭─[ 192.57ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #705 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:18 #706 [Verbose] > │     let v0 : string = $"__expect / actual: %A{45} / expected: %A{45}"        │

00:00:18 #707 [Verbose] > │     ()                                                                       │

00:00:18 #708 [Verbose] > │ method0()                                                                    │

00:00:18 #709 [Verbose] > │                                                                              │

00:00:18 #710 [Verbose] > │                                                                              │

00:00:18 #711 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #712 [Verbose] >

00:00:18 #713 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #714 [Verbose] > // // test

00:00:18 #715 [Verbose] >

00:00:18 #716 [Verbose] > new_finite_stream print_and_return 10i32

00:00:18 #717 [Verbose] > |> take_while (fun n (_ : i32) => n < 5)

00:00:18 #718 [Verbose] > |> sum

00:00:18 #719 [Verbose] > |> _equal 10

00:00:19 #720 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0919-1951-15995ad20433\main.spi

00:00:19 #721 [Verbose] >

00:00:19 #722 [Verbose] > ╭─[ 236.17ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #723 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:19 #724 [Verbose] > │     printfn $"print_and_return / x: {0}"                                     │

00:00:19 #725 [Verbose] > │     printfn $"print_and_return / x: {1}"                                     │

00:00:19 #726 [Verbose] > │     printfn $"print_and_return / x: {2}"                                     │

00:00:19 #727 [Verbose] > │     printfn $"print_and_return / x: {3}"                                     │

00:00:19 #728 [Verbose] > │     printfn $"print_and_return / x: {4}"                                     │

00:00:19 #729 [Verbose] > │     printfn $"print_and_return / x: {5}"                                     │

00:00:19 #730 [Verbose] > │     let v0 : string = $"__expect / actual: %A{10} / expected: %A{10}"        │

00:00:19 #731 [Verbose] > │     ()                                                                       │

00:00:19 #732 [Verbose] > │ method0()                                                                    │

00:00:19 #733 [Verbose] > │                                                                              │

00:00:19 #734 [Verbose] > │ print_and_return / x: 0                                                      │

00:00:19 #735 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:19 #736 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:19 #737 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:19 #738 [Verbose] > │ print_and_return / x: 4                                                      │

00:00:19 #739 [Verbose] > │ print_and_return / x: 5                                                      │

00:00:19 #740 [Verbose] > │                                                                              │

00:00:19 #741 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #742 [Verbose] >

00:00:19 #743 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #744 [Verbose] > // // test

00:00:19 #745 [Verbose] >

00:00:19 #746 [Verbose] > new_infinite_stream print_and_return

00:00:19 #747 [Verbose] > |> take_while (fun n (_ : i32) => n < 5i32)

00:00:19 #748 [Verbose] > |> sum

00:00:19 #749 [Verbose] > |> _equal 10

00:00:19 #750 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0944-4429-46dab73633e2\main.spi

00:00:19 #751 [Verbose] >

00:00:19 #752 [Verbose] > ╭─[ 239.40ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #753 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:19 #754 [Verbose] > │     printfn $"print_and_return / x: {0}"                                     │

00:00:19 #755 [Verbose] > │     printfn $"print_and_return / x: {1}"                                     │

00:00:19 #756 [Verbose] > │     printfn $"print_and_return / x: {2}"                                     │

00:00:19 #757 [Verbose] > │     printfn $"print_and_return / x: {3}"                                     │

00:00:19 #758 [Verbose] > │     printfn $"print_and_return / x: {4}"                                     │

00:00:19 #759 [Verbose] > │     printfn $"print_and_return / x: {5}"                                     │

00:00:19 #760 [Verbose] > │     let v0 : string = $"__expect / actual: %A{10} / expected: %A{10}"        │

00:00:19 #761 [Verbose] > │     ()                                                                       │

00:00:19 #762 [Verbose] > │ method0()                                                                    │

00:00:19 #763 [Verbose] > │                                                                              │

00:00:19 #764 [Verbose] > │ print_and_return / x: 0                                                      │

00:00:19 #765 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:19 #766 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:19 #767 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:19 #768 [Verbose] > │ print_and_return / x: 4                                                      │

00:00:19 #769 [Verbose] > │ print_and_return / x: 5                                                      │

00:00:19 #770 [Verbose] > │                                                                              │

00:00:19 #771 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #772 [Verbose] >

00:00:19 #773 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #774 [Verbose] > // // test

00:00:19 #775 [Verbose] >

00:00:19 #776 [Verbose] > iterate ((*) 6) 1i32

00:00:19 #777 [Verbose] > |> take_while (fun _ i => i <= 7i32)

00:00:19 #778 [Verbose] > |> to_list

00:00:19 #779 [Verbose] > |> _equal [[ 1i32; 6; 36; 216; 1296; 7776; 46656; 279936 ]]

00:00:19 #780 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0969-6936-6d39bae8fa58\main.spi

00:00:19 #781 [Verbose] >

00:00:19 #782 [Verbose] > ╭─[ 257.92ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #783 [Verbose] > │ type UH0 =                                                                   │

00:00:19 #784 [Verbose] > │     | UH0_0 of int32 * UH0                                                   │

00:00:19 #785 [Verbose] > │     | UH0_1                                                                  │

00:00:19 #786 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:19 #787 [Verbose] > │     let v0 : UH0 = UH0_1                                                     │

00:00:19 #788 [Verbose] > │     let v1 : UH0 = UH0_0(279936, v0)                                         │

00:00:19 #789 [Verbose] > │     let v2 : UH0 = UH0_0(46656, v1)                                          │

00:00:19 #790 [Verbose] > │     let v3 : UH0 = UH0_0(7776, v2)                                           │

00:00:19 #791 [Verbose] > │     let v4 : UH0 = UH0_0(1296, v3)                                           │

00:00:19 #792 [Verbose] > │     let v5 : UH0 = UH0_0(216, v4)                                            │

00:00:19 #793 [Verbose] > │     let v6 : UH0 = UH0_0(36, v5)                                             │

00:00:19 #794 [Verbose] > │     let v7 : UH0 = UH0_0(6, v6)                                              │

00:00:19 #795 [Verbose] > │     let v8 : UH0 = UH0_0(1, v7)                                              │

00:00:19 #796 [Verbose] > │     let v9 : UH0 = UH0_1                                                     │

00:00:19 #797 [Verbose] > │     let v10 : UH0 = UH0_0(279936, v9)                                        │

00:00:19 #798 [Verbose] > │     let v11 : UH0 = UH0_0(46656, v10)                                        │

00:00:19 #799 [Verbose] > │     let v12 : UH0 = UH0_0(7776, v11)                                         │

00:00:19 #800 [Verbose] > │     let v13 : UH0 = UH0_0(1296, v12)                                         │

00:00:19 #801 [Verbose] > │     let v14 : UH0 = UH0_0(216, v13)                                          │

00:00:19 #802 [Verbose] > │     let v15 : UH0 = UH0_0(36, v14)                                           │

00:00:19 #803 [Verbose] > │     let v16 : UH0 = UH0_0(6, v15)                                            │

00:00:19 #804 [Verbose] > │     let v17 : UH0 = UH0_0(1, v16)                                            │

00:00:19 #805 [Verbose] > │     let v18 : string = $"__expect / actual: %A{v8} / expected: %A{v17}"      │

00:00:19 #806 [Verbose] > │     ()                                                                       │

00:00:19 #807 [Verbose] > │ method0()                                                                    │

00:00:19 #808 [Verbose] > │                                                                              │

00:00:19 #809 [Verbose] > │                                                                              │

00:00:19 #810 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #811 [Verbose] >

00:00:19 #812 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:19 #813 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:19 #814 [Verbose] > │ ## indexed                                                                   │

00:00:19 #815 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #816 [Verbose] >

00:00:19 #817 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #818 [Verbose] > inl indexed s =

00:00:19 #819 [Verbose] >     ((StreamNil, 0), s)

00:00:19 #820 [Verbose] >     ||> fold fun (acc, i) x =>

00:00:19 #821 [Verbose] >         StreamCons ((i, x), fun () => acc), i + 1

00:00:19 #822 [Verbose] >     |> fst

00:00:19 #823 [Verbose] >     |> rev

00:00:19 #824 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-0997-9774-985b9f13a728\main.spi

00:00:19 #825 [Verbose] >

00:00:19 #826 [Verbose] > ╭─[ 186.49ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #827 [Verbose] > │ ()                                                                           │

00:00:19 #828 [Verbose] > │                                                                              │

00:00:19 #829 [Verbose] > │                                                                              │

00:00:19 #830 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #831 [Verbose] >

00:00:19 #832 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #833 [Verbose] > // // test

00:00:19 #834 [Verbose] >

00:00:19 #835 [Verbose] > listm.init 10i32 ((*) 2)

00:00:19 #836 [Verbose] > |> from_list

00:00:19 #837 [Verbose] > |> indexed

00:00:19 #838 [Verbose] > |> item 5i32

00:00:19 #839 [Verbose] > |> _equal (5i32, 10i32)

00:00:19 #840 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-1016-1651-1d896db9cfc9\main.spi

00:00:20 #841 [Verbose] >

00:00:20 #842 [Verbose] > ╭─[ 200.01ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #843 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:20 #844 [Verbose] > │     let v0 : string = $"__expect / actual: %A{struct (5, 10)} / expected:    │

00:00:20 #845 [Verbose] > │ %A{struct (5, 10)}"                                                          │

00:00:20 #846 [Verbose] > │     ()                                                                       │

00:00:20 #847 [Verbose] > │ method0()                                                                    │

00:00:20 #848 [Verbose] > │                                                                              │

00:00:20 #849 [Verbose] > │                                                                              │

00:00:20 #850 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #851 [Verbose] >

00:00:20 #852 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:20 #853 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:20 #854 [Verbose] > │ ## map                                                                       │

00:00:20 #855 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #856 [Verbose] >

00:00:20 #857 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #858 [Verbose] > inl map fn s =

00:00:20 #859 [Verbose] >     (s, StreamNil)

00:00:20 #860 [Verbose] >     ||> fold_back fun x acc =>

00:00:20 #861 [Verbose] >         StreamCons (fn x, fun () => acc)

00:00:20 #862 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-1037-3760-367a81aa883b\main.spi

00:00:20 #863 [Verbose] >

00:00:20 #864 [Verbose] > ╭─[ 202.17ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #865 [Verbose] > │ ()                                                                           │

00:00:20 #866 [Verbose] > │                                                                              │

00:00:20 #867 [Verbose] > │                                                                              │

00:00:20 #868 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #869 [Verbose] >

00:00:20 #870 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #871 [Verbose] > // // test

00:00:20 #872 [Verbose] >

00:00:20 #873 [Verbose] > listm.init 10i32 id

00:00:20 #874 [Verbose] > |> from_list

00:00:20 #875 [Verbose] > |> map ((*) 2)

00:00:20 #876 [Verbose] > |> item 5i32

00:00:20 #877 [Verbose] > |> _equal 10i32

00:00:20 #878 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-1058-5828-5ed0b4ce7b2a\main.spi

00:00:20 #879 [Verbose] >

00:00:20 #880 [Verbose] > ╭─[ 238.22ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #881 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:20 #882 [Verbose] > │     let v0 : string = $"__expect / actual: %A{10} / expected: %A{10}"        │

00:00:20 #883 [Verbose] > │     ()                                                                       │

00:00:20 #884 [Verbose] > │ method0()                                                                    │

00:00:20 #885 [Verbose] > │                                                                              │

00:00:20 #886 [Verbose] > │                                                                              │

00:00:20 #887 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #888 [Verbose] >

00:00:20 #889 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:20 #890 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:20 #891 [Verbose] > │ ## zip_with                                                                  │

00:00:20 #892 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #893 [Verbose] >

00:00:20 #894 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #895 [Verbose] > inl zip_with fn s1 s2 =

00:00:20 #896 [Verbose] >     inl rec loop s1 s2 =

00:00:20 #897 [Verbose] >         match s1, s2 with

00:00:20 #898 [Verbose] >         | StreamCons (st1, fn1), StreamCons (st2, fn2) =>

00:00:20 #899 [Verbose] >             StreamCons (fn st1 st2, fun () => loop (fn1 ()) (fn2 ()))

00:00:20 #900 [Verbose] >         | StreamNil, _ | _, StreamNil => StreamNil

00:00:20 #901 [Verbose] >     loop s1 s2

00:00:20 #902 [Verbose] >

00:00:20 #903 [Verbose] > inl zip_with_ fn s1 s2 =

00:00:20 #904 [Verbose] >     let rec loop s1 s2 =

00:00:20 #905 [Verbose] >         match s1, s2 with

00:00:20 #906 [Verbose] >         | StreamCons (st1, fn1), StreamCons (st2, fn2) =>

00:00:20 #907 [Verbose] >             StreamCons (fn st1 st2, fun () => loop (fn1 ()) (fn2 ()))

00:00:20 #908 [Verbose] >         | StreamNil, _ | _, StreamNil => StreamNil

00:00:20 #909 [Verbose] >     loop s1 s2

00:00:20 #910 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-1082-8267-8af554739d82\main.spi

00:00:20 #911 [Verbose] >

00:00:20 #912 [Verbose] > ╭─[ 302.81ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #913 [Verbose] > │ ()                                                                           │

00:00:20 #914 [Verbose] > │                                                                              │

00:00:20 #915 [Verbose] > │                                                                              │

00:00:20 #916 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #917 [Verbose] >

00:00:20 #918 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #919 [Verbose] > // // test

00:00:20 #920 [Verbose] >

00:00:20 #921 [Verbose] > ((listm.init 10i32 id |> from_list), (listm.init 10i32 ((*) 2) |> from_list))

00:00:20 #922 [Verbose] > ||> zip_with (+)

00:00:20 #923 [Verbose] > |> item 2i32

00:00:20 #924 [Verbose] > |> _equal 6

00:00:20 #925 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-1113-1312-159a4929b698\main.spi

00:00:21 #926 [Verbose] >

00:00:21 #927 [Verbose] > ╭─[ 198.33ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #928 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:21 #929 [Verbose] > │     let v0 : string = $"__expect / actual: %A{6} / expected: %A{6}"          │

00:00:21 #930 [Verbose] > │     ()                                                                       │

00:00:21 #931 [Verbose] > │ method0()                                                                    │

00:00:21 #932 [Verbose] > │                                                                              │

00:00:21 #933 [Verbose] > │                                                                              │

00:00:21 #934 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #935 [Verbose] >

00:00:21 #936 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:21 #937 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:21 #938 [Verbose] > │ ## zip                                                                       │

00:00:21 #939 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #940 [Verbose] >

00:00:21 #941 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:21 #942 [Verbose] > inl zip s1 s2 =

00:00:21 #943 [Verbose] >     zip_with pair s1 s2

00:00:21 #944 [Verbose] >

00:00:21 #945 [Verbose] > inl zip_ s1 s2 =

00:00:21 #946 [Verbose] >     zip_with_ pair s1 s2

00:00:21 #947 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-1133-3380-3dcbef8aadd3\main.spi

00:00:21 #948 [Verbose] >

00:00:21 #949 [Verbose] > ╭─[ 234.03ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #950 [Verbose] > │ ()                                                                           │

00:00:21 #951 [Verbose] > │                                                                              │

00:00:21 #952 [Verbose] > │                                                                              │

00:00:21 #953 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #954 [Verbose] >

00:00:21 #955 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:21 #956 [Verbose] > // // test

00:00:21 #957 [Verbose] >

00:00:21 #958 [Verbose] > ((listm.init 10i32 id |> from_list), (listm.init 10i32 ((*) 2) |> from_list))

00:00:21 #959 [Verbose] > ||> zip

00:00:21 #960 [Verbose] > |> item 5i32

00:00:21 #961 [Verbose] > |> _equal (5, 10)

00:00:21 #962 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-1157-5745-581992565931\main.spi

00:00:21 #963 [Verbose] >

00:00:21 #964 [Verbose] > ╭─[ 223.67ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #965 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:21 #966 [Verbose] > │     let v0 : string = $"__expect / actual: %A{struct (5, 10)} / expected:    │

00:00:21 #967 [Verbose] > │ %A{struct (5, 10)}"                                                          │

00:00:21 #968 [Verbose] > │     ()                                                                       │

00:00:21 #969 [Verbose] > │ method0()                                                                    │

00:00:21 #970 [Verbose] > │                                                                              │

00:00:21 #971 [Verbose] > │                                                                              │

00:00:21 #972 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #973 [Verbose] >

00:00:21 #974 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:21 #975 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:21 #976 [Verbose] > │ ## unzip                                                                     │

00:00:21 #977 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #978 [Verbose] >

00:00:21 #979 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:21 #980 [Verbose] > inl unzip s =

00:00:21 #981 [Verbose] >     inl rec body s =

00:00:21 #982 [Verbose] >         match s with

00:00:21 #983 [Verbose] >         | StreamCons ((x, y), fn) =>

00:00:21 #984 [Verbose] >             inl xs, ys = loop (fn ())

00:00:21 #985 [Verbose] >             StreamCons (x, fun () => xs), StreamCons (y, fun () => ys)

00:00:21 #986 [Verbose] >         | StreamNil => pair StreamNil StreamNil

00:00:21 #987 [Verbose] >     and inl loop x =

00:00:21 #988 [Verbose] >         if var_is x |> not

00:00:21 #989 [Verbose] >         then body x

00:00:21 #990 [Verbose] >         else

00:00:21 #991 [Verbose] >             inl x = dyn x

00:00:21 #992 [Verbose] >             join body x

00:00:21 #993 [Verbose] >     loop s

00:00:21 #994 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-1180-8078-89975336b45c\main.spi

00:00:21 #995 [Verbose] >

00:00:21 #996 [Verbose] > ╭─[ 270.14ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #997 [Verbose] > │ ()                                                                           │

00:00:21 #998 [Verbose] > │                                                                              │

00:00:21 #999 [Verbose] > │                                                                              │

00:00:21 #1000 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #1001 [Verbose] >

00:00:21 #1002 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:21 #1003 [Verbose] > // // test

00:00:21 #1004 [Verbose] >

00:00:21 #1005 [Verbose] > listm.init 10i32 id

00:00:21 #1006 [Verbose] > |> listm.map (fun x => x, x)

00:00:21 #1007 [Verbose] > |> from_list

00:00:21 #1008 [Verbose] > |> unzip

00:00:21 #1009 [Verbose] > |> fun x, y =>

00:00:21 #1010 [Verbose] >     x |> sum

00:00:21 #1011 [Verbose] >     |> _equal 45

00:00:21 #1012 [Verbose] >

00:00:21 #1013 [Verbose] >     y |> sum

00:00:21 #1014 [Verbose] >     |> _equal 45

00:00:21 #1015 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-1207-0798-09e8dc89e1d2\main.spi

00:00:21 #1016 [Verbose] >

00:00:21 #1017 [Verbose] > ╭─[ 192.85ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #1018 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:21 #1019 [Verbose] > │     let v0 : string = $"__expect / actual: %A{45} / expected: %A{45}"        │

00:00:21 #1020 [Verbose] > │     let v1 : string = $"__expect / actual: %A{45} / expected: %A{45}"        │

00:00:21 #1021 [Verbose] > │     ()                                                                       │

00:00:21 #1022 [Verbose] > │ method0()                                                                    │

00:00:21 #1023 [Verbose] > │                                                                              │

00:00:21 #1024 [Verbose] > │                                                                              │

00:00:21 #1025 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:24 #1026 [Verbose] > [NbConvertApp] Converting notebook stream.dib.ipynb to html

00:00:24 #1027 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:00:24 #1028 [Verbose] >   validate(nb)

00:00:25 #1029 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:00:25 #1030 [Verbose] >   return _pygments_highlight(

00:00:25 #1031 [Verbose] > [NbConvertApp] Writing 358115 bytes to stream.dib.html

00:00:26 #1032 [Debug] executeAsync / exitCode: 0 / output.Length: 58505

00:00:26 #1033 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\lib\spiral

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 seq.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:04 #11 [Verbose] >

00:00:04 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:04 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:04 #14 [Verbose] > │ # seq                                                                        │

00:00:04 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:04 #16 [Verbose] >

00:00:04 #17 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:04 #18 [Verbose] > // // test

00:00:04 #19 [Verbose] >

00:00:04 #20 [Verbose] > open testing

00:00:08 #21 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-2550-5089-5a608e3a6074\main.spi

00:00:11 #22 [Verbose] >

00:00:11 #23 [Verbose] > ╭─[ 7.11s - stdout ]───────────────────────────────────────────────────────────╮

00:00:11 #24 [Verbose] > │ ()                                                                           │

00:00:11 #25 [Verbose] > │                                                                              │

00:00:11 #26 [Verbose] > │                                                                              │

00:00:11 #27 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #28 [Verbose] >

00:00:11 #29 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:11 #30 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:11 #31 [Verbose] > │ ## seq                                                                       │

00:00:11 #32 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #33 [Verbose] >

00:00:11 #34 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:11 #35 [Verbose] > type seq dim el = dim -> option el

00:00:12 #36 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3001-0129-0a30e2168df3\main.spi

00:00:12 #37 [Verbose] >

00:00:12 #38 [Verbose] > ╭─[ 227.05ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #39 [Verbose] > │ ()                                                                           │

00:00:12 #40 [Verbose] > │                                                                              │

00:00:12 #41 [Verbose] > │                                                                              │

00:00:12 #42 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #43 [Verbose] >

00:00:12 #44 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #45 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #46 [Verbose] > │ ## try_item                                                                  │

00:00:12 #47 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #48 [Verbose] >

00:00:12 #49 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #50 [Verbose] > inl try_item n s =

00:00:12 #51 [Verbose] >     n |> s

00:00:12 #52 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3024-2482-20c107d54def\main.spi

00:00:12 #53 [Verbose] >

00:00:12 #54 [Verbose] > ╭─[ 220.01ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #55 [Verbose] > │ ()                                                                           │

00:00:12 #56 [Verbose] > │                                                                              │

00:00:12 #57 [Verbose] > │                                                                              │

00:00:12 #58 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #59 [Verbose] >

00:00:12 #60 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #61 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #62 [Verbose] > │ ## from_list                                                                 │

00:00:12 #63 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #64 [Verbose] >

00:00:12 #65 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #66 [Verbose] > inl from_list list =

00:00:12 #67 [Verbose] >     fun n =>

00:00:12 #68 [Verbose] >         list

00:00:12 #69 [Verbose] >         |> listm'.try_item n

00:00:12 #70 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3046-4693-4568e0e0b649\main.spi

00:00:12 #71 [Verbose] >

00:00:12 #72 [Verbose] > ╭─[ 227.54ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #73 [Verbose] > │ ()                                                                           │

00:00:12 #74 [Verbose] > │                                                                              │

00:00:12 #75 [Verbose] > │                                                                              │

00:00:12 #76 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #77 [Verbose] >

00:00:12 #78 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #79 [Verbose] > // // test

00:00:12 #80 [Verbose] >

00:00:12 #81 [Verbose] > listm.init 10i32 print_and_return

00:00:12 #82 [Verbose] > |> from_list

00:00:12 #83 [Verbose] > |> try_item 5i32

00:00:12 #84 [Verbose] > |> _equal (Some 5i32)

00:00:12 #85 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3070-7001-762347421918\main.spi

00:00:14 #86 [Verbose] >

00:00:14 #87 [Verbose] > ╭─[ 1.88s - stdout ]───────────────────────────────────────────────────────────╮

00:00:14 #88 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:14 #89 [Verbose] > │     | US0_0                                                                  │

00:00:14 #90 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:14 #91 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:14 #92 [Verbose] > │     printfn $"print_and_return / x: {0}"                                     │

00:00:14 #93 [Verbose] > │     printfn $"print_and_return / x: {1}"                                     │

00:00:14 #94 [Verbose] > │     printfn $"print_and_return / x: {2}"                                     │

00:00:14 #95 [Verbose] > │     printfn $"print_and_return / x: {3}"                                     │

00:00:14 #96 [Verbose] > │     printfn $"print_and_return / x: {4}"                                     │

00:00:14 #97 [Verbose] > │     printfn $"print_and_return / x: {5}"                                     │

00:00:14 #98 [Verbose] > │     printfn $"print_and_return / x: {6}"                                     │

00:00:14 #99 [Verbose] > │     printfn $"print_and_return / x: {7}"                                     │

00:00:14 #100 [Verbose] > │     printfn $"print_and_return / x: {8}"                                     │

00:00:14 #101 [Verbose] > │     printfn $"print_and_return / x: {9}"                                     │

00:00:14 #102 [Verbose] > │     let v0 : US0 = US0_1(5)                                                  │

00:00:14 #103 [Verbose] > │     let v1 : US0 = US0_1(5)                                                  │

00:00:14 #104 [Verbose] > │     let v2 : string = $"__expect / actual: %A{v0} / expected: %A{v1}"        │

00:00:14 #105 [Verbose] > │     ()                                                                       │

00:00:14 #106 [Verbose] > │ method0()                                                                    │

00:00:14 #107 [Verbose] > │                                                                              │

00:00:14 #108 [Verbose] > │ print_and_return / x: 0                                                      │

00:00:14 #109 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:14 #110 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:14 #111 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:14 #112 [Verbose] > │ print_and_return / x: 4                                                      │

00:00:14 #113 [Verbose] > │ print_and_return / x: 5                                                      │

00:00:14 #114 [Verbose] > │ print_and_return / x: 6                                                      │

00:00:14 #115 [Verbose] > │ print_and_return / x: 7                                                      │

00:00:14 #116 [Verbose] > │ print_and_return / x: 8                                                      │

00:00:14 #117 [Verbose] > │ print_and_return / x: 9                                                      │

00:00:14 #118 [Verbose] > │                                                                              │

00:00:14 #119 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #120 [Verbose] >

00:00:14 #121 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:14 #122 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:14 #123 [Verbose] > │ ## map                                                                       │

00:00:14 #124 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #125 [Verbose] >

00:00:14 #126 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #127 [Verbose] > inl map fn s =

00:00:14 #128 [Verbose] >     fun n =>

00:00:14 #129 [Verbose] >         n

00:00:14 #130 [Verbose] >         |> s

00:00:14 #131 [Verbose] >         |> optionm.map fn

00:00:14 #132 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3260-6048-67f4f9c09e50\main.spi

00:00:14 #133 [Verbose] >

00:00:14 #134 [Verbose] > ╭─[ 218.30ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #135 [Verbose] > │ ()                                                                           │

00:00:14 #136 [Verbose] > │                                                                              │

00:00:14 #137 [Verbose] > │                                                                              │

00:00:14 #138 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #139 [Verbose] >

00:00:14 #140 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #141 [Verbose] > // // test

00:00:14 #142 [Verbose] >

00:00:14 #143 [Verbose] > listm.init 10i32 id

00:00:14 #144 [Verbose] > |> from_list

00:00:14 #145 [Verbose] > |> map ((*) 2)

00:00:14 #146 [Verbose] > |> try_item 5i32

00:00:14 #147 [Verbose] > |> _equal (Some 10i32)

00:00:14 #148 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3282-8242-8f4928261bf2\main.spi

00:00:15 #149 [Verbose] >

00:00:15 #150 [Verbose] > ╭─[ 239.18ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #151 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:15 #152 [Verbose] > │     | US0_0                                                                  │

00:00:15 #153 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:15 #154 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:15 #155 [Verbose] > │     let v0 : US0 = US0_1(10)                                                 │

00:00:15 #156 [Verbose] > │     let v1 : US0 = US0_1(10)                                                 │

00:00:15 #157 [Verbose] > │     let v2 : string = $"__expect / actual: %A{v0} / expected: %A{v1}"        │

00:00:15 #158 [Verbose] > │     ()                                                                       │

00:00:15 #159 [Verbose] > │ method0()                                                                    │

00:00:15 #160 [Verbose] > │                                                                              │

00:00:15 #161 [Verbose] > │                                                                              │

00:00:15 #162 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #163 [Verbose] >

00:00:15 #164 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #165 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #166 [Verbose] > │ ## mapi                                                                      │

00:00:15 #167 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #168 [Verbose] >

00:00:15 #169 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #170 [Verbose] > inl mapi fn s =

00:00:15 #171 [Verbose] >     fun n =>

00:00:15 #172 [Verbose] >         n

00:00:15 #173 [Verbose] >         |> s

00:00:15 #174 [Verbose] >         |> optionm.map (fn n)

00:00:15 #175 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3307-0770-0e2d1a7b5ec7\main.spi

00:00:15 #176 [Verbose] >

00:00:15 #177 [Verbose] > ╭─[ 236.07ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #178 [Verbose] > │ ()                                                                           │

00:00:15 #179 [Verbose] > │                                                                              │

00:00:15 #180 [Verbose] > │                                                                              │

00:00:15 #181 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #182 [Verbose] >

00:00:15 #183 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #184 [Verbose] > // // test

00:00:15 #185 [Verbose] >

00:00:15 #186 [Verbose] > listm.init 10i32 print_and_return

00:00:15 #187 [Verbose] > |> from_list

00:00:15 #188 [Verbose] > |> mapi fun i x => i + x

00:00:15 #189 [Verbose] > |> try_item 5i32

00:00:15 #190 [Verbose] > |> _equal (Some 10i32)

00:00:15 #191 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3331-3152-37b38b1e4eb7\main.spi

00:00:15 #192 [Verbose] >

00:00:15 #193 [Verbose] > ╭─[ 250.80ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #194 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:15 #195 [Verbose] > │     | US0_0                                                                  │

00:00:15 #196 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:15 #197 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:15 #198 [Verbose] > │     printfn $"print_and_return / x: {0}"                                     │

00:00:15 #199 [Verbose] > │     printfn $"print_and_return / x: {1}"                                     │

00:00:15 #200 [Verbose] > │     printfn $"print_and_return / x: {2}"                                     │

00:00:15 #201 [Verbose] > │     printfn $"print_and_return / x: {3}"                                     │

00:00:15 #202 [Verbose] > │     printfn $"print_and_return / x: {4}"                                     │

00:00:15 #203 [Verbose] > │     printfn $"print_and_return / x: {5}"                                     │

00:00:15 #204 [Verbose] > │     printfn $"print_and_return / x: {6}"                                     │

00:00:15 #205 [Verbose] > │     printfn $"print_and_return / x: {7}"                                     │

00:00:15 #206 [Verbose] > │     printfn $"print_and_return / x: {8}"                                     │

00:00:15 #207 [Verbose] > │     printfn $"print_and_return / x: {9}"                                     │

00:00:15 #208 [Verbose] > │     let v0 : US0 = US0_1(10)                                                 │

00:00:15 #209 [Verbose] > │     let v1 : US0 = US0_1(10)                                                 │

00:00:15 #210 [Verbose] > │     let v2 : string = $"__expect / actual: %A{v0} / expected: %A{v1}"        │

00:00:15 #211 [Verbose] > │     ()                                                                       │

00:00:15 #212 [Verbose] > │ method0()                                                                    │

00:00:15 #213 [Verbose] > │                                                                              │

00:00:15 #214 [Verbose] > │ print_and_return / x: 0                                                      │

00:00:15 #215 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:15 #216 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:15 #217 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:15 #218 [Verbose] > │ print_and_return / x: 4                                                      │

00:00:15 #219 [Verbose] > │ print_and_return / x: 5                                                      │

00:00:15 #220 [Verbose] > │ print_and_return / x: 6                                                      │

00:00:15 #221 [Verbose] > │ print_and_return / x: 7                                                      │

00:00:15 #222 [Verbose] > │ print_and_return / x: 8                                                      │

00:00:15 #223 [Verbose] > │ print_and_return / x: 9                                                      │

00:00:15 #224 [Verbose] > │                                                                              │

00:00:15 #225 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #226 [Verbose] >

00:00:15 #227 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #228 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #229 [Verbose] > │ ## choose                                                                    │

00:00:15 #230 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #231 [Verbose] >

00:00:15 #232 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #233 [Verbose] > inl choose forall dim {number} t u. (fn : t -> option u) (s : seq dim t) : seq

00:00:15 #234 [Verbose] > dim u =

00:00:15 #235 [Verbose] >     fun n =>

00:00:15 #236 [Verbose] >         inl rec body fn s i i' =

00:00:15 #237 [Verbose] >             match i |> s with

00:00:15 #238 [Verbose] >             | None => None

00:00:15 #239 [Verbose] >             | Some x =>

00:00:15 #240 [Verbose] >                 match x |> fn with

00:00:15 #241 [Verbose] >                 | Some x when n = i' => Some x

00:00:15 #242 [Verbose] >                 | Some _ => loop (i + 1) (i' + 1)

00:00:15 #243 [Verbose] >                 | _ => loop (i + 1) i'

00:00:15 #244 [Verbose] >         and inl loop i i' =

00:00:15 #245 [Verbose] >             if n |> var_is |> not

00:00:15 #246 [Verbose] >             then body fn s i i'

00:00:15 #247 [Verbose] >             else

00:00:15 #248 [Verbose] >                 inl fn = join fn

00:00:15 #249 [Verbose] >                 inl s = join s

00:00:15 #250 [Verbose] >                 join body fn s i i'

00:00:15 #251 [Verbose] >         loop 0 0

00:00:15 #252 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3359-5928-57e90cf3aa89\main.spi

00:00:15 #253 [Verbose] >

00:00:15 #254 [Verbose] > ╭─[ 260.45ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #255 [Verbose] > │ ()                                                                           │

00:00:15 #256 [Verbose] > │                                                                              │

00:00:15 #257 [Verbose] > │                                                                              │

00:00:15 #258 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #259 [Verbose] >

00:00:15 #260 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #261 [Verbose] > // // test

00:00:15 #262 [Verbose] >

00:00:15 #263 [Verbose] > listm.init 10i32 print_and_return

00:00:15 #264 [Verbose] > |> from_list

00:00:15 #265 [Verbose] > |> choose (fun x => if x % 2 = 0 then Some x else None)

00:00:15 #266 [Verbose] > |> try_item 1i32

00:00:15 #267 [Verbose] > |> _equal (Some 2i32)

00:00:15 #268 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3385-8543-898b49c9b32d\main.spi

00:00:16 #269 [Verbose] >

00:00:16 #270 [Verbose] > ╭─[ 432.90ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #271 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:16 #272 [Verbose] > │     | US0_0                                                                  │

00:00:16 #273 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:16 #274 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:16 #275 [Verbose] > │     printfn $"print_and_return / x: {0}"                                     │

00:00:16 #276 [Verbose] > │     printfn $"print_and_return / x: {1}"                                     │

00:00:16 #277 [Verbose] > │     printfn $"print_and_return / x: {2}"                                     │

00:00:16 #278 [Verbose] > │     printfn $"print_and_return / x: {3}"                                     │

00:00:16 #279 [Verbose] > │     printfn $"print_and_return / x: {4}"                                     │

00:00:16 #280 [Verbose] > │     printfn $"print_and_return / x: {5}"                                     │

00:00:16 #281 [Verbose] > │     printfn $"print_and_return / x: {6}"                                     │

00:00:16 #282 [Verbose] > │     printfn $"print_and_return / x: {7}"                                     │

00:00:16 #283 [Verbose] > │     printfn $"print_and_return / x: {8}"                                     │

00:00:16 #284 [Verbose] > │     printfn $"print_and_return / x: {9}"                                     │

00:00:16 #285 [Verbose] > │     let v0 : US0 = US0_1(2)                                                  │

00:00:16 #286 [Verbose] > │     let v1 : US0 = US0_1(2)                                                  │

00:00:16 #287 [Verbose] > │     let v2 : string = $"__expect / actual: %A{v0} / expected: %A{v1}"        │

00:00:16 #288 [Verbose] > │     ()                                                                       │

00:00:16 #289 [Verbose] > │ method0()                                                                    │

00:00:16 #290 [Verbose] > │                                                                              │

00:00:16 #291 [Verbose] > │ print_and_return / x: 0                                                      │

00:00:16 #292 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:16 #293 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:16 #294 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:16 #295 [Verbose] > │ print_and_return / x: 4                                                      │

00:00:16 #296 [Verbose] > │ print_and_return / x: 5                                                      │

00:00:16 #297 [Verbose] > │ print_and_return / x: 6                                                      │

00:00:16 #298 [Verbose] > │ print_and_return / x: 7                                                      │

00:00:16 #299 [Verbose] > │ print_and_return / x: 8                                                      │

00:00:16 #300 [Verbose] > │ print_and_return / x: 9                                                      │

00:00:16 #301 [Verbose] > │                                                                              │

00:00:16 #302 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #303 [Verbose] >

00:00:16 #304 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #305 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #306 [Verbose] > │ ## indexed                                                                   │

00:00:16 #307 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #308 [Verbose] >

00:00:16 #309 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #310 [Verbose] > inl indexed s =

00:00:16 #311 [Verbose] >     s

00:00:16 #312 [Verbose] >     |> mapi fun i x =>

00:00:16 #313 [Verbose] >         i, x

00:00:16 #314 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3431-3155-3e5fc8338663\main.spi

00:00:16 #315 [Verbose] >

00:00:16 #316 [Verbose] > ╭─[ 189.24ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #317 [Verbose] > │ ()                                                                           │

00:00:16 #318 [Verbose] > │                                                                              │

00:00:16 #319 [Verbose] > │                                                                              │

00:00:16 #320 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #321 [Verbose] >

00:00:16 #322 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #323 [Verbose] > // // test

00:00:16 #324 [Verbose] >

00:00:16 #325 [Verbose] > listm.init 10i32 ((*) 2)

00:00:16 #326 [Verbose] > |> from_list

00:00:16 #327 [Verbose] > |> indexed

00:00:16 #328 [Verbose] > |> try_item 5i32

00:00:16 #329 [Verbose] > |> _equal (Some (5i32, 10i32))

00:00:16 #330 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3450-5055-523c7511f059\main.spi

00:00:16 #331 [Verbose] >

00:00:16 #332 [Verbose] > ╭─[ 225.05ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #333 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:16 #334 [Verbose] > │     | US0_0                                                                  │

00:00:16 #335 [Verbose] > │     | US0_1 of f1_0 : int32 * f1_1 : int32                                   │

00:00:16 #336 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:16 #337 [Verbose] > │     let v0 : US0 = US0_1(5, 10)                                              │

00:00:16 #338 [Verbose] > │     let v1 : US0 = US0_1(5, 10)                                              │

00:00:16 #339 [Verbose] > │     let v2 : string = $"__expect / actual: %A{v0} / expected: %A{v1}"        │

00:00:16 #340 [Verbose] > │     ()                                                                       │

00:00:16 #341 [Verbose] > │ method0()                                                                    │

00:00:16 #342 [Verbose] > │                                                                              │

00:00:16 #343 [Verbose] > │                                                                              │

00:00:16 #344 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #345 [Verbose] >

00:00:16 #346 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #347 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #348 [Verbose] > │ ## zip                                                                       │

00:00:16 #349 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #350 [Verbose] >

00:00:16 #351 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #352 [Verbose] > inl zip n seq1 seq2 =

00:00:16 #353 [Verbose] >     seq1 n, seq2 n

00:00:16 #354 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3474-7422-74ab810d96c8\main.spi

00:00:16 #355 [Verbose] >

00:00:16 #356 [Verbose] > ╭─[ 175.65ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #357 [Verbose] > │ ()                                                                           │

00:00:16 #358 [Verbose] > │                                                                              │

00:00:16 #359 [Verbose] > │                                                                              │

00:00:16 #360 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #361 [Verbose] >

00:00:16 #362 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #363 [Verbose] > // // test

00:00:16 #364 [Verbose] >

00:00:16 #365 [Verbose] > ((listm.init 10i32 id |> from_list), (listm.init 10i32 ((*) 2) |> from_list))

00:00:16 #366 [Verbose] > ||> zip 5i32

00:00:16 #367 [Verbose] > |> _equal (Some 5, Some 10)

00:00:17 #368 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3491-9196-99bacbd52808\main.spi

00:00:17 #369 [Verbose] >

00:00:17 #370 [Verbose] > ╭─[ 259.68ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #371 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:17 #372 [Verbose] > │     | US0_0                                                                  │

00:00:17 #373 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:17 #374 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:17 #375 [Verbose] > │     let v0 : US0 = US0_1(5)                                                  │

00:00:17 #376 [Verbose] > │     let v1 : US0 = US0_1(10)                                                 │

00:00:17 #377 [Verbose] > │     let v2 : US0 = US0_1(5)                                                  │

00:00:17 #378 [Verbose] > │     let v3 : US0 = US0_1(10)                                                 │

00:00:17 #379 [Verbose] > │     let v4 : string = $"__expect / actual: %A{struct (v0, v1)} / expected:   │

00:00:17 #380 [Verbose] > │ %A{struct (v2, v3)}"                                                         │

00:00:17 #381 [Verbose] > │     ()                                                                       │

00:00:17 #382 [Verbose] > │ method0()                                                                    │

00:00:17 #383 [Verbose] > │                                                                              │

00:00:17 #384 [Verbose] > │                                                                              │

00:00:17 #385 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #386 [Verbose] >

00:00:17 #387 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #388 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #389 [Verbose] > │ ## zip_with                                                                  │

00:00:17 #390 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #391 [Verbose] >

00:00:17 #392 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #393 [Verbose] > inl zip_with fn seq1 seq2 =

00:00:17 #394 [Verbose] >     fun n =>

00:00:17 #395 [Verbose] >         fn (seq1 n) (seq2 n)

00:00:17 #396 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3519-1954-11fd93a5196a\main.spi

00:00:17 #397 [Verbose] >

00:00:17 #398 [Verbose] > ╭─[ 303.74ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #399 [Verbose] > │ ()                                                                           │

00:00:17 #400 [Verbose] > │                                                                              │

00:00:17 #401 [Verbose] > │                                                                              │

00:00:17 #402 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #403 [Verbose] >

00:00:17 #404 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #405 [Verbose] > // // test

00:00:17 #406 [Verbose] >

00:00:17 #407 [Verbose] > ((listm.init 10i32 id |> from_list), (listm.init 10i32 ((*) 2) |> from_list))

00:00:17 #408 [Verbose] > ||> zip_with (optionm'.choose (+))

00:00:17 #409 [Verbose] > |> try_item 2i32

00:00:17 #410 [Verbose] > |> _equal (Some 6)

00:00:17 #411 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3550-5060-54f641a39734\main.spi

00:00:17 #412 [Verbose] >

00:00:17 #413 [Verbose] > ╭─[ 252.27ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #414 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:17 #415 [Verbose] > │     | US0_0                                                                  │

00:00:17 #416 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:17 #417 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:17 #418 [Verbose] > │     let v0 : US0 = US0_1(6)                                                  │

00:00:17 #419 [Verbose] > │     let v1 : US0 = US0_1(6)                                                  │

00:00:17 #420 [Verbose] > │     let v2 : string = $"__expect / actual: %A{v0} / expected: %A{v1}"        │

00:00:17 #421 [Verbose] > │     ()                                                                       │

00:00:17 #422 [Verbose] > │ method0()                                                                    │

00:00:17 #423 [Verbose] > │                                                                              │

00:00:17 #424 [Verbose] > │                                                                              │

00:00:17 #425 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #426 [Verbose] >

00:00:17 #427 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #428 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #429 [Verbose] > │ ## fold                                                                      │

00:00:17 #430 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #431 [Verbose] >

00:00:17 #432 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #433 [Verbose] > inl fold fn init seq =

00:00:17 #434 [Verbose] >     inl rec loop acc n =

00:00:17 #435 [Verbose] >         match seq n with

00:00:17 #436 [Verbose] >         | Some x => loop (fn acc x) (n + 1)

00:00:17 #437 [Verbose] >         | None => acc

00:00:17 #438 [Verbose] >     loop init 0

00:00:17 #439 [Verbose] >

00:00:17 #440 [Verbose] > inl fold_ fn init seq =

00:00:17 #441 [Verbose] >     let rec loop acc n =

00:00:17 #442 [Verbose] >         match seq n with

00:00:17 #443 [Verbose] >         | Some x => loop (fn acc x) (n + 1)

00:00:17 #444 [Verbose] >         | None => acc

00:00:17 #445 [Verbose] >     loop init 0

00:00:17 #446 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3576-7668-7c7bab463fe7\main.spi

00:00:17 #447 [Verbose] >

00:00:17 #448 [Verbose] > ╭─[ 188.16ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #449 [Verbose] > │ ()                                                                           │

00:00:17 #450 [Verbose] > │                                                                              │

00:00:17 #451 [Verbose] > │                                                                              │

00:00:17 #452 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #453 [Verbose] >

00:00:17 #454 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #455 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #456 [Verbose] > │ ## sum                                                                       │

00:00:17 #457 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #458 [Verbose] >

00:00:17 #459 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #460 [Verbose] > inl sum seq =

00:00:17 #461 [Verbose] >     seq |> fold (+) 0

00:00:17 #462 [Verbose] >

00:00:17 #463 [Verbose] > inl sum_ seq =

00:00:17 #464 [Verbose] >     seq |> fold_ (+) 0

00:00:18 #465 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3595-9577-9ecd5ad1774b\main.spi

00:00:18 #466 [Verbose] >

00:00:18 #467 [Verbose] > ╭─[ 191.76ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #468 [Verbose] > │ ()                                                                           │

00:00:18 #469 [Verbose] > │                                                                              │

00:00:18 #470 [Verbose] > │                                                                              │

00:00:18 #471 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #472 [Verbose] >

00:00:18 #473 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #474 [Verbose] > // // test

00:00:18 #475 [Verbose] >

00:00:18 #476 [Verbose] > listm.init 10i32 id

00:00:18 #477 [Verbose] > |> from_list

00:00:18 #478 [Verbose] > |> fun f (n : i32) => f n

00:00:18 #479 [Verbose] > |> sum

00:00:18 #480 [Verbose] > |> _equal 45

00:00:18 #481 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3615-1546-1eeb1ffd6506\main.spi

00:00:18 #482 [Verbose] >

00:00:18 #483 [Verbose] > ╭─[ 199.82ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #484 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:18 #485 [Verbose] > │     let v0 : string = $"__expect / actual: %A{45} / expected: %A{45}"        │

00:00:18 #486 [Verbose] > │     ()                                                                       │

00:00:18 #487 [Verbose] > │ method0()                                                                    │

00:00:18 #488 [Verbose] > │                                                                              │

00:00:18 #489 [Verbose] > │                                                                              │

00:00:18 #490 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #491 [Verbose] >

00:00:18 #492 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:18 #493 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:18 #494 [Verbose] > │ ## to_list                                                                   │

00:00:18 #495 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #496 [Verbose] >

00:00:18 #497 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #498 [Verbose] > inl to_list seq =

00:00:18 #499 [Verbose] >     seq

00:00:18 #500 [Verbose] >     |> fold (fun acc x => x :: acc) [[]]

00:00:18 #501 [Verbose] >     |> listm.rev

00:00:18 #502 [Verbose] >

00:00:18 #503 [Verbose] > inl to_list_ seq =

00:00:18 #504 [Verbose] >     seq

00:00:18 #505 [Verbose] >     |> fold_ (fun acc x => x :: acc) [[]]

00:00:18 #506 [Verbose] >     |> listm.rev

00:00:18 #507 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3636-3606-3186bf0ac978\main.spi

00:00:18 #508 [Verbose] >

00:00:18 #509 [Verbose] > ╭─[ 222.53ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #510 [Verbose] > │ ()                                                                           │

00:00:18 #511 [Verbose] > │                                                                              │

00:00:18 #512 [Verbose] > │                                                                              │

00:00:18 #513 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #514 [Verbose] >

00:00:18 #515 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #516 [Verbose] > // // test

00:00:18 #517 [Verbose] >

00:00:18 #518 [Verbose] > listm.init 10i32 id

00:00:18 #519 [Verbose] > |> from_list

00:00:18 #520 [Verbose] > |> fun f (n : i32) => f n

00:00:18 #521 [Verbose] > |> to_list

00:00:18 #522 [Verbose] > |> _equal (listm.init 10i32 id)

00:00:18 #523 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3658-5886-5768c335d9d5\main.spi

00:00:18 #524 [Verbose] >

00:00:18 #525 [Verbose] > ╭─[ 281.93ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #526 [Verbose] > │ type UH0 =                                                                   │

00:00:18 #527 [Verbose] > │     | UH0_0 of int32 * UH0                                                   │

00:00:18 #528 [Verbose] > │     | UH0_1                                                                  │

00:00:18 #529 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:18 #530 [Verbose] > │     let v0 : UH0 = UH0_1                                                     │

00:00:18 #531 [Verbose] > │     let v1 : UH0 = UH0_0(9, v0)                                              │

00:00:18 #532 [Verbose] > │     let v2 : UH0 = UH0_0(8, v1)                                              │

00:00:18 #533 [Verbose] > │     let v3 : UH0 = UH0_0(7, v2)                                              │

00:00:18 #534 [Verbose] > │     let v4 : UH0 = UH0_0(6, v3)                                              │

00:00:18 #535 [Verbose] > │     let v5 : UH0 = UH0_0(5, v4)                                              │

00:00:18 #536 [Verbose] > │     let v6 : UH0 = UH0_0(4, v5)                                              │

00:00:18 #537 [Verbose] > │     let v7 : UH0 = UH0_0(3, v6)                                              │

00:00:18 #538 [Verbose] > │     let v8 : UH0 = UH0_0(2, v7)                                              │

00:00:18 #539 [Verbose] > │     let v9 : UH0 = UH0_0(1, v8)                                              │

00:00:18 #540 [Verbose] > │     let v10 : UH0 = UH0_0(0, v9)                                             │

00:00:18 #541 [Verbose] > │     let v11 : UH0 = UH0_1                                                    │

00:00:18 #542 [Verbose] > │     let v12 : UH0 = UH0_0(9, v11)                                            │

00:00:18 #543 [Verbose] > │     let v13 : UH0 = UH0_0(8, v12)                                            │

00:00:18 #544 [Verbose] > │     let v14 : UH0 = UH0_0(7, v13)                                            │

00:00:18 #545 [Verbose] > │     let v15 : UH0 = UH0_0(6, v14)                                            │

00:00:18 #546 [Verbose] > │     let v16 : UH0 = UH0_0(5, v15)                                            │

00:00:18 #547 [Verbose] > │     let v17 : UH0 = UH0_0(4, v16)                                            │

00:00:18 #548 [Verbose] > │     let v18 : UH0 = UH0_0(3, v17)                                            │

00:00:18 #549 [Verbose] > │     let v19 : UH0 = UH0_0(2, v18)                                            │

00:00:18 #550 [Verbose] > │     let v20 : UH0 = UH0_0(1, v19)                                            │

00:00:18 #551 [Verbose] > │     let v21 : UH0 = UH0_0(0, v20)                                            │

00:00:18 #552 [Verbose] > │     let v22 : string = $"__expect / actual: %A{v10} / expected: %A{v21}"     │

00:00:18 #553 [Verbose] > │     ()                                                                       │

00:00:18 #554 [Verbose] > │ method0()                                                                    │

00:00:18 #555 [Verbose] > │                                                                              │

00:00:18 #556 [Verbose] > │                                                                              │

00:00:18 #557 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #558 [Verbose] >

00:00:18 #559 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:18 #560 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:18 #561 [Verbose] > │ ## from_array                                                                │

00:00:18 #562 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #563 [Verbose] >

00:00:18 #564 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #565 [Verbose] > inl from_array forall dim {number; int} el. (array : a dim el) : seq dim el =

00:00:18 #566 [Verbose] >     fun n =>

00:00:18 #567 [Verbose] >         if n >= length array

00:00:18 #568 [Verbose] >         then None

00:00:18 #569 [Verbose] >         else index array n |> Some

00:00:18 #570 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3688-8865-87fd7162ceb3\main.spi

00:00:19 #571 [Verbose] >

00:00:19 #572 [Verbose] > ╭─[ 238.87ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #573 [Verbose] > │ ()                                                                           │

00:00:19 #574 [Verbose] > │                                                                              │

00:00:19 #575 [Verbose] > │                                                                              │

00:00:19 #576 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #577 [Verbose] >

00:00:19 #578 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #579 [Verbose] > // // test

00:00:19 #580 [Verbose] >

00:00:19 #581 [Verbose] > a ;[[ 1; 2; 3 ]]

00:00:19 #582 [Verbose] > |> from_array

00:00:19 #583 [Verbose] > |> try_item 1i32

00:00:19 #584 [Verbose] > |> _equal (Some 2i32)

00:00:19 #585 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3712-1287-1804b175e5d8\main.spi

00:00:19 #586 [Verbose] >

00:00:19 #587 [Verbose] > ╭─[ 505.03ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #588 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:19 #589 [Verbose] > │     | US0_0                                                                  │

00:00:19 #590 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:19 #591 [Verbose] > │ let rec method1 (v0 : (int32 [])) : (int32 []) =                             │

00:00:19 #592 [Verbose] > │     v0                                                                       │

00:00:19 #593 [Verbose] > │ and method0 () : unit =                                                      │

00:00:19 #594 [Verbose] > │     let v0 : (int32 []) = [|1; 2; 3|]                                        │

00:00:19 #595 [Verbose] > │     let v1 : (int32 []) = method1(v0)                                        │

00:00:19 #596 [Verbose] > │     let v2 : int32 = v1.Length                                               │

00:00:19 #597 [Verbose] > │     let v3 : bool = 1 >= v2                                                  │

00:00:19 #598 [Verbose] > │     let v7 : US0 =                                                           │

00:00:19 #599 [Verbose] > │         if v3 then                                                           │

00:00:19 #600 [Verbose] > │             US0_0                                                            │

00:00:19 #601 [Verbose] > │         else                                                                 │

00:00:19 #602 [Verbose] > │             let v5 : int32 = v1.[int 1]                                      │

00:00:19 #603 [Verbose] > │             US0_1(v5)                                                        │

00:00:19 #604 [Verbose] > │     let v8 : US0 = US0_1(2)                                                  │

00:00:19 #605 [Verbose] > │     let v9 : string = $"__expect / actual: %A{v7} / expected: %A{v8}"        │

00:00:19 #606 [Verbose] > │     let v13 : bool =                                                         │

00:00:19 #607 [Verbose] > │         match v7 with                                                        │

00:00:19 #608 [Verbose] > │         | US0_1(v11) -> (* Some *)                                           │

00:00:19 #609 [Verbose] > │             let v12 : bool = v11 = 2                                         │

00:00:19 #610 [Verbose] > │             v12                                                              │

00:00:19 #611 [Verbose] > │         | _ ->                                                               │

00:00:19 #612 [Verbose] > │             false                                                            │

00:00:19 #613 [Verbose] > │     let v14 : bool = v13 = false                                             │

00:00:19 #614 [Verbose] > │     if v14 then                                                              │

00:00:19 #615 [Verbose] > │         failwith<unit> v9                                                    │

00:00:19 #616 [Verbose] > │ method0()                                                                    │

00:00:19 #617 [Verbose] > │                                                                              │

00:00:19 #618 [Verbose] > │                                                                              │

00:00:19 #619 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #620 [Verbose] >

00:00:19 #621 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:19 #622 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:19 #623 [Verbose] > │ ## to_array                                                                  │

00:00:19 #624 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #625 [Verbose] >

00:00:19 #626 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #627 [Verbose] > inl to_array seq =

00:00:19 #628 [Verbose] >     inl ar = a ;[[]] |> mut

00:00:19 #629 [Verbose] >     ((), seq)

00:00:19 #630 [Verbose] >     ||> fold fun _ x =>

00:00:19 #631 [Verbose] >         ar <- *ar /@ a ;[[x]]

00:00:19 #632 [Verbose] >     *ar

00:00:19 #633 [Verbose] >

00:00:19 #634 [Verbose] > inl to_array_ seq =

00:00:19 #635 [Verbose] >     inl ar = a ;[[]] |> mut

00:00:19 #636 [Verbose] >     ((), seq)

00:00:19 #637 [Verbose] >     ||> fold_ fun _ x =>

00:00:19 #638 [Verbose] >         ar <- *ar /@ a ;[[x]]

00:00:19 #639 [Verbose] >     *ar

00:00:19 #640 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3765-6518-614b3cae40eb\main.spi

00:00:19 #641 [Verbose] >

00:00:19 #642 [Verbose] > ╭─[ 307.10ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #643 [Verbose] > │ ()                                                                           │

00:00:19 #644 [Verbose] > │                                                                              │

00:00:19 #645 [Verbose] > │                                                                              │

00:00:19 #646 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #647 [Verbose] >

00:00:19 #648 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #649 [Verbose] > // // test

00:00:19 #650 [Verbose] >

00:00:19 #651 [Verbose] > listm.init 10i32 id

00:00:19 #652 [Verbose] > |> from_list

00:00:19 #653 [Verbose] > |> fun (x : i32 -> _) => x

00:00:19 #654 [Verbose] > |> to_array

00:00:19 #655 [Verbose] > |> _equal (a ;[[ 0; 1; 2; 3; 4; 5; 6; 7; 8; 9 ]] : _ i32 _)

00:00:20 #656 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3796-9616-9acf94a99f99\main.spi

00:00:20 #657 [Verbose] >

00:00:20 #658 [Verbose] > ╭─[ 634.76ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #659 [Verbose] > │ type Mut0 = {mutable l0 : (int32 [])}                                        │

00:00:20 #660 [Verbose] > │ and Mut1 = {mutable l0 : int32}                                              │

00:00:20 #661 [Verbose] > │ let rec method1 (v0 : (int32 [])) : (int32 []) =                             │

00:00:20 #662 [Verbose] > │     v0                                                                       │

00:00:20 #663 [Verbose] > │ and method2 (v0 : int32, v1 : Mut1) : bool =                                 │

00:00:20 #664 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:20 #665 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:20 #666 [Verbose] > │     v3                                                                       │

00:00:20 #667 [Verbose] > │ and method3 (v0 : (int32 []), v1 : (int32 []), v2 : int32) : bool =          │

00:00:20 #668 [Verbose] > │     let v3 : int32 = v0.Length                                               │

00:00:20 #669 [Verbose] > │     let v4 : bool = v2 < v3                                                  │

00:00:20 #670 [Verbose] > │     if v4 then                                                               │

00:00:20 #671 [Verbose] > │         let v5 : int32 = v0.[int v2]                                         │

00:00:20 #672 [Verbose] > │         let v6 : int32 = v1.[int v2]                                         │

00:00:20 #673 [Verbose] > │         let v7 : bool = v5 = v6                                              │

00:00:20 #674 [Verbose] > │         if v7 then                                                           │

00:00:20 #675 [Verbose] > │             let v8 : int32 = v2 + 1                                          │

00:00:20 #676 [Verbose] > │             method3(v0, v1, v8)                                              │

00:00:20 #677 [Verbose] > │         else                                                                 │

00:00:20 #678 [Verbose] > │             false                                                            │

00:00:20 #679 [Verbose] > │     else                                                                     │

00:00:20 #680 [Verbose] > │         true                                                                 │

00:00:20 #681 [Verbose] > │ and method0 () : unit =                                                      │

00:00:20 #682 [Verbose] > │     let v0 : (int32 []) = [||]                                               │

00:00:20 #683 [Verbose] > │     let v1 : (int32 []) = method1(v0)                                        │

00:00:20 #684 [Verbose] > │     let v2 : Mut0 = {l0 = v1} : Mut0                                         │

00:00:20 #685 [Verbose] > │     let v3 : (int32 []) = v2.l0                                              │

00:00:20 #686 [Verbose] > │     let v4 : (int32 []) = [|0|]                                              │

00:00:20 #687 [Verbose] > │     let v5 : (int32 []) = method1(v4)                                        │

00:00:20 #688 [Verbose] > │     let v6 : int32 = v3.Length                                               │

00:00:20 #689 [Verbose] > │     let v7 : int32 = v5.Length                                               │

00:00:20 #690 [Verbose] > │     let v8 : int32 = v6 + v7                                                 │

00:00:20 #691 [Verbose] > │     let v9 : (int32 []) = Array.zeroCreate<int32> (v8)                       │

00:00:20 #692 [Verbose] > │     let v10 : Mut1 = {l0 = 0} : Mut1                                         │

00:00:20 #693 [Verbose] > │     while method2(v8, v10) do                                                │

00:00:20 #694 [Verbose] > │         let v12 : int32 = v10.l0                                             │

00:00:20 #695 [Verbose] > │         let v13 : bool = v12 < v6                                            │

00:00:20 #696 [Verbose] > │         let v17 : int32 =                                                    │

00:00:20 #697 [Verbose] > │             if v13 then                                                      │

00:00:20 #698 [Verbose] > │                 let v14 : int32 = v3.[int v12]                               │

00:00:20 #699 [Verbose] > │                 v14                                                          │

00:00:20 #700 [Verbose] > │             else                                                             │

00:00:20 #701 [Verbose] > │                 let v15 : int32 = v12 - v6                                   │

00:00:20 #702 [Verbose] > │                 let v16 : int32 = v5.[int v15]                               │

00:00:20 #703 [Verbose] > │                 v16                                                          │

00:00:20 #704 [Verbose] > │         v9.[int v12] <- v17                                                  │

00:00:20 #705 [Verbose] > │         let v18 : int32 = v12 + 1                                            │

00:00:20 #706 [Verbose] > │         v10.l0 <- v18                                                        │

00:00:20 #707 [Verbose] > │         ()                                                                   │

00:00:20 #708 [Verbose] > │     v2.l0 <- v9                                                              │

00:00:20 #709 [Verbose] > │     let v19 : (int32 []) = v2.l0                                             │

00:00:20 #710 [Verbose] > │     let v20 : (int32 []) = [|1|]                                             │

00:00:20 #711 [Verbose] > │     let v21 : (int32 []) = method1(v20)                                      │

00:00:20 #712 [Verbose] > │     let v22 : int32 = v19.Length                                             │

00:00:20 #713 [Verbose] > │     let v23 : int32 = v21.Length                                             │

00:00:20 #714 [Verbose] > │     let v24 : int32 = v22 + v23                                              │

00:00:20 #715 [Verbose] > │     let v25 : (int32 []) = Array.zeroCreate<int32> (v24)                     │

00:00:20 #716 [Verbose] > │     let v26 : Mut1 = {l0 = 0} : Mut1                                         │

00:00:20 #717 [Verbose] > │     while method2(v24, v26) do                                               │

00:00:20 #718 [Verbose] > │         let v28 : int32 = v26.l0                                             │

00:00:20 #719 [Verbose] > │         let v29 : bool = v28 < v22                                           │

00:00:20 #720 [Verbose] > │         let v33 : int32 =                                                    │

00:00:20 #721 [Verbose] > │             if v29 then                                                      │

00:00:20 #722 [Verbose] > │                 let v30 : int32 = v19.[int v28]                              │

00:00:20 #723 [Verbose] > │                 v30                                                          │

00:00:20 #724 [Verbose] > │             else                                                             │

00:00:20 #725 [Verbose] > │                 let v31 : int32 = v28 - v22                                  │

00:00:20 #726 [Verbose] > │                 let v32 : int32 = v21.[int v31]                              │

00:00:20 #727 [Verbose] > │                 v32                                                          │

00:00:20 #728 [Verbose] > │         v25.[int v28] <- v33                                                 │

00:00:20 #729 [Verbose] > │         let v34 : int32 = v28 + 1                                            │

00:00:20 #730 [Verbose] > │         v26.l0 <- v34                                                        │

00:00:20 #731 [Verbose] > │         ()                                                                   │

00:00:20 #732 [Verbose] > │     v2.l0 <- v25                                                             │

00:00:20 #733 [Verbose] > │     let v35 : (int32 []) = v2.l0                                             │

00:00:20 #734 [Verbose] > │     let v36 : (int32 []) = [|2|]                                             │

00:00:20 #735 [Verbose] > │     let v37 : (int32 []) = method1(v36)                                      │

00:00:20 #736 [Verbose] > │     let v38 : int32 = v35.Length                                             │

00:00:20 #737 [Verbose] > │     let v39 : int32 = v37.Length                                             │

00:00:20 #738 [Verbose] > │     let v40 : int32 = v38 + v39                                              │

00:00:20 #739 [Verbose] > │     let v41 : (int32 []) = Array.zeroCreate<int32> (v40)                     │

00:00:20 #740 [Verbose] > │     let v42 : Mut1 = {l0 = 0} : Mut1                                         │

00:00:20 #741 [Verbose] > │     while method2(v40, v42) do                                               │

00:00:20 #742 [Verbose] > │         let v44 : int32 = v42.l0                                             │

00:00:20 #743 [Verbose] > │         let v45 : bool = v44 < v38                                           │

00:00:20 #744 [Verbose] > │         let v49 : int32 =                                                    │

00:00:20 #745 [Verbose] > │             if v45 then                                                      │

00:00:20 #746 [Verbose] > │                 let v46 : int32 = v35.[int v44]                              │

00:00:20 #747 [Verbose] > │                 v46                                                          │

00:00:20 #748 [Verbose] > │             else                                                             │

00:00:20 #749 [Verbose] > │                 let v47 : int32 = v44 - v38                                  │

00:00:20 #750 [Verbose] > │                 let v48 : int32 = v37.[int v47]                              │

00:00:20 #751 [Verbose] > │                 v48                                                          │

00:00:20 #752 [Verbose] > │         v41.[int v44] <- v49                                                 │

00:00:20 #753 [Verbose] > │         let v50 : int32 = v44 + 1                                            │

00:00:20 #754 [Verbose] > │         v42.l0 <- v50                                                        │

00:00:20 #755 [Verbose] > │         ()                                                                   │

00:00:20 #756 [Verbose] > │     v2.l0 <- v41                                                             │

00:00:20 #757 [Verbose] > │     let v51 : (int32 []) = v2.l0                                             │

00:00:20 #758 [Verbose] > │     let v52 : (int32 []) = [|3|]                                             │

00:00:20 #759 [Verbose] > │     let v53 : (int32 []) = method1(v52)                                      │

00:00:20 #760 [Verbose] > │     let v54 : int32 = v51.Length                                             │

00:00:20 #761 [Verbose] > │     let v55 : int32 = v53.Length                                             │

00:00:20 #762 [Verbose] > │     let v56 : int32 = v54 + v55                                              │

00:00:20 #763 [Verbose] > │     let v57 : (int32 []) = Array.zeroCreate<int32> (v56)                     │

00:00:20 #764 [Verbose] > │     let v58 : Mut1 = {l0 = 0} : Mut1                                         │

00:00:20 #765 [Verbose] > │     while method2(v56, v58) do                                               │

00:00:20 #766 [Verbose] > │         let v60 : int32 = v58.l0                                             │

00:00:20 #767 [Verbose] > │         let v61 : bool = v60 < v54                                           │

00:00:20 #768 [Verbose] > │         let v65 : int32 =                                                    │

00:00:20 #769 [Verbose] > │             if v61 then                                                      │

00:00:20 #770 [Verbose] > │                 let v62 : int32 = v51.[int v60]                              │

00:00:20 #771 [Verbose] > │                 v62                                                          │

00:00:20 #772 [Verbose] > │             else                                                             │

00:00:20 #773 [Verbose] > │                 let v63 : int32 = v60 - v54                                  │

00:00:20 #774 [Verbose] > │                 let v64 : int32 = v53.[int v63]                              │

00:00:20 #775 [Verbose] > │                 v64                                                          │

00:00:20 #776 [Verbose] > │         v57.[int v60] <- v65                                                 │

00:00:20 #777 [Verbose] > │         let v66 : int32 = v60 + 1                                            │

00:00:20 #778 [Verbose] > │         v58.l0 <- v66                                                        │

00:00:20 #779 [Verbose] > │         ()                                                                   │

00:00:20 #780 [Verbose] > │     v2.l0 <- v57                                                             │

00:00:20 #781 [Verbose] > │     let v67 : (int32 []) = v2.l0                                             │

00:00:20 #782 [Verbose] > │     let v68 : (int32 []) = [|4|]                                             │

00:00:20 #783 [Verbose] > │     let v69 : (int32 []) = method1(v68)                                      │

00:00:20 #784 [Verbose] > │     let v70 : int32 = v67.Length                                             │

00:00:20 #785 [Verbose] > │     let v71 : int32 = v69.Length                                             │

00:00:20 #786 [Verbose] > │     let v72 : int32 = v70 + v71                                              │

00:00:20 #787 [Verbose] > │     let v73 : (int32 []) = Array.zeroCreate<int32> (v72)                     │

00:00:20 #788 [Verbose] > │     let v74 : Mut1 = {l0 = 0} : Mut1                                         │

00:00:20 #789 [Verbose] > │     while method2(v72, v74) do                                               │

00:00:20 #790 [Verbose] > │         let v76 : int32 = v74.l0                                             │

00:00:20 #791 [Verbose] > │         let v77 : bool = v76 < v70                                           │

00:00:20 #792 [Verbose] > │         let v81 : int32 =                                                    │

00:00:20 #793 [Verbose] > │             if v77 then                                                      │

00:00:20 #794 [Verbose] > │                 let v78 : int32 = v67.[int v76]                              │

00:00:20 #795 [Verbose] > │                 v78                                                          │

00:00:20 #796 [Verbose] > │             else                                                             │

00:00:20 #797 [Verbose] > │                 let v79 : int32 = v76 - v70                                  │

00:00:20 #798 [Verbose] > │                 let v80 : int32 = v69.[int v79]                              │

00:00:20 #799 [Verbose] > │                 v80                                                          │

00:00:20 #800 [Verbose] > │         v73.[int v76] <- v81                                                 │

00:00:20 #801 [Verbose] > │         let v82 : int32 = v76 + 1                                            │

00:00:20 #802 [Verbose] > │         v74.l0 <- v82                                                        │

00:00:20 #803 [Verbose] > │         ()                                                                   │

00:00:20 #804 [Verbose] > │     v2.l0 <- v73                                                             │

00:00:20 #805 [Verbose] > │     let v83 : (int32 []) = v2.l0                                             │

00:00:20 #806 [Verbose] > │     let v84 : (int32 []) = [|5|]                                             │

00:00:20 #807 [Verbose] > │     let v85 : (int32 []) = method1(v84)                                      │

00:00:20 #808 [Verbose] > │     let v86 : int32 = v83.Length                                             │

00:00:20 #809 [Verbose] > │     let v87 : int32 = v85.Length                                             │

00:00:20 #810 [Verbose] > │     let v88 : int32 = v86 + v87                                              │

00:00:20 #811 [Verbose] > │     let v89 : (int32 []) = Array.zeroCreate<int32> (v88)                     │

00:00:20 #812 [Verbose] > │     let v90 : Mut1 = {l0 = 0} : Mut1                                         │

00:00:20 #813 [Verbose] > │     while method2(v88, v90) do                                               │

00:00:20 #814 [Verbose] > │         let v92 : int32 = v90.l0                                             │

00:00:20 #815 [Verbose] > │         let v93 : bool = v92 < v86                                           │

00:00:20 #816 [Verbose] > │         let v97 : int32 =                                                    │

00:00:20 #817 [Verbose] > │             if v93 then                                                      │

00:00:20 #818 [Verbose] > │                 let v94 : int32 = v83.[int v92]                              │

00:00:20 #819 [Verbose] > │                 v94                                                          │

00:00:20 #820 [Verbose] > │             else                                                             │

00:00:20 #821 [Verbose] > │                 let v95 : int32 = v92 - v86                                  │

00:00:20 #822 [Verbose] > │                 let v96 : int32 = v85.[int v95]                              │

00:00:20 #823 [Verbose] > │                 v96                                                          │

00:00:20 #824 [Verbose] > │         v89.[int v92] <- v97                                                 │

00:00:20 #825 [Verbose] > │         let v98 : int32 = v92 + 1                                            │

00:00:20 #826 [Verbose] > │         v90.l0 <- v98                                                        │

00:00:20 #827 [Verbose] > │         ()                                                                   │

00:00:20 #828 [Verbose] > │     v2.l0 <- v89                                                             │

00:00:20 #829 [Verbose] > │     let v99 : (int32 []) = v2.l0                                             │

00:00:20 #830 [Verbose] > │     let v100 : (int32 []) = [|6|]                                            │

00:00:20 #831 [Verbose] > │     let v101 : (int32 []) = method1(v100)                                    │

00:00:20 #832 [Verbose] > │     let v102 : int32 = v99.Length                                            │

00:00:20 #833 [Verbose] > │     let v103 : int32 = v101.Length                                           │

00:00:20 #834 [Verbose] > │     let v104 : int32 = v102 + v103                                           │

00:00:20 #835 [Verbose] > │     let v105 : (int32 []) = Array.zeroCreate<int32> (v104)                   │

00:00:20 #836 [Verbose] > │     let v106 : Mut1 = {l0 = 0} : Mut1                                        │

00:00:20 #837 [Verbose] > │     while method2(v104, v106) do                                             │

00:00:20 #838 [Verbose] > │         let v108 : int32 = v106.l0                                           │

00:00:20 #839 [Verbose] > │         let v109 : bool = v108 < v102                                        │

00:00:20 #840 [Verbose] > │         let v113 : int32 =                                                   │

00:00:20 #841 [Verbose] > │             if v109 then                                                     │

00:00:20 #842 [Verbose] > │                 let v110 : int32 = v99.[int v108]                            │

00:00:20 #843 [Verbose] > │                 v110                                                         │

00:00:20 #844 [Verbose] > │             else                                                             │

00:00:20 #845 [Verbose] > │                 let v111 : int32 = v108 - v102                               │

00:00:20 #846 [Verbose] > │                 let v112 : int32 = v101.[int v111]                           │

00:00:20 #847 [Verbose] > │                 v112                                                         │

00:00:20 #848 [Verbose] > │         v105.[int v108] <- v113                                              │

00:00:20 #849 [Verbose] > │         let v114 : int32 = v108 + 1                                          │

00:00:20 #850 [Verbose] > │         v106.l0 <- v114                                                      │

00:00:20 #851 [Verbose] > │         ()                                                                   │

00:00:20 #852 [Verbose] > │     v2.l0 <- v105                                                            │

00:00:20 #853 [Verbose] > │     let v115 : (int32 []) = v2.l0                                            │

00:00:20 #854 [Verbose] > │     let v116 : (int32 []) = [|7|]                                            │

00:00:20 #855 [Verbose] > │     let v117 : (int32 []) = method1(v116)                                    │

00:00:20 #856 [Verbose] > │     let v118 : int32 = v115.Length                                           │

00:00:20 #857 [Verbose] > │     let v119 : int32 = v117.Length                                           │

00:00:20 #858 [Verbose] > │     let v120 : int32 = v118 + v119                                           │

00:00:20 #859 [Verbose] > │     let v121 : (int32 []) = Array.zeroCreate<int32> (v120)                   │

00:00:20 #860 [Verbose] > │     let v122 : Mut1 = {l0 = 0} : Mut1                                        │

00:00:20 #861 [Verbose] > │     while method2(v120, v122) do                                             │

00:00:20 #862 [Verbose] > │         let v124 : int32 = v122.l0                                           │

00:00:20 #863 [Verbose] > │         let v125 : bool = v124 < v118                                        │

00:00:20 #864 [Verbose] > │         let v129 : int32 =                                                   │

00:00:20 #865 [Verbose] > │             if v125 then                                                     │

00:00:20 #866 [Verbose] > │                 let v126 : int32 = v115.[int v124]                           │

00:00:20 #867 [Verbose] > │                 v126                                                         │

00:00:20 #868 [Verbose] > │             else                                                             │

00:00:20 #869 [Verbose] > │                 let v127 : int32 = v124 - v118                               │

00:00:20 #870 [Verbose] > │                 let v128 : int32 = v117.[int v127]                           │

00:00:20 #871 [Verbose] > │                 v128                                                         │

00:00:20 #872 [Verbose] > │         v121.[int v124] <- v129                                              │

00:00:20 #873 [Verbose] > │         let v130 : int32 = v124 + 1                                          │

00:00:20 #874 [Verbose] > │         v122.l0 <- v130                                                      │

00:00:20 #875 [Verbose] > │         ()                                                                   │

00:00:20 #876 [Verbose] > │     v2.l0 <- v121                                                            │

00:00:20 #877 [Verbose] > │     let v131 : (int32 []) = v2.l0                                            │

00:00:20 #878 [Verbose] > │     let v132 : (int32 []) = [|8|]                                            │

00:00:20 #879 [Verbose] > │     let v133 : (int32 []) = method1(v132)                                    │

00:00:20 #880 [Verbose] > │     let v134 : int32 = v131.Length                                           │

00:00:20 #881 [Verbose] > │     let v135 : int32 = v133.Length                                           │

00:00:20 #882 [Verbose] > │     let v136 : int32 = v134 + v135                                           │

00:00:20 #883 [Verbose] > │     let v137 : (int32 []) = Array.zeroCreate<int32> (v136)                   │

00:00:20 #884 [Verbose] > │     let v138 : Mut1 = {l0 = 0} : Mut1                                        │

00:00:20 #885 [Verbose] > │     while method2(v136, v138) do                                             │

00:00:20 #886 [Verbose] > │         let v140 : int32 = v138.l0                                           │

00:00:20 #887 [Verbose] > │         let v141 : bool = v140 < v134                                        │

00:00:20 #888 [Verbose] > │         let v145 : int32 =                                                   │

00:00:20 #889 [Verbose] > │             if v141 then                                                     │

00:00:20 #890 [Verbose] > │                 let v142 : int32 = v131.[int v140]                           │

00:00:20 #891 [Verbose] > │                 v142                                                         │

00:00:20 #892 [Verbose] > │             else                                                             │

00:00:20 #893 [Verbose] > │                 let v143 : int32 = v140 - v134                               │

00:00:20 #894 [Verbose] > │                 let v144 : int32 = v133.[int v143]                           │

00:00:20 #895 [Verbose] > │                 v144                                                         │

00:00:20 #896 [Verbose] > │         v137.[int v140] <- v145                                              │

00:00:20 #897 [Verbose] > │         let v146 : int32 = v140 + 1                                          │

00:00:20 #898 [Verbose] > │         v138.l0 <- v146                                                      │

00:00:20 #899 [Verbose] > │         ()                                                                   │

00:00:20 #900 [Verbose] > │     v2.l0 <- v137                                                            │

00:00:20 #901 [Verbose] > │     let v147 : (int32 []) = v2.l0                                            │

00:00:20 #902 [Verbose] > │     let v148 : (int32 []) = [|9|]                                            │

00:00:20 #903 [Verbose] > │     let v149 : (int32 []) = method1(v148)                                    │

00:00:20 #904 [Verbose] > │     let v150 : int32 = v147.Length                                           │

00:00:20 #905 [Verbose] > │     let v151 : int32 = v149.Length                                           │

00:00:20 #906 [Verbose] > │     let v152 : int32 = v150 + v151                                           │

00:00:20 #907 [Verbose] > │     let v153 : (int32 []) = Array.zeroCreate<int32> (v152)                   │

00:00:20 #908 [Verbose] > │     let v154 : Mut1 = {l0 = 0} : Mut1                                        │

00:00:20 #909 [Verbose] > │     while method2(v152, v154) do                                             │

00:00:20 #910 [Verbose] > │         let v156 : int32 = v154.l0                                           │

00:00:20 #911 [Verbose] > │         let v157 : bool = v156 < v150                                        │

00:00:20 #912 [Verbose] > │         let v161 : int32 =                                                   │

00:00:20 #913 [Verbose] > │             if v157 then                                                     │

00:00:20 #914 [Verbose] > │                 let v158 : int32 = v147.[int v156]                           │

00:00:20 #915 [Verbose] > │                 v158                                                         │

00:00:20 #916 [Verbose] > │             else                                                             │

00:00:20 #917 [Verbose] > │                 let v159 : int32 = v156 - v150                               │

00:00:20 #918 [Verbose] > │                 let v160 : int32 = v149.[int v159]                           │

00:00:20 #919 [Verbose] > │                 v160                                                         │

00:00:20 #920 [Verbose] > │         v153.[int v156] <- v161                                              │

00:00:20 #921 [Verbose] > │         let v162 : int32 = v156 + 1                                          │

00:00:20 #922 [Verbose] > │         v154.l0 <- v162                                                      │

00:00:20 #923 [Verbose] > │         ()                                                                   │

00:00:20 #924 [Verbose] > │     v2.l0 <- v153                                                            │

00:00:20 #925 [Verbose] > │     let v163 : (int32 []) = v2.l0                                            │

00:00:20 #926 [Verbose] > │     let v164 : (int32 []) = [|0; 1; 2; 3; 4; 5; 6; 7; 8; 9|]                 │

00:00:20 #927 [Verbose] > │     let v165 : (int32 []) = method1(v164)                                    │

00:00:20 #928 [Verbose] > │     let v166 : string = $"__expect / actual: %A{v163} / expected: %A{v165}"  │

00:00:20 #929 [Verbose] > │     let v167 : int32 = v163.Length                                           │

00:00:20 #930 [Verbose] > │     let v168 : int32 = v165.Length                                           │

00:00:20 #931 [Verbose] > │     let v169 : bool = v167 = v168                                            │

00:00:20 #932 [Verbose] > │     let v170 : bool = v169 <> true                                           │

00:00:20 #933 [Verbose] > │     let v173 : bool =                                                        │

00:00:20 #934 [Verbose] > │         if v170 then                                                         │

00:00:20 #935 [Verbose] > │             false                                                            │

00:00:20 #936 [Verbose] > │         else                                                                 │

00:00:20 #937 [Verbose] > │             let v171 : int32 = 0                                             │

00:00:20 #938 [Verbose] > │             method3(v163, v165, v171)                                        │

00:00:20 #939 [Verbose] > │     let v174 : bool = v173 = false                                           │

00:00:20 #940 [Verbose] > │     if v174 then                                                             │

00:00:20 #941 [Verbose] > │         failwith<unit> v166                                                  │

00:00:20 #942 [Verbose] > │ method0()                                                                    │

00:00:20 #943 [Verbose] > │                                                                              │

00:00:20 #944 [Verbose] > │                                                                              │

00:00:20 #945 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #946 [Verbose] >

00:00:20 #947 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:20 #948 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:20 #949 [Verbose] > │ ## take_while                                                                │

00:00:20 #950 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #951 [Verbose] >

00:00:20 #952 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #953 [Verbose] > inl take_while cond seq =

00:00:20 #954 [Verbose] >     inl rec loop acc i =

00:00:20 #955 [Verbose] >         match seq i with

00:00:20 #956 [Verbose] >         | Some st when cond st i => loop (st :: acc) (i + 1)

00:00:20 #957 [Verbose] >         | _ => acc |> listm.rev

00:00:20 #958 [Verbose] >     loop [[]] 0

00:00:20 #959 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3877-7729-72156049d9ca\main.spi

00:00:20 #960 [Verbose] >

00:00:20 #961 [Verbose] > ╭─[ 204.18ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #962 [Verbose] > │ ()                                                                           │

00:00:20 #963 [Verbose] > │                                                                              │

00:00:20 #964 [Verbose] > │                                                                              │

00:00:20 #965 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #966 [Verbose] >

00:00:20 #967 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #968 [Verbose] > // // test

00:00:20 #969 [Verbose] >

00:00:20 #970 [Verbose] > listm.init 10i32 id

00:00:20 #971 [Verbose] > |> from_list

00:00:20 #972 [Verbose] > |> take_while (fun n (_ : i32) => n < 5)

00:00:20 #973 [Verbose] > |> listm'.sum

00:00:20 #974 [Verbose] > |> _equal 10

00:00:21 #975 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3897-9762-9a334ce7de25\main.spi

00:00:21 #976 [Verbose] >

00:00:21 #977 [Verbose] > ╭─[ 192.41ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #978 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:21 #979 [Verbose] > │     let v0 : string = $"__expect / actual: %A{10} / expected: %A{10}"        │

00:00:21 #980 [Verbose] > │     ()                                                                       │

00:00:21 #981 [Verbose] > │ method0()                                                                    │

00:00:21 #982 [Verbose] > │                                                                              │

00:00:21 #983 [Verbose] > │                                                                              │

00:00:21 #984 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #985 [Verbose] >

00:00:21 #986 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:21 #987 [Verbose] > // // test

00:00:21 #988 [Verbose] >

00:00:21 #989 [Verbose] > stream.new_finite_stream print_and_return 10i32

00:00:21 #990 [Verbose] > |> flip stream.try_item

00:00:21 #991 [Verbose] > |> take_while (fun n (_ : i32) => n < 5)

00:00:21 #992 [Verbose] > |> listm'.sum

00:00:21 #993 [Verbose] > |> _equal 10

00:00:21 #994 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3917-1725-12aa8d6591fc\main.spi

00:00:21 #995 [Verbose] >

00:00:21 #996 [Verbose] > ╭─[ 302.96ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #997 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:21 #998 [Verbose] > │     printfn $"print_and_return / x: {0}"                                     │

00:00:21 #999 [Verbose] > │     printfn $"print_and_return / x: {1}"                                     │

00:00:21 #1000 [Verbose] > │     printfn $"print_and_return / x: {1}"                                     │

00:00:21 #1001 [Verbose] > │     printfn $"print_and_return / x: {2}"                                     │

00:00:21 #1002 [Verbose] > │     printfn $"print_and_return / x: {1}"                                     │

00:00:21 #1003 [Verbose] > │     printfn $"print_and_return / x: {2}"                                     │

00:00:21 #1004 [Verbose] > │     printfn $"print_and_return / x: {3}"                                     │

00:00:21 #1005 [Verbose] > │     printfn $"print_and_return / x: {1}"                                     │

00:00:21 #1006 [Verbose] > │     printfn $"print_and_return / x: {2}"                                     │

00:00:21 #1007 [Verbose] > │     printfn $"print_and_return / x: {3}"                                     │

00:00:21 #1008 [Verbose] > │     printfn $"print_and_return / x: {4}"                                     │

00:00:21 #1009 [Verbose] > │     printfn $"print_and_return / x: {1}"                                     │

00:00:21 #1010 [Verbose] > │     printfn $"print_and_return / x: {2}"                                     │

00:00:21 #1011 [Verbose] > │     printfn $"print_and_return / x: {3}"                                     │

00:00:21 #1012 [Verbose] > │     printfn $"print_and_return / x: {4}"                                     │

00:00:21 #1013 [Verbose] > │     printfn $"print_and_return / x: {5}"                                     │

00:00:21 #1014 [Verbose] > │     let v0 : string = $"__expect / actual: %A{10} / expected: %A{10}"        │

00:00:21 #1015 [Verbose] > │     ()                                                                       │

00:00:21 #1016 [Verbose] > │ method0()                                                                    │

00:00:21 #1017 [Verbose] > │                                                                              │

00:00:21 #1018 [Verbose] > │ print_and_return / x: 0                                                      │

00:00:21 #1019 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:21 #1020 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:21 #1021 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:21 #1022 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:21 #1023 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:21 #1024 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:21 #1025 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:21 #1026 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:21 #1027 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:21 #1028 [Verbose] > │ print_and_return / x: 4                                                      │

00:00:21 #1029 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:21 #1030 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:21 #1031 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:21 #1032 [Verbose] > │ print_and_return / x: 4                                                      │

00:00:21 #1033 [Verbose] > │ print_and_return / x: 5                                                      │

00:00:21 #1034 [Verbose] > │                                                                              │

00:00:21 #1035 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #1036 [Verbose] >

00:00:21 #1037 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:21 #1038 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:21 #1039 [Verbose] > │ ## take_while_                                                               │

00:00:21 #1040 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #1041 [Verbose] >

00:00:21 #1042 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:21 #1043 [Verbose] > inl take_while_ cond seq =

00:00:21 #1044 [Verbose] >     let rec loop acc i =

00:00:21 #1045 [Verbose] >         match seq i with

00:00:21 #1046 [Verbose] >         | Some st when cond st i => loop (st :: acc) (i + 1)

00:00:21 #1047 [Verbose] >         | _ => acc |> listm.rev

00:00:21 #1048 [Verbose] >     loop [[]] 0

00:00:21 #1049 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3949-4959-424b2fe6dec2\main.spi

00:00:21 #1050 [Verbose] >

00:00:21 #1051 [Verbose] > ╭─[ 174.02ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #1052 [Verbose] > │ ()                                                                           │

00:00:21 #1053 [Verbose] > │                                                                              │

00:00:21 #1054 [Verbose] > │                                                                              │

00:00:21 #1055 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #1056 [Verbose] >

00:00:21 #1057 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:21 #1058 [Verbose] > // // test

00:00:21 #1059 [Verbose] >

00:00:21 #1060 [Verbose] > stream.new_infinite_stream_ print_and_return

00:00:21 #1061 [Verbose] > |> flip stream.try_item

00:00:21 #1062 [Verbose] > |> take_while_ (fun n (_ : i32) => n < 5i32)

00:00:21 #1063 [Verbose] > |> listm'.sum

00:00:21 #1064 [Verbose] > |> _equal 10

00:00:21 #1065 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-3967-6758-608e123a25ff\main.spi

00:00:22 #1066 [Verbose] >

00:00:22 #1067 [Verbose] > ╭─[ 383.60ms - stdout ]────────────────────────────────────────────────────────╮

00:00:22 #1068 [Verbose] > │ type UH0 =                                                                   │

00:00:22 #1069 [Verbose] > │     | UH0_0 of int32 * (unit -> UH0)                                         │

00:00:22 #1070 [Verbose] > │     | UH0_1                                                                  │

00:00:22 #1071 [Verbose] > │ and UH1 =                                                                    │

00:00:22 #1072 [Verbose] > │     | UH1_0 of int32 * UH1                                                   │

00:00:22 #1073 [Verbose] > │     | UH1_1                                                                  │

00:00:22 #1074 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:22 #1075 [Verbose] > │     | US0_0                                                                  │

00:00:22 #1076 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:22 #1077 [Verbose] > │ let rec closure0 (v0 : int32) () : UH0 =                                     │

00:00:22 #1078 [Verbose] > │     let v1 : int32 = v0 + 1                                                  │

00:00:22 #1079 [Verbose] > │     method1(v1)                                                              │

00:00:22 #1080 [Verbose] > │ and method1 (v0 : int32) : UH0 =                                             │

00:00:22 #1081 [Verbose] > │     printfn $"print_and_return / x: {v0}"                                    │

00:00:22 #1082 [Verbose] > │     let v1 : (unit -> UH0) = closure0(v0)                                    │

00:00:22 #1083 [Verbose] > │     UH0_0(v0, v1)                                                            │

00:00:22 #1084 [Verbose] > │ and method3 (v0 : int32, v1 : UH0) : US0 =                                   │

00:00:22 #1085 [Verbose] > │     match v1 with                                                            │

00:00:22 #1086 [Verbose] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

00:00:22 #1087 [Verbose] > │         let v4 : bool = v0 <= 0                                              │

00:00:22 #1088 [Verbose] > │         if v4 then                                                           │

00:00:22 #1089 [Verbose] > │             US0_1(v2)                                                        │

00:00:22 #1090 [Verbose] > │         else                                                                 │

00:00:22 #1091 [Verbose] > │             let v6 : int32 = v0 - 1                                          │

00:00:22 #1092 [Verbose] > │             let v7 : UH0 = v3 ()                                             │

00:00:22 #1093 [Verbose] > │             method3(v6, v7)                                                  │

00:00:22 #1094 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:22 #1095 [Verbose] > │         US0_0                                                                │

00:00:22 #1096 [Verbose] > │ and method4 (v0 : UH1, v1 : UH1) : UH1 =                                     │

00:00:22 #1097 [Verbose] > │     match v0 with                                                            │

00:00:22 #1098 [Verbose] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

00:00:22 #1099 [Verbose] > │         let v4 : UH1 = UH1_0(v2, v1)                                         │

00:00:22 #1100 [Verbose] > │         method4(v3, v4)                                                      │

00:00:22 #1101 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:22 #1102 [Verbose] > │         v1                                                                   │

00:00:22 #1103 [Verbose] > │ and method2 (v0 : UH0, v1 : UH1, v2 : int32) : UH1 =                         │

00:00:22 #1104 [Verbose] > │     let v3 : US0 = method3(v2, v0)                                           │

00:00:22 #1105 [Verbose] > │     match v3 with                                                            │

00:00:22 #1106 [Verbose] > │     | US0_1(v4) -> (* Some *)                                                │

00:00:22 #1107 [Verbose] > │         let v5 : bool = v4 < 5                                               │

00:00:22 #1108 [Verbose] > │         if v5 then                                                           │

00:00:22 #1109 [Verbose] > │             let v6 : UH1 = UH1_0(v4, v1)                                     │

00:00:22 #1110 [Verbose] > │             let v7 : int32 = v2 + 1                                          │

00:00:22 #1111 [Verbose] > │             method2(v0, v6, v7)                                              │

00:00:22 #1112 [Verbose] > │         else                                                                 │

00:00:22 #1113 [Verbose] > │             let v9 : UH1 = UH1_1                                             │

00:00:22 #1114 [Verbose] > │             method4(v1, v9)                                                  │

00:00:22 #1115 [Verbose] > │     | _ ->                                                                   │

00:00:22 #1116 [Verbose] > │         let v12 : UH1 = UH1_1                                                │

00:00:22 #1117 [Verbose] > │         method4(v1, v12)                                                     │

00:00:22 #1118 [Verbose] > │ and method5 (v0 : UH1, v1 : int32) : int32 =                                 │

00:00:22 #1119 [Verbose] > │     match v0 with                                                            │

00:00:22 #1120 [Verbose] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

00:00:22 #1121 [Verbose] > │         let v4 : int32 = v1 + v2                                             │

00:00:22 #1122 [Verbose] > │         method5(v3, v4)                                                      │

00:00:22 #1123 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:22 #1124 [Verbose] > │         v1                                                                   │

00:00:22 #1125 [Verbose] > │ and method0 () : unit =                                                      │

00:00:22 #1126 [Verbose] > │     let v0 : int32 = 0                                                       │

00:00:22 #1127 [Verbose] > │     let v1 : UH0 = method1(v0)                                               │

00:00:22 #1128 [Verbose] > │     let v2 : UH1 = UH1_1                                                     │

00:00:22 #1129 [Verbose] > │     let v3 : int32 = 0                                                       │

00:00:22 #1130 [Verbose] > │     let v4 : UH1 = method2(v1, v2, v3)                                       │

00:00:22 #1131 [Verbose] > │     let v5 : int32 = 0                                                       │

00:00:22 #1132 [Verbose] > │     let v6 : int32 = method5(v4, v5)                                         │

00:00:22 #1133 [Verbose] > │     let v7 : string = $"__expect / actual: %A{v6} / expected: %A{10}"        │

00:00:22 #1134 [Verbose] > │     let v8 : bool = v6 = 10                                                  │

00:00:22 #1135 [Verbose] > │     let v9 : bool = v8 = false                                               │

00:00:22 #1136 [Verbose] > │     if v9 then                                                               │

00:00:22 #1137 [Verbose] > │         failwith<unit> v7                                                    │

00:00:22 #1138 [Verbose] > │ method0()                                                                    │

00:00:22 #1139 [Verbose] > │                                                                              │

00:00:22 #1140 [Verbose] > │ print_and_return / x: 0                                                      │

00:00:22 #1141 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:22 #1142 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:22 #1143 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:22 #1144 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:22 #1145 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:22 #1146 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:22 #1147 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:22 #1148 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:22 #1149 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:22 #1150 [Verbose] > │ print_and_return / x: 4                                                      │

00:00:22 #1151 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:22 #1152 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:22 #1153 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:22 #1154 [Verbose] > │ print_and_return / x: 4                                                      │

00:00:22 #1155 [Verbose] > │ print_and_return / x: 5                                                      │

00:00:22 #1156 [Verbose] > │                                                                              │

00:00:22 #1157 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #1158 [Verbose] >

00:00:22 #1159 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:22 #1160 [Verbose] > // // test

00:00:22 #1161 [Verbose] >

00:00:22 #1162 [Verbose] > stream.new_infinite_stream_ print_and_return

00:00:22 #1163 [Verbose] > |> stream.memoize

00:00:22 #1164 [Verbose] > |> fun list =>

00:00:22 #1165 [Verbose] >     inl list = list ()

00:00:22 #1166 [Verbose] >     fun n =>

00:00:22 #1167 [Verbose] >         list |> stream.try_item n

00:00:22 #1168 [Verbose] > |> take_while_ (fun n (_ : i32) => n < 5i32)

00:00:22 #1169 [Verbose] > |> listm'.sum

00:00:22 #1170 [Verbose] > |> _equal 10

00:00:22 #1171 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-4013-1305-1f599fe24618\main.spi

00:00:22 #1172 [Verbose] >

00:00:22 #1173 [Verbose] > ╭─[ 399.20ms - stdout ]────────────────────────────────────────────────────────╮

00:00:22 #1174 [Verbose] > │ type UH0 =                                                                   │

00:00:22 #1175 [Verbose] > │     | UH0_0 of int32 * (unit -> UH0)                                         │

00:00:22 #1176 [Verbose] > │     | UH0_1                                                                  │

00:00:22 #1177 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:22 #1178 [Verbose] > │     | US0_0 of f0_0 : UH0                                                    │

00:00:22 #1179 [Verbose] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

00:00:22 #1180 [Verbose] > │ and Mut0 = {mutable l0 : US0}                                                │

00:00:22 #1181 [Verbose] > │ and UH1 =                                                                    │

00:00:22 #1182 [Verbose] > │     | UH1_0 of int32 * UH1                                                   │

00:00:22 #1183 [Verbose] > │     | UH1_1                                                                  │

00:00:22 #1184 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:22 #1185 [Verbose] > │     | US1_0                                                                  │

00:00:22 #1186 [Verbose] > │     | US1_1 of f1_0 : int32                                                  │

00:00:22 #1187 [Verbose] > │ let rec closure0 (v0 : int32) () : UH0 =                                     │

00:00:22 #1188 [Verbose] > │     let v1 : int32 = v0 + 1                                                  │

00:00:22 #1189 [Verbose] > │     method1(v1)                                                              │

00:00:22 #1190 [Verbose] > │ and method1 (v0 : int32) : UH0 =                                             │

00:00:22 #1191 [Verbose] > │     printfn $"print_and_return / x: {v0}"                                    │

00:00:22 #1192 [Verbose] > │     let v1 : (unit -> UH0) = closure0(v0)                                    │

00:00:22 #1193 [Verbose] > │     UH0_0(v0, v1)                                                            │

00:00:22 #1194 [Verbose] > │ and closure1 (v0 : UH0) () : UH0 =                                           │

00:00:22 #1195 [Verbose] > │     v0                                                                       │

00:00:22 #1196 [Verbose] > │ and closure2 (v0 : UH0, v1 : Mut0) () : UH0 =                                │

00:00:22 #1197 [Verbose] > │     let v2 : US0 = v1.l0                                                     │

00:00:22 #1198 [Verbose] > │     match v2 with                                                            │

00:00:22 #1199 [Verbose] > │     | US0_0(v3) -> (* Computed *)                                            │

00:00:22 #1200 [Verbose] > │         v3                                                                   │

00:00:22 #1201 [Verbose] > │     | US0_1(v4) -> (* NotComputed *)                                         │

00:00:22 #1202 [Verbose] > │         let v5 : UH0 = v4 ()                                                 │

00:00:22 #1203 [Verbose] > │         let v12 : UH0 =                                                      │

00:00:22 #1204 [Verbose] > │             match v5 with                                                    │

00:00:22 #1205 [Verbose] > │             | UH0_0(v7, v8) -> (* StreamCons *)                              │

00:00:22 #1206 [Verbose] > │                 let v9 : (unit -> UH0) = method2(v0, v8)                     │

00:00:22 #1207 [Verbose] > │                 UH0_0(v7, v9)                                                │

00:00:22 #1208 [Verbose] > │             | UH0_1 -> (* StreamNil *)                                       │

00:00:22 #1209 [Verbose] > │                 UH0_1                                                        │

00:00:22 #1210 [Verbose] > │         let v13 : US0 = US0_0(v12)                                           │

00:00:22 #1211 [Verbose] > │         v1.l0 <- v13                                                         │

00:00:22 #1212 [Verbose] > │         v12                                                                  │

00:00:22 #1213 [Verbose] > │ and method2 (v0 : UH0, v1 : (unit -> UH0)) : (unit -> UH0) =                 │

00:00:22 #1214 [Verbose] > │     let v2 : US0 = US0_1(v1)                                                 │

00:00:22 #1215 [Verbose] > │     let v3 : Mut0 = {l0 = v2} : Mut0                                         │

00:00:22 #1216 [Verbose] > │     closure2(v0, v3)                                                         │

00:00:22 #1217 [Verbose] > │ and method4 (v0 : int32, v1 : UH0) : US1 =                                   │

00:00:22 #1218 [Verbose] > │     match v1 with                                                            │

00:00:22 #1219 [Verbose] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

00:00:22 #1220 [Verbose] > │         let v4 : bool = v0 <= 0                                              │

00:00:22 #1221 [Verbose] > │         if v4 then                                                           │

00:00:22 #1222 [Verbose] > │             US1_1(v2)                                                        │

00:00:22 #1223 [Verbose] > │         else                                                                 │

00:00:22 #1224 [Verbose] > │             let v6 : int32 = v0 - 1                                          │

00:00:22 #1225 [Verbose] > │             let v7 : UH0 = v3 ()                                             │

00:00:22 #1226 [Verbose] > │             method4(v6, v7)                                                  │

00:00:22 #1227 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:22 #1228 [Verbose] > │         US1_0                                                                │

00:00:22 #1229 [Verbose] > │ and method5 (v0 : UH1, v1 : UH1) : UH1 =                                     │

00:00:22 #1230 [Verbose] > │     match v0 with                                                            │

00:00:22 #1231 [Verbose] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

00:00:22 #1232 [Verbose] > │         let v4 : UH1 = UH1_0(v2, v1)                                         │

00:00:22 #1233 [Verbose] > │         method5(v3, v4)                                                      │

00:00:22 #1234 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:22 #1235 [Verbose] > │         v1                                                                   │

00:00:22 #1236 [Verbose] > │ and method3 (v0 : UH0, v1 : UH1, v2 : int32) : UH1 =                         │

00:00:22 #1237 [Verbose] > │     let v3 : US1 = method4(v2, v0)                                           │

00:00:22 #1238 [Verbose] > │     match v3 with                                                            │

00:00:22 #1239 [Verbose] > │     | US1_1(v4) -> (* Some *)                                                │

00:00:22 #1240 [Verbose] > │         let v5 : bool = v4 < 5                                               │

00:00:22 #1241 [Verbose] > │         if v5 then                                                           │

00:00:22 #1242 [Verbose] > │             let v6 : UH1 = UH1_0(v4, v1)                                     │

00:00:22 #1243 [Verbose] > │             let v7 : int32 = v2 + 1                                          │

00:00:22 #1244 [Verbose] > │             method3(v0, v6, v7)                                              │

00:00:22 #1245 [Verbose] > │         else                                                                 │

00:00:22 #1246 [Verbose] > │             let v9 : UH1 = UH1_1                                             │

00:00:22 #1247 [Verbose] > │             method5(v1, v9)                                                  │

00:00:22 #1248 [Verbose] > │     | _ ->                                                                   │

00:00:22 #1249 [Verbose] > │         let v12 : UH1 = UH1_1                                                │

00:00:22 #1250 [Verbose] > │         method5(v1, v12)                                                     │

00:00:22 #1251 [Verbose] > │ and method6 (v0 : UH1, v1 : int32) : int32 =                                 │

00:00:22 #1252 [Verbose] > │     match v0 with                                                            │

00:00:22 #1253 [Verbose] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

00:00:22 #1254 [Verbose] > │         let v4 : int32 = v1 + v2                                             │

00:00:22 #1255 [Verbose] > │         method6(v3, v4)                                                      │

00:00:22 #1256 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:22 #1257 [Verbose] > │         v1                                                                   │

00:00:22 #1258 [Verbose] > │ and method0 () : unit =                                                      │

00:00:22 #1259 [Verbose] > │     let v0 : int32 = 0                                                       │

00:00:22 #1260 [Verbose] > │     let v1 : UH0 = method1(v0)                                               │

00:00:22 #1261 [Verbose] > │     let v2 : (unit -> UH0) = closure1(v1)                                    │

00:00:22 #1262 [Verbose] > │     let v3 : (unit -> UH0) = method2(v1, v2)                                 │

00:00:22 #1263 [Verbose] > │     let v4 : UH0 = v3 ()                                                     │

00:00:22 #1264 [Verbose] > │     let v5 : UH1 = UH1_1                                                     │

00:00:22 #1265 [Verbose] > │     let v6 : int32 = 0                                                       │

00:00:22 #1266 [Verbose] > │     let v7 : UH1 = method3(v4, v5, v6)                                       │

00:00:22 #1267 [Verbose] > │     let v8 : int32 = 0                                                       │

00:00:22 #1268 [Verbose] > │     let v9 : int32 = method6(v7, v8)                                         │

00:00:22 #1269 [Verbose] > │     let v10 : string = $"__expect / actual: %A{v9} / expected: %A{10}"       │

00:00:22 #1270 [Verbose] > │     let v11 : bool = v9 = 10                                                 │

00:00:22 #1271 [Verbose] > │     let v12 : bool = v11 = false                                             │

00:00:22 #1272 [Verbose] > │     if v12 then                                                              │

00:00:22 #1273 [Verbose] > │         failwith<unit> v10                                                   │

00:00:22 #1274 [Verbose] > │ method0()                                                                    │

00:00:22 #1275 [Verbose] > │                                                                              │

00:00:22 #1276 [Verbose] > │ print_and_return / x: 0                                                      │

00:00:22 #1277 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:22 #1278 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:22 #1279 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:22 #1280 [Verbose] > │ print_and_return / x: 4                                                      │

00:00:22 #1281 [Verbose] > │ print_and_return / x: 5                                                      │

00:00:22 #1282 [Verbose] > │                                                                              │

00:00:22 #1283 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #1284 [Verbose] >

00:00:22 #1285 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:22 #1286 [Verbose] > // // test

00:00:22 #1287 [Verbose] >

00:00:22 #1288 [Verbose] > stream.new_finite_stream print_and_return 10i32

00:00:22 #1289 [Verbose] > |> stream.memoize

00:00:22 #1290 [Verbose] > |> fun list =>

00:00:22 #1291 [Verbose] >     inl list = list ()

00:00:22 #1292 [Verbose] >     fun n =>

00:00:22 #1293 [Verbose] >         list |> stream.try_item n

00:00:22 #1294 [Verbose] > |> take_while_ (fun n (_ : i32) => n < 5)

00:00:22 #1295 [Verbose] > |> listm'.sum

00:00:22 #1296 [Verbose] > |> _equal 10

00:00:22 #1297 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-4058-5867-5aa4e754e9ff\main.spi

00:00:23 #1298 [Verbose] >

00:00:23 #1299 [Verbose] > ╭─[ 467.43ms - stdout ]────────────────────────────────────────────────────────╮

00:00:23 #1300 [Verbose] > │ type UH0 =                                                                   │

00:00:23 #1301 [Verbose] > │     | UH0_0 of int32 * (unit -> UH0)                                         │

00:00:23 #1302 [Verbose] > │     | UH0_1                                                                  │

00:00:23 #1303 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:23 #1304 [Verbose] > │     | US0_0 of f0_0 : UH0                                                    │

00:00:23 #1305 [Verbose] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

00:00:23 #1306 [Verbose] > │ and Mut0 = {mutable l0 : US0}                                                │

00:00:23 #1307 [Verbose] > │ and UH1 =                                                                    │

00:00:23 #1308 [Verbose] > │     | UH1_0 of int32 * UH1                                                   │

00:00:23 #1309 [Verbose] > │     | UH1_1                                                                  │

00:00:23 #1310 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:23 #1311 [Verbose] > │     | US1_0                                                                  │

00:00:23 #1312 [Verbose] > │     | US1_1 of f1_0 : int32                                                  │

00:00:23 #1313 [Verbose] > │ let rec closure10 () () : UH0 =                                              │

00:00:23 #1314 [Verbose] > │     UH0_1                                                                    │

00:00:23 #1315 [Verbose] > │ and closure9 () () : UH0 =                                                   │

00:00:23 #1316 [Verbose] > │     printfn $"print_and_return / x: {9}"                                     │

00:00:23 #1317 [Verbose] > │     let v0 : (unit -> UH0) = closure10()                                     │

00:00:23 #1318 [Verbose] > │     UH0_0(9, v0)                                                             │

00:00:23 #1319 [Verbose] > │ and closure8 () () : UH0 =                                                   │

00:00:23 #1320 [Verbose] > │     printfn $"print_and_return / x: {8}"                                     │

00:00:23 #1321 [Verbose] > │     let v0 : (unit -> UH0) = closure9()                                      │

00:00:23 #1322 [Verbose] > │     UH0_0(8, v0)                                                             │

00:00:23 #1323 [Verbose] > │ and closure7 () () : UH0 =                                                   │

00:00:23 #1324 [Verbose] > │     printfn $"print_and_return / x: {7}"                                     │

00:00:23 #1325 [Verbose] > │     let v0 : (unit -> UH0) = closure8()                                      │

00:00:23 #1326 [Verbose] > │     UH0_0(7, v0)                                                             │

00:00:23 #1327 [Verbose] > │ and closure6 () () : UH0 =                                                   │

00:00:23 #1328 [Verbose] > │     printfn $"print_and_return / x: {6}"                                     │

00:00:23 #1329 [Verbose] > │     let v0 : (unit -> UH0) = closure7()                                      │

00:00:23 #1330 [Verbose] > │     UH0_0(6, v0)                                                             │

00:00:23 #1331 [Verbose] > │ and closure5 () () : UH0 =                                                   │

00:00:23 #1332 [Verbose] > │     printfn $"print_and_return / x: {5}"                                     │

00:00:23 #1333 [Verbose] > │     let v0 : (unit -> UH0) = closure6()                                      │

00:00:23 #1334 [Verbose] > │     UH0_0(5, v0)                                                             │

00:00:23 #1335 [Verbose] > │ and closure4 () () : UH0 =                                                   │

00:00:23 #1336 [Verbose] > │     printfn $"print_and_return / x: {4}"                                     │

00:00:23 #1337 [Verbose] > │     let v0 : (unit -> UH0) = closure5()                                      │

00:00:23 #1338 [Verbose] > │     UH0_0(4, v0)                                                             │

00:00:23 #1339 [Verbose] > │ and closure3 () () : UH0 =                                                   │

00:00:23 #1340 [Verbose] > │     printfn $"print_and_return / x: {3}"                                     │

00:00:23 #1341 [Verbose] > │     let v0 : (unit -> UH0) = closure4()                                      │

00:00:23 #1342 [Verbose] > │     UH0_0(3, v0)                                                             │

00:00:23 #1343 [Verbose] > │ and closure2 () () : UH0 =                                                   │

00:00:23 #1344 [Verbose] > │     printfn $"print_and_return / x: {2}"                                     │

00:00:23 #1345 [Verbose] > │     let v0 : (unit -> UH0) = closure3()                                      │

00:00:23 #1346 [Verbose] > │     UH0_0(2, v0)                                                             │

00:00:23 #1347 [Verbose] > │ and closure1 () () : UH0 =                                                   │

00:00:23 #1348 [Verbose] > │     printfn $"print_and_return / x: {1}"                                     │

00:00:23 #1349 [Verbose] > │     let v0 : (unit -> UH0) = closure2()                                      │

00:00:23 #1350 [Verbose] > │     UH0_0(1, v0)                                                             │

00:00:23 #1351 [Verbose] > │ and closure0 () () : UH0 =                                                   │

00:00:23 #1352 [Verbose] > │     let v0 : (unit -> UH0) = closure1()                                      │

00:00:23 #1353 [Verbose] > │     UH0_0(0, v0)                                                             │

00:00:23 #1354 [Verbose] > │ and closure11 (v0 : Mut0) () : UH0 =                                         │

00:00:23 #1355 [Verbose] > │     let v1 : US0 = v0.l0                                                     │

00:00:23 #1356 [Verbose] > │     match v1 with                                                            │

00:00:23 #1357 [Verbose] > │     | US0_0(v2) -> (* Computed *)                                            │

00:00:23 #1358 [Verbose] > │         v2                                                                   │

00:00:23 #1359 [Verbose] > │     | US0_1(v3) -> (* NotComputed *)                                         │

00:00:23 #1360 [Verbose] > │         let v4 : UH0 = v3 ()                                                 │

00:00:23 #1361 [Verbose] > │         let v13 : UH0 =                                                      │

00:00:23 #1362 [Verbose] > │             match v4 with                                                    │

00:00:23 #1363 [Verbose] > │             | UH0_0(v6, v7) -> (* StreamCons *)                              │

00:00:23 #1364 [Verbose] > │                 let v8 : US0 = US0_1(v7)                                     │

00:00:23 #1365 [Verbose] > │                 let v9 : Mut0 = {l0 = v8} : Mut0                             │

00:00:23 #1366 [Verbose] > │                 let v10 : (unit -> UH0) = closure11(v9)                      │

00:00:23 #1367 [Verbose] > │                 UH0_0(v6, v10)                                               │

00:00:23 #1368 [Verbose] > │             | UH0_1 -> (* StreamNil *)                                       │

00:00:23 #1369 [Verbose] > │                 UH0_1                                                        │

00:00:23 #1370 [Verbose] > │         let v14 : US0 = US0_0(v13)                                           │

00:00:23 #1371 [Verbose] > │         v0.l0 <- v14                                                         │

00:00:23 #1372 [Verbose] > │         v13                                                                  │

00:00:23 #1373 [Verbose] > │ and method2 (v0 : int32, v1 : UH0) : US1 =                                   │

00:00:23 #1374 [Verbose] > │     match v1 with                                                            │

00:00:23 #1375 [Verbose] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

00:00:23 #1376 [Verbose] > │         let v4 : bool = v0 <= 0                                              │

00:00:23 #1377 [Verbose] > │         if v4 then                                                           │

00:00:23 #1378 [Verbose] > │             US1_1(v2)                                                        │

00:00:23 #1379 [Verbose] > │         else                                                                 │

00:00:23 #1380 [Verbose] > │             let v6 : int32 = v0 - 1                                          │

00:00:23 #1381 [Verbose] > │             let v7 : UH0 = v3 ()                                             │

00:00:23 #1382 [Verbose] > │             method2(v6, v7)                                                  │

00:00:23 #1383 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:23 #1384 [Verbose] > │         US1_0                                                                │

00:00:23 #1385 [Verbose] > │ and method3 (v0 : UH1, v1 : UH1) : UH1 =                                     │

00:00:23 #1386 [Verbose] > │     match v0 with                                                            │

00:00:23 #1387 [Verbose] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

00:00:23 #1388 [Verbose] > │         let v4 : UH1 = UH1_0(v2, v1)                                         │

00:00:23 #1389 [Verbose] > │         method3(v3, v4)                                                      │

00:00:23 #1390 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:23 #1391 [Verbose] > │         v1                                                                   │

00:00:23 #1392 [Verbose] > │ and method1 (v0 : UH0, v1 : UH1, v2 : int32) : UH1 =                         │

00:00:23 #1393 [Verbose] > │     let v3 : US1 = method2(v2, v0)                                           │

00:00:23 #1394 [Verbose] > │     match v3 with                                                            │

00:00:23 #1395 [Verbose] > │     | US1_1(v4) -> (* Some *)                                                │

00:00:23 #1396 [Verbose] > │         let v5 : bool = v4 < 5                                               │

00:00:23 #1397 [Verbose] > │         if v5 then                                                           │

00:00:23 #1398 [Verbose] > │             let v6 : UH1 = UH1_0(v4, v1)                                     │

00:00:23 #1399 [Verbose] > │             let v7 : int32 = v2 + 1                                          │

00:00:23 #1400 [Verbose] > │             method1(v0, v6, v7)                                              │

00:00:23 #1401 [Verbose] > │         else                                                                 │

00:00:23 #1402 [Verbose] > │             let v9 : UH1 = UH1_1                                             │

00:00:23 #1403 [Verbose] > │             method3(v1, v9)                                                  │

00:00:23 #1404 [Verbose] > │     | _ ->                                                                   │

00:00:23 #1405 [Verbose] > │         let v12 : UH1 = UH1_1                                                │

00:00:23 #1406 [Verbose] > │         method3(v1, v12)                                                     │

00:00:23 #1407 [Verbose] > │ and method4 (v0 : UH1, v1 : int32) : int32 =                                 │

00:00:23 #1408 [Verbose] > │     match v0 with                                                            │

00:00:23 #1409 [Verbose] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

00:00:23 #1410 [Verbose] > │         let v4 : int32 = v1 + v2                                             │

00:00:23 #1411 [Verbose] > │         method4(v3, v4)                                                      │

00:00:23 #1412 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:23 #1413 [Verbose] > │         v1                                                                   │

00:00:23 #1414 [Verbose] > │ and method0 () : unit =                                                      │

00:00:23 #1415 [Verbose] > │     printfn $"print_and_return / x: {0}"                                     │

00:00:23 #1416 [Verbose] > │     let v0 : (unit -> UH0) = closure0()                                      │

00:00:23 #1417 [Verbose] > │     let v1 : US0 = US0_1(v0)                                                 │

00:00:23 #1418 [Verbose] > │     let v2 : Mut0 = {l0 = v1} : Mut0                                         │

00:00:23 #1419 [Verbose] > │     let v3 : US0 = v2.l0                                                     │

00:00:23 #1420 [Verbose] > │     let v18 : UH0 =                                                          │

00:00:23 #1421 [Verbose] > │         match v3 with                                                        │

00:00:23 #1422 [Verbose] > │         | US0_0(v4) -> (* Computed *)                                        │

00:00:23 #1423 [Verbose] > │             v4                                                               │

00:00:23 #1424 [Verbose] > │         | US0_1(v5) -> (* NotComputed *)                                     │

00:00:23 #1425 [Verbose] > │             let v6 : UH0 = v5 ()                                             │

00:00:23 #1426 [Verbose] > │             let v15 : UH0 =                                                  │

00:00:23 #1427 [Verbose] > │                 match v6 with                                                │

00:00:23 #1428 [Verbose] > │                 | UH0_0(v8, v9) -> (* StreamCons *)                          │

00:00:23 #1429 [Verbose] > │                     let v10 : US0 = US0_1(v9)                                │

00:00:23 #1430 [Verbose] > │                     let v11 : Mut0 = {l0 = v10} : Mut0                       │

00:00:23 #1431 [Verbose] > │                     let v12 : (unit -> UH0) = closure11(v11)                 │

00:00:23 #1432 [Verbose] > │                     UH0_0(v8, v12)                                           │

00:00:23 #1433 [Verbose] > │                 | UH0_1 -> (* StreamNil *)                                   │

00:00:23 #1434 [Verbose] > │                     UH0_1                                                    │

00:00:23 #1435 [Verbose] > │             let v16 : US0 = US0_0(v15)                                       │

00:00:23 #1436 [Verbose] > │             v2.l0 <- v16                                                     │

00:00:23 #1437 [Verbose] > │             v15                                                              │

00:00:23 #1438 [Verbose] > │     let v19 : UH1 = UH1_1                                                    │

00:00:23 #1439 [Verbose] > │     let v20 : int32 = 0                                                      │

00:00:23 #1440 [Verbose] > │     let v21 : UH1 = method1(v18, v19, v20)                                   │

00:00:23 #1441 [Verbose] > │     let v22 : int32 = 0                                                      │

00:00:23 #1442 [Verbose] > │     let v23 : int32 = method4(v21, v22)                                      │

00:00:23 #1443 [Verbose] > │     let v24 : string = $"__expect / actual: %A{v23} / expected: %A{10}"      │

00:00:23 #1444 [Verbose] > │     let v25 : bool = v23 = 10                                                │

00:00:23 #1445 [Verbose] > │     let v26 : bool = v25 = false                                             │

00:00:23 #1446 [Verbose] > │     if v26 then                                                              │

00:00:23 #1447 [Verbose] > │         failwith<unit> v24                                                   │

00:00:23 #1448 [Verbose] > │ method0()                                                                    │

00:00:23 #1449 [Verbose] > │                                                                              │

00:00:23 #1450 [Verbose] > │ print_and_return / x: 0                                                      │

00:00:23 #1451 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:23 #1452 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:23 #1453 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:23 #1454 [Verbose] > │ print_and_return / x: 4                                                      │

00:00:23 #1455 [Verbose] > │ print_and_return / x: 5                                                      │

00:00:23 #1456 [Verbose] > │                                                                              │

00:00:23 #1457 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:23 #1458 [Verbose] >

00:00:23 #1459 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:23 #1460 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:23 #1461 [Verbose] > │ ## memoize                                                                   │

00:00:23 #1462 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:23 #1463 [Verbose] >

00:00:23 #1464 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:23 #1465 [Verbose] > inl memoize seq =

00:00:23 #1466 [Verbose] >     inl state = mut [[]]

00:00:23 #1467 [Verbose] >     fun n =>

00:00:23 #1468 [Verbose] >         match *state |> listm'.try_find (fun (n', _) => n' = n) with

00:00:23 #1469 [Verbose] >         | Some (_, v) => v

00:00:23 #1470 [Verbose] >         | None =>

00:00:23 #1471 [Verbose] >             inl new_state = seq n

00:00:23 #1472 [Verbose] >             state <- (n, new_state) :: *state

00:00:23 #1473 [Verbose] >             new_state

00:00:23 #1474 [Verbose] >

00:00:23 #1475 [Verbose] > inl memoize_ seq =

00:00:23 #1476 [Verbose] >     inl state = mut [[]]

00:00:23 #1477 [Verbose] >     fun n =>

00:00:23 #1478 [Verbose] >         match *state |> listm'.try_find_ (fun (n', _) => n' = n) with

00:00:23 #1479 [Verbose] >         | Some (_, v) => v

00:00:23 #1480 [Verbose] >         | None =>

00:00:23 #1481 [Verbose] >             inl new_state = seq n

00:00:23 #1482 [Verbose] >             state <- (n, new_state) :: *state

00:00:23 #1483 [Verbose] >             new_state

00:00:23 #1484 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-4115-1553-1c716c5cf1b3\main.spi

00:00:23 #1485 [Verbose] >

00:00:23 #1486 [Verbose] > ╭─[ 212.10ms - stdout ]────────────────────────────────────────────────────────╮

00:00:23 #1487 [Verbose] > │ ()                                                                           │

00:00:23 #1488 [Verbose] > │                                                                              │

00:00:23 #1489 [Verbose] > │                                                                              │

00:00:23 #1490 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:23 #1491 [Verbose] >

00:00:23 #1492 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:23 #1493 [Verbose] > // // test

00:00:23 #1494 [Verbose] >

00:00:23 #1495 [Verbose] > inl seq =

00:00:23 #1496 [Verbose] >     fun n =>

00:00:23 #1497 [Verbose] >         n |> print_and_return |> Some

00:00:23 #1498 [Verbose] >     |> memoize_

00:00:23 #1499 [Verbose] >

00:00:23 #1500 [Verbose] > seq

00:00:23 #1501 [Verbose] > |> take_while_ (fun n (_ : i32) => n < 5)

00:00:23 #1502 [Verbose] > |> listm'.sum

00:00:23 #1503 [Verbose] > |> _equal 10

00:00:23 #1504 [Verbose] >

00:00:23 #1505 [Verbose] > seq

00:00:23 #1506 [Verbose] > |> take_while_ (fun n _ => n < 5)

00:00:23 #1507 [Verbose] > |> listm'.sum

00:00:23 #1508 [Verbose] > |> _equal 10

00:00:23 #1509 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-4137-3700-3b32a6f23836\main.spi

00:00:23 #1510 [Verbose] >

00:00:23 #1511 [Verbose] > ╭─[ 555.34ms - stdout ]────────────────────────────────────────────────────────╮

00:00:23 #1512 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:23 #1513 [Verbose] > │     | US0_0                                                                  │

00:00:23 #1514 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:23 #1515 [Verbose] > │ and UH0 =                                                                    │

00:00:23 #1516 [Verbose] > │     | UH0_0 of int32 * US0 * UH0                                             │

00:00:23 #1517 [Verbose] > │     | UH0_1                                                                  │

00:00:23 #1518 [Verbose] > │ and Mut0 = {mutable l0 : UH0}                                                │

00:00:23 #1519 [Verbose] > │ and UH1 =                                                                    │

00:00:23 #1520 [Verbose] > │     | UH1_0 of int32 * UH1                                                   │

00:00:23 #1521 [Verbose] > │     | UH1_1                                                                  │

00:00:23 #1522 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:23 #1523 [Verbose] > │     | US1_0                                                                  │

00:00:23 #1524 [Verbose] > │     | US1_1 of f1_0 : int32 * f1_1 : US0                                     │

00:00:23 #1525 [Verbose] > │ let rec method2 (v0 : int32, v1 : UH0) : US1 =                               │

00:00:23 #1526 [Verbose] > │     match v1 with                                                            │

00:00:23 #1527 [Verbose] > │     | UH0_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:23 #1528 [Verbose] > │         let v6 : bool = v3 = v0                                              │

00:00:23 #1529 [Verbose] > │         if v6 then                                                           │

00:00:23 #1530 [Verbose] > │             US1_1(v3, v4)                                                    │

00:00:23 #1531 [Verbose] > │         else                                                                 │

00:00:23 #1532 [Verbose] > │             method2(v0, v5)                                                  │

00:00:23 #1533 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:23 #1534 [Verbose] > │         US1_0                                                                │

00:00:23 #1535 [Verbose] > │ and method3 (v0 : UH1, v1 : UH1) : UH1 =                                     │

00:00:23 #1536 [Verbose] > │     match v0 with                                                            │

00:00:23 #1537 [Verbose] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

00:00:23 #1538 [Verbose] > │         let v4 : UH1 = UH1_0(v2, v1)                                         │

00:00:23 #1539 [Verbose] > │         method3(v3, v4)                                                      │

00:00:23 #1540 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:23 #1541 [Verbose] > │         v1                                                                   │

00:00:23 #1542 [Verbose] > │ and method1 (v0 : Mut0, v1 : UH1, v2 : int32) : UH1 =                        │

00:00:23 #1543 [Verbose] > │     let v3 : UH0 = v0.l0                                                     │

00:00:23 #1544 [Verbose] > │     let v4 : US1 = method2(v2, v3)                                           │

00:00:23 #1545 [Verbose] > │     let v12 : US0 =                                                          │

00:00:23 #1546 [Verbose] > │         match v4 with                                                        │

00:00:23 #1547 [Verbose] > │         | US1_0 -> (* None *)                                                │

00:00:23 #1548 [Verbose] > │             printfn $"print_and_return / x: {v2}"                            │

00:00:23 #1549 [Verbose] > │             let v7 : UH0 = v0.l0                                             │

00:00:23 #1550 [Verbose] > │             let v8 : US0 = US0_1(v2)                                         │

00:00:23 #1551 [Verbose] > │             let v9 : UH0 = UH0_0(v2, v8, v7)                                 │

00:00:23 #1552 [Verbose] > │             v0.l0 <- v9                                                      │

00:00:23 #1553 [Verbose] > │             US0_1(v2)                                                        │

00:00:23 #1554 [Verbose] > │         | US1_1(v5, v6) -> (* Some *)                                        │

00:00:23 #1555 [Verbose] > │             v6                                                               │

00:00:23 #1556 [Verbose] > │     match v12 with                                                           │

00:00:23 #1557 [Verbose] > │     | US0_1(v13) -> (* Some *)                                               │

00:00:23 #1558 [Verbose] > │         let v14 : bool = v13 < 5                                             │

00:00:23 #1559 [Verbose] > │         if v14 then                                                          │

00:00:23 #1560 [Verbose] > │             let v15 : UH1 = UH1_0(v13, v1)                                   │

00:00:23 #1561 [Verbose] > │             let v16 : int32 = v2 + 1                                         │

00:00:23 #1562 [Verbose] > │             method1(v0, v15, v16)                                            │

00:00:23 #1563 [Verbose] > │         else                                                                 │

00:00:23 #1564 [Verbose] > │             let v18 : UH1 = UH1_1                                            │

00:00:23 #1565 [Verbose] > │             method3(v1, v18)                                                 │

00:00:23 #1566 [Verbose] > │     | _ ->                                                                   │

00:00:23 #1567 [Verbose] > │         let v21 : UH1 = UH1_1                                                │

00:00:23 #1568 [Verbose] > │         method3(v1, v21)                                                     │

00:00:23 #1569 [Verbose] > │ and method4 (v0 : UH1, v1 : int32) : int32 =                                 │

00:00:23 #1570 [Verbose] > │     match v0 with                                                            │

00:00:23 #1571 [Verbose] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

00:00:23 #1572 [Verbose] > │         let v4 : int32 = v1 + v2                                             │

00:00:23 #1573 [Verbose] > │         method4(v3, v4)                                                      │

00:00:23 #1574 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:23 #1575 [Verbose] > │         v1                                                                   │

00:00:23 #1576 [Verbose] > │ and method5 (v0 : Mut0, v1 : UH1, v2 : int32) : UH1 =                        │

00:00:23 #1577 [Verbose] > │     let v3 : UH0 = v0.l0                                                     │

00:00:23 #1578 [Verbose] > │     let v4 : US1 = method2(v2, v3)                                           │

00:00:23 #1579 [Verbose] > │     let v12 : US0 =                                                          │

00:00:23 #1580 [Verbose] > │         match v4 with                                                        │

00:00:23 #1581 [Verbose] > │         | US1_0 -> (* None *)                                                │

00:00:23 #1582 [Verbose] > │             printfn $"print_and_return / x: {v2}"                            │

00:00:23 #1583 [Verbose] > │             let v7 : UH0 = v0.l0                                             │

00:00:23 #1584 [Verbose] > │             let v8 : US0 = US0_1(v2)                                         │

00:00:23 #1585 [Verbose] > │             let v9 : UH0 = UH0_0(v2, v8, v7)                                 │

00:00:23 #1586 [Verbose] > │             v0.l0 <- v9                                                      │

00:00:23 #1587 [Verbose] > │             US0_1(v2)                                                        │

00:00:23 #1588 [Verbose] > │         | US1_1(v5, v6) -> (* Some *)                                        │

00:00:23 #1589 [Verbose] > │             v6                                                               │

00:00:23 #1590 [Verbose] > │     match v12 with                                                           │

00:00:23 #1591 [Verbose] > │     | US0_1(v13) -> (* Some *)                                               │

00:00:23 #1592 [Verbose] > │         let v14 : bool = v13 < 5                                             │

00:00:23 #1593 [Verbose] > │         if v14 then                                                          │

00:00:23 #1594 [Verbose] > │             let v15 : UH1 = UH1_0(v13, v1)                                   │

00:00:23 #1595 [Verbose] > │             let v16 : int32 = v2 + 1                                         │

00:00:23 #1596 [Verbose] > │             method5(v0, v15, v16)                                            │

00:00:23 #1597 [Verbose] > │         else                                                                 │

00:00:23 #1598 [Verbose] > │             let v18 : UH1 = UH1_1                                            │

00:00:23 #1599 [Verbose] > │             method3(v1, v18)                                                 │

00:00:23 #1600 [Verbose] > │     | _ ->                                                                   │

00:00:23 #1601 [Verbose] > │         let v21 : UH1 = UH1_1                                                │

00:00:23 #1602 [Verbose] > │         method3(v1, v21)                                                     │

00:00:23 #1603 [Verbose] > │ and method0 () : unit =                                                      │

00:00:23 #1604 [Verbose] > │     let v0 : UH0 = UH0_1                                                     │

00:00:23 #1605 [Verbose] > │     let v1 : Mut0 = {l0 = v0} : Mut0                                         │

00:00:23 #1606 [Verbose] > │     let v2 : UH1 = UH1_1                                                     │

00:00:23 #1607 [Verbose] > │     let v3 : int32 = 0                                                       │

00:00:23 #1608 [Verbose] > │     let v4 : UH1 = method1(v1, v2, v3)                                       │

00:00:23 #1609 [Verbose] > │     let v5 : int32 = 0                                                       │

00:00:23 #1610 [Verbose] > │     let v6 : int32 = method4(v4, v5)                                         │

00:00:23 #1611 [Verbose] > │     let v7 : string = $"__expect / actual: %A{v6} / expected: %A{10}"        │

00:00:23 #1612 [Verbose] > │     let v8 : bool = v6 = 10                                                  │

00:00:23 #1613 [Verbose] > │     let v9 : bool = v8 = false                                               │

00:00:23 #1614 [Verbose] > │     if v9 then                                                               │

00:00:23 #1615 [Verbose] > │         failwith<unit> v7                                                    │

00:00:23 #1616 [Verbose] > │     let v10 : UH1 = UH1_1                                                    │

00:00:23 #1617 [Verbose] > │     let v11 : int32 = 0                                                      │

00:00:23 #1618 [Verbose] > │     let v12 : UH1 = method5(v1, v10, v11)                                    │

00:00:23 #1619 [Verbose] > │     let v13 : int32 = 0                                                      │

00:00:23 #1620 [Verbose] > │     let v14 : int32 = method4(v12, v13)                                      │

00:00:23 #1621 [Verbose] > │     let v15 : string = $"__expect / actual: %A{v14} / expected: %A{10}"      │

00:00:23 #1622 [Verbose] > │     let v16 : bool = v14 = 10                                                │

00:00:23 #1623 [Verbose] > │     let v17 : bool = v16 = false                                             │

00:00:23 #1624 [Verbose] > │     if v17 then                                                              │

00:00:23 #1625 [Verbose] > │         failwith<unit> v15                                                   │

00:00:23 #1626 [Verbose] > │ method0()                                                                    │

00:00:23 #1627 [Verbose] > │                                                                              │

00:00:23 #1628 [Verbose] > │ print_and_return / x: 0                                                      │

00:00:23 #1629 [Verbose] > │ print_and_return / x: 1                                                      │

00:00:23 #1630 [Verbose] > │ print_and_return / x: 2                                                      │

00:00:23 #1631 [Verbose] > │ print_and_return / x: 3                                                      │

00:00:23 #1632 [Verbose] > │ print_and_return / x: 4                                                      │

00:00:23 #1633 [Verbose] > │ print_and_return / x: 5                                                      │

00:00:23 #1634 [Verbose] > │                                                                              │

00:00:23 #1635 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:23 #1636 [Verbose] >

00:00:23 #1637 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:23 #1638 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:23 #1639 [Verbose] > │ ## iterate                                                                   │

00:00:23 #1640 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:23 #1641 [Verbose] >

00:00:23 #1642 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:23 #1643 [Verbose] > inl iterate f x0 num_steps =

00:00:23 #1644 [Verbose] >     inl rec loop x n =

00:00:23 #1645 [Verbose] >         if n <= 0

00:00:23 #1646 [Verbose] >         then x

00:00:23 #1647 [Verbose] >         else loop (f x) (n - 1)

00:00:23 #1648 [Verbose] >     loop x0 num_steps

00:00:24 #1649 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-4201-0194-08970e2c4108\main.spi

00:00:24 #1650 [Verbose] >

00:00:24 #1651 [Verbose] > ╭─[ 228.35ms - stdout ]────────────────────────────────────────────────────────╮

00:00:24 #1652 [Verbose] > │ ()                                                                           │

00:00:24 #1653 [Verbose] > │                                                                              │

00:00:24 #1654 [Verbose] > │                                                                              │

00:00:24 #1655 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:24 #1656 [Verbose] >

00:00:24 #1657 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:24 #1658 [Verbose] > // // test

00:00:24 #1659 [Verbose] >

00:00:24 #1660 [Verbose] > 10i32 |> iterate ((*) 2) 1i32

00:00:24 #1661 [Verbose] > |> _equal 1024

00:00:24 #1662 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-4224-2488-2b8622e396d0\main.spi

00:00:24 #1663 [Verbose] >

00:00:24 #1664 [Verbose] > ╭─[ 405.67ms - stdout ]────────────────────────────────────────────────────────╮

00:00:24 #1665 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:24 #1666 [Verbose] > │     let v0 : string = $"__expect / actual: %A{1024} / expected: %A{1024}"    │

00:00:24 #1667 [Verbose] > │     ()                                                                       │

00:00:24 #1668 [Verbose] > │ method0()                                                                    │

00:00:24 #1669 [Verbose] > │                                                                              │

00:00:24 #1670 [Verbose] > │                                                                              │

00:00:24 #1671 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:24 #1672 [Verbose] >

00:00:24 #1673 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:24 #1674 [Verbose] > inl iterate_ f x0 num_steps =

00:00:24 #1675 [Verbose] >     let rec loop x n =

00:00:24 #1676 [Verbose] >         if n <= 0

00:00:24 #1677 [Verbose] >         then x

00:00:24 #1678 [Verbose] >         else loop (f x) (n - 1)

00:00:24 #1679 [Verbose] >     loop x0 num_steps

00:00:24 #1680 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-4267-6777-6e3174b83d24\main.spi

00:00:24 #1681 [Verbose] >

00:00:24 #1682 [Verbose] > ╭─[ 200.22ms - stdout ]────────────────────────────────────────────────────────╮

00:00:24 #1683 [Verbose] > │ ()                                                                           │

00:00:24 #1684 [Verbose] > │                                                                              │

00:00:24 #1685 [Verbose] > │                                                                              │

00:00:24 #1686 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:24 #1687 [Verbose] >

00:00:24 #1688 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:24 #1689 [Verbose] > // // test

00:00:24 #1690 [Verbose] >

00:00:24 #1691 [Verbose] > 10i32 |> iterate_ ((*) 2) 1i32

00:00:24 #1692 [Verbose] > |> _equal 1024

00:00:24 #1693 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-4288-8804-84f03b50cd72\main.spi

00:00:25 #1694 [Verbose] >

00:00:25 #1695 [Verbose] > ╭─[ 252.12ms - stdout ]────────────────────────────────────────────────────────╮

00:00:25 #1696 [Verbose] > │ let rec method1 (v0 : int32, v1 : int32) : int32 =                           │

00:00:25 #1697 [Verbose] > │     let v2 : bool = v1 <= 0                                                  │

00:00:25 #1698 [Verbose] > │     if v2 then                                                               │

00:00:25 #1699 [Verbose] > │         v0                                                                   │

00:00:25 #1700 [Verbose] > │     else                                                                     │

00:00:25 #1701 [Verbose] > │         let v3 : int32 = 2 * v0                                              │

00:00:25 #1702 [Verbose] > │         let v4 : int32 = v1 - 1                                              │

00:00:25 #1703 [Verbose] > │         method1(v3, v4)                                                      │

00:00:25 #1704 [Verbose] > │ and method0 () : unit =                                                      │

00:00:25 #1705 [Verbose] > │     let v0 : int32 = 1                                                       │

00:00:25 #1706 [Verbose] > │     let v1 : int32 = 10                                                      │

00:00:25 #1707 [Verbose] > │     let v2 : int32 = method1(v0, v1)                                         │

00:00:25 #1708 [Verbose] > │     let v3 : string = $"__expect / actual: %A{v2} / expected: %A{1024}"      │

00:00:25 #1709 [Verbose] > │     let v4 : bool = v2 = 1024                                                │

00:00:25 #1710 [Verbose] > │     let v5 : bool = v4 = false                                               │

00:00:25 #1711 [Verbose] > │     if v5 then                                                               │

00:00:25 #1712 [Verbose] > │         failwith<unit> v3                                                    │

00:00:25 #1713 [Verbose] > │ method0()                                                                    │

00:00:25 #1714 [Verbose] > │                                                                              │

00:00:25 #1715 [Verbose] > │                                                                              │

00:00:25 #1716 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:25 #1717 [Verbose] >

00:00:25 #1718 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:25 #1719 [Verbose] > inl iterate' f x0 num_steps =

00:00:25 #1720 [Verbose] >     listm.init num_steps id

00:00:25 #1721 [Verbose] >     |> listm.fold (fun x _ => f x) x0

00:00:25 #1722 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-4314-1462-1c95d4e11285\main.spi

00:00:25 #1723 [Verbose] >

00:00:25 #1724 [Verbose] > ╭─[ 296.79ms - stdout ]────────────────────────────────────────────────────────╮

00:00:25 #1725 [Verbose] > │ ()                                                                           │

00:00:25 #1726 [Verbose] > │                                                                              │

00:00:25 #1727 [Verbose] > │                                                                              │

00:00:25 #1728 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:25 #1729 [Verbose] >

00:00:25 #1730 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:25 #1731 [Verbose] > // // test

00:00:25 #1732 [Verbose] >

00:00:25 #1733 [Verbose] > 10i32 |> iterate' ((*) 2) 1i32

00:00:25 #1734 [Verbose] > |> _equal 1024

00:00:25 #1735 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-4344-4454-464899785186\main.spi

00:00:25 #1736 [Verbose] >

00:00:25 #1737 [Verbose] > ╭─[ 224.23ms - stdout ]────────────────────────────────────────────────────────╮

00:00:25 #1738 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:25 #1739 [Verbose] > │     let v0 : string = $"__expect / actual: %A{1024} / expected: %A{1024}"    │

00:00:25 #1740 [Verbose] > │     ()                                                                       │

00:00:25 #1741 [Verbose] > │ method0()                                                                    │

00:00:25 #1742 [Verbose] > │                                                                              │

00:00:25 #1743 [Verbose] > │                                                                              │

00:00:25 #1744 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:25 #1745 [Verbose] >

00:00:25 #1746 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:25 #1747 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:25 #1748 [Verbose] > │ ## find_last                                                                 │

00:00:25 #1749 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:25 #1750 [Verbose] >

00:00:25 #1751 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:25 #1752 [Verbose] > inl find_last forall item result. fold_fn fn target : option result =

00:00:25 #1753 [Verbose] >     fold_fn (fun (item : item) (result : option result) =>

00:00:25 #1754 [Verbose] >         match result with

00:00:25 #1755 [Verbose] >         | None => fn item

00:00:25 #1756 [Verbose] >         | result => result

00:00:25 #1757 [Verbose] >     ) target (None : option result)

00:00:25 #1758 [Verbose] >

00:00:25 #1759 [Verbose] > inl array_find_last forall item result. (fn : item -> option result) (target : a

00:00:25 #1760 [Verbose] > i32 item) : option result =

00:00:25 #1761 [Verbose] >     find_last am.foldBack fn target

00:00:25 #1762 [Verbose] >

00:00:25 #1763 [Verbose] > inl list_find_last forall item result. (fn : item -> option result) (target :

00:00:25 #1764 [Verbose] > list item) : option result =

00:00:25 #1765 [Verbose] >     find_last listm.foldBack fn target

00:00:25 #1766 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-4368-6813-634ae2ed186b\main.spi

00:00:25 #1767 [Verbose] >

00:00:25 #1768 [Verbose] > ╭─[ 269.65ms - stdout ]────────────────────────────────────────────────────────╮

00:00:25 #1769 [Verbose] > │ ()                                                                           │

00:00:25 #1770 [Verbose] > │                                                                              │

00:00:25 #1771 [Verbose] > │                                                                              │

00:00:25 #1772 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:28 #1773 [Verbose] > [NbConvertApp] Converting notebook seq.dib.ipynb to html

00:00:28 #1774 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:00:28 #1775 [Verbose] >   validate(nb)

00:00:29 #1776 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:00:29 #1777 [Verbose] >   return _pygments_highlight(

00:00:30 #1778 [Verbose] > [NbConvertApp] Writing 391605 bytes to seq.dib.html

00:00:31 #1779 [Debug] executeAsync / exitCode: 0 / output.Length: 114270

00:00:31 #1780 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\lib\spiral

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 util.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:04 #11 [Verbose] >

00:00:04 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:04 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:04 #14 [Verbose] > │ # util                                                                       │

00:00:04 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:04 #16 [Verbose] >

00:00:04 #17 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:04 #18 [Verbose] > // // test

00:00:04 #19 [Verbose] >

00:00:04 #20 [Verbose] > open testing

00:00:08 #21 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1638-5749-4926-4fe7bcf1b641\main.spi

00:00:11 #22 [Verbose] >

00:00:11 #23 [Verbose] > ╭─[ 7.07s - stdout ]───────────────────────────────────────────────────────────╮

00:00:11 #24 [Verbose] > │ ()                                                                           │

00:00:11 #25 [Verbose] > │                                                                              │

00:00:11 #26 [Verbose] > │                                                                              │

00:00:11 #27 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #28 [Verbose] >

00:00:11 #29 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:11 #30 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:11 #31 [Verbose] > │ ## ski                                                                       │

00:00:11 #32 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #33 [Verbose] >

00:00:11 #34 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:11 #35 [Verbose] > union rec ski =

00:00:11 #36 [Verbose] >     | I

00:00:11 #37 [Verbose] >     | K

00:00:11 #38 [Verbose] >     | S

00:00:11 #39 [Verbose] >     | App : ski * ski

00:00:11 #40 [Verbose] >

00:00:11 #41 [Verbose] > inl rec eval ski =

00:00:11 #42 [Verbose] >     match ski with

00:00:11 #43 [Verbose] >     | App (App (K, x), y) => eval x

00:00:11 #44 [Verbose] >     | App (App (App (S, x), y), z) => eval (App (App (x, z), App (y, z)))

00:00:11 #45 [Verbose] >     | App (I, x) => eval x

00:00:11 #46 [Verbose] >     | App (K, x) => App (K, eval x)

00:00:11 #47 [Verbose] >     | App (f, x) => eval (App (eval f, x))

00:00:11 #48 [Verbose] >     | _ => ski

00:00:11 #49 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-0181-8195-849b33baa7ad\main.spi

00:00:12 #50 [Verbose] >

00:00:12 #51 [Verbose] > ╭─[ 283.75ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #52 [Verbose] > │ ()                                                                           │

00:00:12 #53 [Verbose] > │                                                                              │

00:00:12 #54 [Verbose] > │                                                                              │

00:00:12 #55 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #56 [Verbose] >

00:00:12 #57 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #58 [Verbose] > // // test

00:00:12 #59 [Verbose] >

00:00:12 #60 [Verbose] > eval I

00:00:12 #61 [Verbose] > |> _equal I

00:00:12 #62 [Verbose] >

00:00:12 #63 [Verbose] > eval (App (I, I))

00:00:12 #64 [Verbose] > |> _equal I

00:00:12 #65 [Verbose] >

00:00:12 #66 [Verbose] > eval (App (I, App (I, I)))

00:00:12 #67 [Verbose] > |> _equal I

00:00:12 #68 [Verbose] >

00:00:12 #69 [Verbose] > eval (App (App (I, I), I))

00:00:12 #70 [Verbose] > |> _equal I

00:00:12 #71 [Verbose] >

00:00:12 #72 [Verbose] > eval (App (App (App (I, I), I), I))

00:00:12 #73 [Verbose] > |> _equal I

00:00:12 #74 [Verbose] >

00:00:12 #75 [Verbose] > eval K

00:00:12 #76 [Verbose] > |> _equal K

00:00:12 #77 [Verbose] >

00:00:12 #78 [Verbose] > eval (App (K, I))

00:00:12 #79 [Verbose] > |> _equal (App (K, I))

00:00:12 #80 [Verbose] >

00:00:12 #81 [Verbose] > eval (App (K, K))

00:00:12 #82 [Verbose] > |> _equal (App (K, K))

00:00:12 #83 [Verbose] >

00:00:12 #84 [Verbose] > eval (App (App (K, I), K))

00:00:12 #85 [Verbose] > |> _equal I

00:00:12 #86 [Verbose] >

00:00:12 #87 [Verbose] > eval (App (App (K, K), I))

00:00:12 #88 [Verbose] > |> _equal K

00:00:12 #89 [Verbose] >

00:00:12 #90 [Verbose] > eval (App (App (App (App (K, K), I), S), K))

00:00:12 #91 [Verbose] > |> _equal S

00:00:12 #92 [Verbose] >

00:00:12 #93 [Verbose] > eval S

00:00:12 #94 [Verbose] > |> _equal S

00:00:12 #95 [Verbose] >

00:00:12 #96 [Verbose] > eval (App (App (App (S, I), I), I))

00:00:12 #97 [Verbose] > |> _equal I

00:00:12 #98 [Verbose] >

00:00:12 #99 [Verbose] > eval (App (App (App (S, K), K), I))

00:00:12 #100 [Verbose] > |> _equal I

00:00:12 #101 [Verbose] >

00:00:12 #102 [Verbose] > eval (App (App (App (S, K), I), (App (App (K, I), S))))

00:00:12 #103 [Verbose] > |> _equal I

00:00:12 #104 [Verbose] >

00:00:12 #105 [Verbose] > eval (App (App (K, S), App (I, App (App (App (S, K), S), I))))

00:00:12 #106 [Verbose] > |> _equal S

00:00:12 #107 [Verbose] >

00:00:12 #108 [Verbose] > eval (App (App (App (S, K), I), K))

00:00:12 #109 [Verbose] > |> _equal K

00:00:12 #110 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-0209-0961-005d46f31689\main.spi

00:00:13 #111 [Verbose] >

00:00:13 #112 [Verbose] > ╭─[ 1.76s - stdout ]───────────────────────────────────────────────────────────╮

00:00:13 #113 [Verbose] > │ type UH0 =                                                                   │

00:00:13 #114 [Verbose] > │     | UH0_0 of UH0 * UH0                                                     │

00:00:13 #115 [Verbose] > │     | UH0_1                                                                  │

00:00:13 #116 [Verbose] > │     | UH0_2                                                                  │

00:00:13 #117 [Verbose] > │     | UH0_3                                                                  │

00:00:13 #118 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:13 #119 [Verbose] > │     let v0 : UH0 = UH0_1                                                     │

00:00:13 #120 [Verbose] > │     let v1 : UH0 = UH0_1                                                     │

00:00:13 #121 [Verbose] > │     let v2 : string = $"__expect / actual: %A{v0} / expected: %A{v1}"        │

00:00:13 #122 [Verbose] > │     let v6 : UH0 = UH0_1                                                     │

00:00:13 #123 [Verbose] > │     let v7 : UH0 = UH0_1                                                     │

00:00:13 #124 [Verbose] > │     let v8 : string = $"__expect / actual: %A{v6} / expected: %A{v7}"        │

00:00:13 #125 [Verbose] > │     let v12 : UH0 = UH0_1                                                    │

00:00:13 #126 [Verbose] > │     let v13 : UH0 = UH0_1                                                    │

00:00:13 #127 [Verbose] > │     let v14 : string = $"__expect / actual: %A{v12} / expected: %A{v13}"     │

00:00:13 #128 [Verbose] > │     let v18 : UH0 = UH0_1                                                    │

00:00:13 #129 [Verbose] > │     let v19 : UH0 = UH0_1                                                    │

00:00:13 #130 [Verbose] > │     let v20 : string = $"__expect / actual: %A{v18} / expected: %A{v19}"     │

00:00:13 #131 [Verbose] > │     let v24 : UH0 = UH0_1                                                    │

00:00:13 #132 [Verbose] > │     let v25 : UH0 = UH0_1                                                    │

00:00:13 #133 [Verbose] > │     let v26 : string = $"__expect / actual: %A{v24} / expected: %A{v25}"     │

00:00:13 #134 [Verbose] > │     let v30 : UH0 = UH0_2                                                    │

00:00:13 #135 [Verbose] > │     let v31 : UH0 = UH0_2                                                    │

00:00:13 #136 [Verbose] > │     let v32 : string = $"__expect / actual: %A{v30} / expected: %A{v31}"     │

00:00:13 #137 [Verbose] > │     let v36 : UH0 = UH0_2                                                    │

00:00:13 #138 [Verbose] > │     let v37 : UH0 = UH0_1                                                    │

00:00:13 #139 [Verbose] > │     let v38 : UH0 = UH0_0(v36, v37)                                          │

00:00:13 #140 [Verbose] > │     let v39 : UH0 = UH0_2                                                    │

00:00:13 #141 [Verbose] > │     let v40 : UH0 = UH0_1                                                    │

00:00:13 #142 [Verbose] > │     let v41 : UH0 = UH0_0(v39, v40)                                          │

00:00:13 #143 [Verbose] > │     let v42 : string = $"__expect / actual: %A{v38} / expected: %A{v41}"     │

00:00:13 #144 [Verbose] > │     let v54 : UH0 = UH0_2                                                    │

00:00:13 #145 [Verbose] > │     let v55 : UH0 = UH0_2                                                    │

00:00:13 #146 [Verbose] > │     let v56 : UH0 = UH0_0(v54, v55)                                          │

00:00:13 #147 [Verbose] > │     let v57 : UH0 = UH0_2                                                    │

00:00:13 #148 [Verbose] > │     let v58 : UH0 = UH0_2                                                    │

00:00:13 #149 [Verbose] > │     let v59 : UH0 = UH0_0(v57, v58)                                          │

00:00:13 #150 [Verbose] > │     let v60 : string = $"__expect / actual: %A{v56} / expected: %A{v59}"     │

00:00:13 #151 [Verbose] > │     let v72 : UH0 = UH0_1                                                    │

00:00:13 #152 [Verbose] > │     let v73 : UH0 = UH0_1                                                    │

00:00:13 #153 [Verbose] > │     let v74 : string = $"__expect / actual: %A{v72} / expected: %A{v73}"     │

00:00:13 #154 [Verbose] > │     let v78 : UH0 = UH0_2                                                    │

00:00:13 #155 [Verbose] > │     let v79 : UH0 = UH0_2                                                    │

00:00:13 #156 [Verbose] > │     let v80 : string = $"__expect / actual: %A{v78} / expected: %A{v79}"     │

00:00:13 #157 [Verbose] > │     let v84 : UH0 = UH0_3                                                    │

00:00:13 #158 [Verbose] > │     let v85 : UH0 = UH0_3                                                    │

00:00:13 #159 [Verbose] > │     let v86 : string = $"__expect / actual: %A{v84} / expected: %A{v85}"     │

00:00:13 #160 [Verbose] > │     let v90 : UH0 = UH0_3                                                    │

00:00:13 #161 [Verbose] > │     let v91 : UH0 = UH0_3                                                    │

00:00:13 #162 [Verbose] > │     let v92 : string = $"__expect / actual: %A{v90} / expected: %A{v91}"     │

00:00:13 #163 [Verbose] > │     let v96 : UH0 = UH0_1                                                    │

00:00:13 #164 [Verbose] > │     let v97 : UH0 = UH0_1                                                    │

00:00:13 #165 [Verbose] > │     let v98 : string = $"__expect / actual: %A{v96} / expected: %A{v97}"     │

00:00:13 #166 [Verbose] > │     let v102 : UH0 = UH0_1                                                   │

00:00:13 #167 [Verbose] > │     let v103 : UH0 = UH0_1                                                   │

00:00:13 #168 [Verbose] > │     let v104 : string = $"__expect / actual: %A{v102} / expected: %A{v103}"  │

00:00:13 #169 [Verbose] > │     let v108 : UH0 = UH0_1                                                   │

00:00:13 #170 [Verbose] > │     let v109 : UH0 = UH0_1                                                   │

00:00:13 #171 [Verbose] > │     let v110 : string = $"__expect / actual: %A{v108} / expected: %A{v109}"  │

00:00:13 #172 [Verbose] > │     let v114 : UH0 = UH0_3                                                   │

00:00:13 #173 [Verbose] > │     let v115 : UH0 = UH0_3                                                   │

00:00:13 #174 [Verbose] > │     let v116 : string = $"__expect / actual: %A{v114} / expected: %A{v115}"  │

00:00:13 #175 [Verbose] > │     let v120 : UH0 = UH0_2                                                   │

00:00:13 #176 [Verbose] > │     let v121 : UH0 = UH0_2                                                   │

00:00:13 #177 [Verbose] > │     let v122 : string = $"__expect / actual: %A{v120} / expected: %A{v121}"  │

00:00:13 #178 [Verbose] > │     ()                                                                       │

00:00:13 #179 [Verbose] > │ method0()                                                                    │

00:00:13 #180 [Verbose] > │                                                                              │

00:00:13 #181 [Verbose] > │                                                                              │

00:00:13 #182 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #183 [Verbose] > [NbConvertApp] Converting notebook util.dib.ipynb to html

00:00:16 #184 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:00:16 #185 [Verbose] >   validate(nb)

00:00:17 #186 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:00:17 #187 [Verbose] >   return _pygments_highlight(

00:00:17 #188 [Verbose] > [NbConvertApp] Writing 286590 bytes to util.dib.html

00:00:18 #189 [Debug] executeAsync / exitCode: 0 / output.Length: 9299

00:00:18 #190 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\lib\spiral

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 rust.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:04 #11 [Verbose] >

00:00:04 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:04 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:04 #14 [Verbose] > │ # rust                                                                       │

00:00:04 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:04 #16 [Verbose] >

00:00:04 #17 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:04 #18 [Verbose] > // // test

00:00:04 #19 [Verbose] >

00:00:04 #20 [Verbose] > open testing

00:00:08 #21 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-1649-4977-429dbdc35010\main.spi

00:00:12 #22 [Verbose] >

00:00:12 #23 [Verbose] > ╭─[ 7.43s - stdout ]───────────────────────────────────────────────────────────╮

00:00:12 #24 [Verbose] > │ ()                                                                           │

00:00:12 #25 [Verbose] > │                                                                              │

00:00:12 #26 [Verbose] > │                                                                              │

00:00:12 #27 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #28 [Verbose] >

00:00:12 #29 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #30 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #31 [Verbose] > │ ## emit_expr                                                                 │

00:00:12 #32 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #33 [Verbose] >

00:00:12 #34 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #35 [Verbose] > inl emit_expr forall a t. (args : a) (code : string) : t =

00:00:12 #36 [Verbose] >     real

00:00:12 #37 [Verbose] >         $"Fable.Core.RustInterop.emitRustExpr !args !code" : t

00:00:12 #38 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-2122-2243-20c37c8c49e0\main.spi

00:00:12 #39 [Verbose] >

00:00:12 #40 [Verbose] > ╭─[ 230.93ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #41 [Verbose] > │ ()                                                                           │

00:00:12 #42 [Verbose] > │                                                                              │

00:00:12 #43 [Verbose] > │                                                                              │

00:00:12 #44 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #45 [Verbose] >

00:00:12 #46 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #47 [Verbose] > inl types () =

00:00:12 #48 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"Func0<$0>\")>]] type

00:00:12 #49 [Verbose] > Func0<'T> = class end"

00:00:12 #50 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"Func1<$0, $1>\")>]] type

00:00:12 #51 [Verbose] > Func0<'T, 'U> = class end"

00:00:12 #52 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"Box<$0>\")>]] type Box<'T> =

00:00:12 #53 [Verbose] > class end"

00:00:12 #54 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"dyn $0\")>]] type Dyn<'T> =

00:00:12 #55 [Verbose] > class end"

00:00:12 #56 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"Fn() -> $0\")>]] type Fn<'T>

00:00:12 #57 [Verbose] > = class end"

00:00:12 #58 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"Fn()\")>]] type FnUnit =

00:00:12 #59 [Verbose] > class end"

00:00:12 #60 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"FnOnce() -> $0\")>]] type

00:00:12 #61 [Verbose] > FnOnce<'T> = class end"

00:00:12 #62 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"Fn($0, $1)\")>]] type

00:00:12 #63 [Verbose] > ActionFn2<'T, 'U> = class end"

00:00:12 #64 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"impl $0\")>]] type Impl<'T> =

00:00:12 #65 [Verbose] > class end"

00:00:12 #66 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"mut $0\")>]] type Mut<'T> =

00:00:12 #67 [Verbose] > class end"

00:00:12 #68 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"&$0\")>]] type Ref<'T> =

00:00:12 #69 [Verbose] > class end"

00:00:12 #70 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"[[$0]]\")>]] type Slice<'T> =

00:00:12 #71 [Verbose] > class end"

00:00:12 #72 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"[[$0; $1]]\")>]] type

00:00:12 #73 [Verbose] > Slice'<'T, 'U> = class end"

00:00:12 #74 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"&'static $0\")>]] type

00:00:12 #75 [Verbose] > StaticRef<'T> = class end"

00:00:12 #76 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"str\")>]] type Str = class

00:00:12 #77 [Verbose] > end"

00:00:12 #78 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"Vec<$0>\")>]] type Vec<'T> =

00:00:12 #79 [Verbose] > class end"

00:00:12 #80 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"base64::DecodeError\")>]]

00:00:12 #81 [Verbose] > type base64_DecodeError = class end"

00:00:12 #82 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"borsh::io::Error\")>]] type

00:00:12 #83 [Verbose] > borsh_io_Error = class end"

00:00:12 #84 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"chrono::DateTime<$0>\")>]]

00:00:12 #85 [Verbose] > type chrono_DateTime<'T> = class end"

00:00:12 #86 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"chrono::Local\")>]] type

00:00:12 #87 [Verbose] > chrono_Local = class end"

00:00:12 #88 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"chrono::NaiveDateTime\")>]]

00:00:12 #89 [Verbose] > type chrono_NaiveDateTime = class end"

00:00:12 #90 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"chrono::Utc\")>]] type

00:00:12 #91 [Verbose] > chrono_Utc = class end"

00:00:12 #92 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"js_sys::Function\")>]] type

00:00:12 #93 [Verbose] > js_sys_Function = class end"

00:00:12 #94 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"js_sys::JsString\")>]] type

00:00:12 #95 [Verbose] > js_sys_JsString = class end"

00:00:12 #96 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"reqwest_wasm::Response\")>]]

00:00:12 #97 [Verbose] > type reqwest_Response = class end"

00:00:12 #98 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"reqwest_wasm::Error\")>]]

00:00:12 #99 [Verbose] > type reqwest_Error = class end"

00:00:12 #100 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"rexie::Error\")>]] type

00:00:12 #101 [Verbose] > rexie_Error = class end"

00:00:12 #102 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"rexie::Rexie\")>]] type

00:00:12 #103 [Verbose] > rexie_Rexie = class end"

00:00:12 #104 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"rexie::Store\")>]] type

00:00:12 #105 [Verbose] > rexie_Store = class end"

00:00:12 #106 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"rexie::Transaction\")>]] type

00:00:12 #107 [Verbose] > rexie_Transaction = class end"

00:00:12 #108 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"serde_json::Error\")>]] type

00:00:12 #109 [Verbose] > serde_json_Error = class end"

00:00:12 #110 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"serde_json::Value\")>]] type

00:00:12 #111 [Verbose] > serde_json_Value = class end"

00:00:12 #112 [Verbose] >     global "[[<Fable.Core.Erase;

00:00:12 #113 [Verbose] > Fable.Core.Emit(\"serde_wasm_bindgen::Error\")>]] type serde_wasm_bindgen_Error

00:00:12 #114 [Verbose] > = class end"

00:00:12 #115 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"std::any::Any\")>]] type

00:00:12 #116 [Verbose] > std_any_Any = class end"

00:00:12 #117 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"std::cell::RefCell<$0>\")>]]

00:00:12 #118 [Verbose] > type std_cell_RefCell<'T> = class end"

00:00:12 #119 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"std::collections::HashMap<$0,

00:00:12 #120 [Verbose] > $1>\")>]] type std_collections_HashMap<'K, 'V> = class end"

00:00:12 #121 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"std::future::Future<Output =

00:00:12 #122 [Verbose] > $0>\")>]] type Future<'T> = class end"

00:00:12 #123 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"std::pin::Pin<$0>\")>]] type

00:00:12 #124 [Verbose] > std_pin_Pin<'T> = class end"

00:00:12 #125 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"std::rc::Rc<$0>\")>]] type

00:00:12 #126 [Verbose] > std_rc_Rc<'T> = class end"

00:00:12 #127 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"std::rc::Weak<$0>\")>]] type

00:00:12 #128 [Verbose] > std_rc_Weak<'T> = class end"

00:00:12 #129 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"std::str::Utf8Error\")>]]

00:00:12 #130 [Verbose] > type std_str_Utf8Error = class end"

00:00:12 #131 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"std::string::String\")>]]

00:00:12 #132 [Verbose] > type std_string_String = class end"

00:00:12 #133 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"std::sync::Arc<$0>\")>]] type

00:00:12 #134 [Verbose] > std_sync_Arc<'T> = class end"

00:00:12 #135 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"wasm_bindgen::JsValue\")>]]

00:00:12 #136 [Verbose] > type wasm_bindgen_JsValue = class end"

00:00:12 #137 [Verbose] >     global "[[<Fable.Core.Erase;

00:00:12 #138 [Verbose] > Fable.Core.Emit(\"wasm_bindgen::closure::Closure<$0>\")>]] type

00:00:12 #139 [Verbose] > wasm_bindgen_closure_Closure<'T> = class end"

00:00:12 #140 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"web_sys::Document\")>]] type

00:00:12 #141 [Verbose] > web_sys_Document = class end"

00:00:12 #142 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"web_sys::HtmlElement\")>]]

00:00:12 #143 [Verbose] > type web_sys_HtmlElement = class end"

00:00:12 #144 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"web_sys::Storage\")>]] type

00:00:12 #145 [Verbose] > web_sys_Storage = class end"

00:00:12 #146 [Verbose] >     global "[[<Fable.Core.Erase; Fable.Core.Emit(\"web_sys::Window\")>]] type

00:00:12 #147 [Verbose] > web_sys_Window = class end"

00:00:12 #148 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-2145-4594-46d73bd19632\main.spi

00:00:12 #149 [Verbose] >

00:00:12 #150 [Verbose] > ╭─[ 221.81ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #151 [Verbose] > │ ()                                                                           │

00:00:12 #152 [Verbose] > │                                                                              │

00:00:12 #153 [Verbose] > │                                                                              │

00:00:12 #154 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #155 [Verbose] >

00:00:12 #156 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #157 [Verbose] > nominal any = $"std_any_Any"

00:00:12 #158 [Verbose] > nominal ref_cell t = $"std_cell_RefCell<`t>"

00:00:12 #159 [Verbose] > nominal async t = $"Async<`t>"

00:00:12 #160 [Verbose] > nominal base64_decode_error = $"base64_DecodeError"

00:00:12 #161 [Verbose] > nominal borsh_io_error = $"borsh_io_Error"

00:00:12 #162 [Verbose] > nominal utf8_error = $"std_str_Utf8Error"

00:00:12 #163 [Verbose] > nominal rexie = $"rexie_Rexie"

00:00:12 #164 [Verbose] > nominal rexie_store = $"rexie_Store"

00:00:12 #165 [Verbose] > nominal rexie_transaction = $"rexie_Transaction"

00:00:12 #166 [Verbose] > nominal rexie_error = $"rexie_Error"

00:00:12 #167 [Verbose] > nominal json_value = $"serde_json_Value"

00:00:12 #168 [Verbose] > nominal json_error = $"serde_json_Error"

00:00:12 #169 [Verbose] > nominal serde_wasm_bindgen_error = $"serde_wasm_bindgen_Error"

00:00:12 #170 [Verbose] > nominal js_value = $"wasm_bindgen_JsValue"

00:00:12 #171 [Verbose] > nominal closure t = $"wasm_bindgen_closure_Closure<`t>"

00:00:12 #172 [Verbose] > nominal hash_map k v = $"std_collections_HashMap<`k, `v>"

00:00:12 #173 [Verbose] > nominal rc t = $"std_rc_Rc<`t>"

00:00:12 #174 [Verbose] > nominal weak_rc t = $"std_rc_Weak<`t>"

00:00:12 #175 [Verbose] > nominal box t = $"Box<`t>"

00:00:12 #176 [Verbose] > nominal pin t = $"std_pin_Pin<`t>"

00:00:12 #177 [Verbose] > nominal arc t = $"std_sync_Arc<`t>"

00:00:12 #178 [Verbose] > nominal std_string = $"std_string_String"

00:00:12 #179 [Verbose] > nominal js_function = $"js_sys_Function"

00:00:12 #180 [Verbose] > nominal js_string = $"js_sys_JsString"

00:00:12 #181 [Verbose] > nominal window = $"web_sys_Window"

00:00:12 #182 [Verbose] > nominal document = $"web_sys_Document"

00:00:12 #183 [Verbose] > nominal html_element = $"web_sys_HtmlElement"

00:00:12 #184 [Verbose] > nominal storage = $"web_sys_Storage"

00:00:12 #185 [Verbose] > nominal dyn' t = $"Dyn<`t>"

00:00:12 #186 [Verbose] > nominal fn' t = $"Fn<`t>"

00:00:12 #187 [Verbose] > nominal action_fn2 t u = $"ActionFn2<`t, `u>"

00:00:12 #188 [Verbose] > nominal fn_once t = $"FnOnce<`t>"

00:00:12 #189 [Verbose] > nominal fn_unit = $"FnUnit"

00:00:12 #190 [Verbose] > nominal func0 t = $"Func0<`t>"

00:00:12 #191 [Verbose] > nominal func1 t u = $"Func0<`t, `u>"

00:00:12 #192 [Verbose] > nominal impl t = $"Impl<`t>"

00:00:12 #193 [Verbose] > nominal mut' t = $"Mut<`t>"

00:00:12 #194 [Verbose] > nominal ref' t = $"Ref<`t>"

00:00:12 #195 [Verbose] > nominal slice t = $"Slice<`t>"

00:00:12 #196 [Verbose] > nominal slice' t u = $"Slice'<`t, `u>"

00:00:12 #197 [Verbose] > nominal static_ref' t = $"StaticRef<`t>"

00:00:12 #198 [Verbose] > nominal str = $"Str"

00:00:12 #199 [Verbose] > nominal vec t = $"Vec<`t>"

00:00:12 #200 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-2167-6706-667f9b6fc191\main.spi

00:00:13 #201 [Verbose] >

00:00:13 #202 [Verbose] > ╭─[ 249.43ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #203 [Verbose] > │ ()                                                                           │

00:00:13 #204 [Verbose] > │                                                                              │

00:00:13 #205 [Verbose] > │                                                                              │

00:00:13 #206 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #207 [Verbose] >

00:00:13 #208 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:13 #209 [Verbose] > inl (~!\) forall t. (code : string) : t =

00:00:13 #210 [Verbose] >     emit_expr () code

00:00:13 #211 [Verbose] >

00:00:13 #212 [Verbose] > inl (~!\\) forall t u. ((args : t), (code : string)) : u =

00:00:13 #213 [Verbose] >     emit_expr args code

00:00:13 #214 [Verbose] >

00:00:13 #215 [Verbose] > inl raw_string_literal (s : string) : ref' str =

00:00:13 #216 [Verbose] >     !\($"\"r#\\\"\" + !s + \"\\\"#\"")

00:00:13 #217 [Verbose] >

00:00:13 #218 [Verbose] > inl raw_string_literal_static (s : string) : static_ref' str =

00:00:13 #219 [Verbose] >     !\($"\"r#\\\"\" + !s + \"\\\"#\"")

00:00:13 #220 [Verbose] >

00:00:13 #221 [Verbose] > inl (~#) (s : string) : ref' str =

00:00:13 #222 [Verbose] >     raw_string_literal s

00:00:13 #223 [Verbose] >

00:00:13 #224 [Verbose] > inl (~##) (s : string) : static_ref' str =

00:00:13 #225 [Verbose] >     raw_string_literal_static s

00:00:13 #226 [Verbose] >

00:00:13 #227 [Verbose] > inl new_box forall t. (x : t) : box t =

00:00:13 #228 [Verbose] >     inl x = join x

00:00:13 #229 [Verbose] >     !\($'"Box::new(!x)"')

00:00:13 #230 [Verbose] >

00:00:13 #231 [Verbose] > inl new_rc forall t. (x : t) : rc t =

00:00:13 #232 [Verbose] >     inl x = join x

00:00:13 #233 [Verbose] >     !\($'"std::rc::Rc::new(!x)"')

00:00:13 #234 [Verbose] >

00:00:13 #235 [Verbose] > inl rc_clone forall t. (x : rc t) : rc t =

00:00:13 #236 [Verbose] >     inl x = join x

00:00:13 #237 [Verbose] >     !\($'"std::rc::Rc::clone(&!x)"')

00:00:13 #238 [Verbose] >

00:00:13 #239 [Verbose] > inl rc_downgrade forall t. (x : rc t) : weak_rc t =

00:00:13 #240 [Verbose] >     inl x = join x

00:00:13 #241 [Verbose] >     !\($'"std::rc::Rc::downgrade(&!x)"')

00:00:13 #242 [Verbose] >

00:00:13 #243 [Verbose] > inl new_ref_cell forall t. (x : t) : ref_cell t =

00:00:13 #244 [Verbose] >     inl x = join x

00:00:13 #245 [Verbose] >     !\($'"std::cell::RefCell::new(!x)"')

00:00:13 #246 [Verbose] >

00:00:13 #247 [Verbose] > inl ref_cell_borrow forall t. (x : rc (ref_cell t)) : t =

00:00:13 #248 [Verbose] >     inl x = join x

00:00:13 #249 [Verbose] >     !\($'"*std::cell::RefCell::borrow(&std::rc::Rc::clone(&!x))"')

00:00:13 #250 [Verbose] >

00:00:13 #251 [Verbose] > inl ref_cell_borrow_mut forall t. (x : rc (ref_cell t)) : mut' t =

00:00:13 #252 [Verbose] >     inl x = join x

00:00:13 #253 [Verbose] >     !\($'"*std::cell::RefCell::borrow_mut(&std::rc::Rc::clone(&!x))"')

00:00:13 #254 [Verbose] >

00:00:13 #255 [Verbose] > inl to_mut forall t. (x : t) : mut' t =

00:00:13 #256 [Verbose] >     emit_expr () $"\"let mut !x = !x\""

00:00:13 #257 [Verbose] >     emit_expr () $"\"!x\""

00:00:13 #258 [Verbose] >

00:00:13 #259 [Verbose] > inl new_arc forall t. (x : t) : arc t =

00:00:13 #260 [Verbose] >     inl x = join x

00:00:13 #261 [Verbose] >     !\($'"std::sync::Arc::new(!x)"')

00:00:13 #262 [Verbose] >

00:00:13 #263 [Verbose] > inl closure_wrap forall t. (x : box t) : closure t =

00:00:13 #264 [Verbose] >     inl x = join x

00:00:13 #265 [Verbose] >     !\($'"wasm_bindgen::closure::Closure::wrap(!x)"')

00:00:13 #266 [Verbose] >

00:00:13 #267 [Verbose] > inl box_fn forall t. (x : () -> ()) : box t =

00:00:13 #268 [Verbose] >     inl x = join x

00:00:13 #269 [Verbose] >     !\($'"Box::new(move || !x())"')

00:00:13 #270 [Verbose] >

00:00:13 #271 [Verbose] > inl closure_forget forall t. (closure : closure t) =

00:00:13 #272 [Verbose] >     !\($'"!closure.forget()"') : ()

00:00:13 #273 [Verbose] >

00:00:13 #274 [Verbose] > inl new_pin forall t. (x : t) : pin (box t) =

00:00:13 #275 [Verbose] >     inl x = join x

00:00:13 #276 [Verbose] >     !\($'"Box::pin(!x)"')

00:00:13 #277 [Verbose] >

00:00:13 #278 [Verbose] > inl closure_as_ref forall t. (closure : closure t) : ref' js_value =

00:00:13 #279 [Verbose] >     !\($'"wasm_bindgen::closure::Closure::as_ref(&!closure)"')

00:00:13 #280 [Verbose] >

00:00:13 #281 [Verbose] > inl unchecked_ref (ref : ref' js_value) : ref' js_function =

00:00:13 #282 [Verbose] >     !\($'"wasm_bindgen::JsCast::unchecked_ref(!ref)"')

00:00:13 #283 [Verbose] >

00:00:13 #284 [Verbose] > inl deref forall t. (ref : ref' t) : t =

00:00:13 #285 [Verbose] >     inl ref = join ref

00:00:13 #286 [Verbose] >     !\($'"*!ref"')

00:00:13 #287 [Verbose] >

00:00:13 #288 [Verbose] > inl func0_get forall t. (x : func0 t) : t =

00:00:13 #289 [Verbose] >     inl x = join x

00:00:13 #290 [Verbose] >     !\($'"!x()"')

00:00:13 #291 [Verbose] >

00:00:13 #292 [Verbose] > inl move forall t. (fn : () -> t) : func0 t =

00:00:13 #293 [Verbose] >     inl fn = join fn

00:00:13 #294 [Verbose] >     !\($'"Func0::new(move || !fn())"')

00:00:13 #295 [Verbose] >

00:00:13 #296 [Verbose] > inl to_static_ref_unbox forall t. (x : ref' t) : static_ref' t =

00:00:13 #297 [Verbose] >     $"!x |> unbox"

00:00:13 #298 [Verbose] >

00:00:13 #299 [Verbose] > inl box_leak forall t. (x : box t) : static_ref' (mut' t) =

00:00:13 #300 [Verbose] >     emit_expr () $"\"Box::leak(!x)\""

00:00:13 #301 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-2192-9234-926001878b3c\main.spi

00:00:13 #302 [Verbose] >

00:00:13 #303 [Verbose] > ╭─[ 253.92ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #304 [Verbose] > │ ()                                                                           │

00:00:13 #305 [Verbose] > │                                                                              │

00:00:13 #306 [Verbose] > │                                                                              │

00:00:13 #307 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #308 [Verbose] > [NbConvertApp] Converting notebook rust.dib.ipynb to html

00:00:15 #309 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:00:15 #310 [Verbose] >   validate(nb)

00:00:16 #311 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:00:16 #312 [Verbose] >   return _pygments_highlight(

00:00:17 #313 [Verbose] > [NbConvertApp] Writing 312050 bytes to rust.dib.html

00:00:18 #314 [Debug] executeAsync / exitCode: 0 / output.Length: 13464

00:00:18 #315 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\lib\spiral

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 physics.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:04 #11 [Verbose] >

00:00:05 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:05 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:05 #14 [Verbose] > │ # physics                                                                    │

00:00:05 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:05 #16 [Verbose] >

00:00:05 #17 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:05 #18 [Verbose] > #!import ../../lib/fsharp/Plotting.dib

00:00:05 #19 [Verbose] >

00:00:05 #20 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:05 #21 [Verbose] > #r

00:00:05 #22 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

00:00:05 #23 [Verbose] > spNetCore.Html.Abstractions.dll"

00:00:05 #24 [Verbose] > #r

00:00:05 #25 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

00:00:05 #26 [Verbose] > otNet.Interactive.dll"

00:00:05 #27 [Verbose] > #r

00:00:05 #28 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

00:00:05 #29 [Verbose] > otNet.Interactive.FSharp.dll"

00:00:05 #30 [Verbose] > #r

00:00:05 #31 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

00:00:05 #32 [Verbose] > otNet.Interactive.Formatting.dll"

00:00:05 #33 [Verbose] > open System

00:00:05 #34 [Verbose] > open System.IO

00:00:05 #35 [Verbose] > open System.Text

00:00:05 #36 [Verbose] > open Microsoft.DotNet.Interactive.Formatting

00:00:09 #37 [Verbose] >

00:00:09 #38 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:09 #39 [Verbose] > #r

00:00:09 #40 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

00:00:09 #41 [Verbose] > otNet.Interactive.FSharp.dll"

00:00:09 #42 [Verbose] > open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

00:00:09 #43 [Verbose] > #r

00:00:09 #44 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

00:00:09 #45 [Verbose] > otNet.Interactive.dll"

00:00:09 #46 [Verbose] > open type Microsoft.DotNet.Interactive.Kernel

00:00:09 #47 [Verbose] >

00:00:09 #48 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:09 #49 [Verbose] > //// test

00:00:09 #50 [Verbose] >

00:00:09 #51 [Verbose] > Formatter.ListExpansionLimit <- 100

00:00:09 #52 [Verbose] >

00:00:09 #53 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:09 #54 [Verbose] > #r

00:00:09 #55 [Verbose] > @"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

00:00:09 #56 [Verbose] > dard2.1/FSharp.Control.AsyncSeq.dll"

00:00:09 #57 [Verbose] > #r

00:00:09 #58 [Verbose] > @"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

00:00:09 #59 [Verbose] > 0/System.Reactive.dll"

00:00:09 #60 [Verbose] > #r

00:00:09 #61 [Verbose] > @"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib

00:00:09 #62 [Verbose] > netstandard2.0/System.Reactive.Linq.dll"

00:00:09 #63 [Verbose] > #r

00:00:09 #64 [Verbose] > @"../../../../../../../.nuget/packages/argu/6.1.5/lib/netstandard2.0/Argu.dll"

00:00:09 #65 [Verbose] > #r

00:00:09 #66 [Verbose] > @"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

00:00:09 #67 [Verbose] > b/net6.0/System.CommandLine.dll"

00:00:09 #68 [Verbose] > #r

00:00:09 #69 [Verbose] > @"../../../../../../../.nuget/packages/fsharp.json/0.4.1/lib/netstandard2.0/FSha

00:00:09 #70 [Verbose] > rp.Json.dll"

00:00:10 #71 [Verbose] >

00:00:10 #72 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:10 #73 [Verbose] > #if !INTERACTIVE

00:00:10 #74 [Verbose] > namespace Polyglot

00:00:10 #75 [Verbose] > #endif

00:00:10 #76 [Verbose] >

00:00:10 #77 [Verbose] > module Common =

00:00:10 #78 [Verbose] >

00:00:10 #79 [Verbose] >     let nl = System.Environment.NewLine

00:00:10 #80 [Verbose] >     let q = @""""

00:00:10 #81 [Verbose] >

00:00:10 #82 [Verbose] >     let inline cons head tail = head :: tail

00:00:10 #83 [Verbose] >

00:00:10 #84 [Verbose] >     module String =

00:00:10 #85 [Verbose] >         let inline contains (value : string) (input : string) =

00:00:10 #86 [Verbose] >             input.Contains value

00:00:10 #87 [Verbose] >

00:00:10 #88 [Verbose] >         let inline endsWith (value : string) (input : string) =

00:00:10 #89 [Verbose] >             input.EndsWith value

00:00:10 #90 [Verbose] >

00:00:10 #91 [Verbose] >         let inline padLeft totalWidth paddingChar (input : string) =

00:00:10 #92 [Verbose] >             input.PadLeft (totalWidth, paddingChar)

00:00:10 #93 [Verbose] >

00:00:10 #94 [Verbose] >         let inline replace (oldValue : string) (newValue : string) (input :

00:00:10 #95 [Verbose] > string) =

00:00:10 #96 [Verbose] >             input.Replace (oldValue, newValue)

00:00:10 #97 [Verbose] >

00:00:10 #98 [Verbose] >         let inline split separator (input : string) =

00:00:10 #99 [Verbose] >             input.Split separator

00:00:10 #100 [Verbose] >

00:00:10 #101 [Verbose] >         let inline spli...

00:00:11 #102 [Verbose] >

00:00:11 #103 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:11 #104 [Verbose] > #if !INTERACTIVE

00:00:11 #105 [Verbose] > namespace Polyglot

00:00:11 #106 [Verbose] > #endif

00:00:11 #107 [Verbose] >

00:00:11 #108 [Verbose] > module CommonFSharp =

00:00:11 #109 [Verbose] >

00:00:11 #110 [Verbose] >     open Common

00:00:11 #111 [Verbose] >

00:00:11 #112 [Verbose] >     /// ## getUnionCaseName

00:00:11 #113 [Verbose] >

00:00:11 #114 [Verbose] >     let inline getUnionCaseName<'T> (x: 'T) =

00:00:11 #115 [Verbose] >         match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

00:00:11 #116 [Verbose] >         | case, _ -> case.Name

00:00:11 #117 [Verbose] >

00:00:11 #118 [Verbose] >

00:00:11 #119 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:11 #120 [Verbose] > #if !INTERACTIVE

00:00:11 #121 [Verbose] > namespace Polyglot

00:00:11 #122 [Verbose] > #endif

00:00:11 #123 [Verbose] >

00:00:11 #124 [Verbose] > module Crypto =

00:00:11 #125 [Verbose] >

00:00:11 #126 [Verbose] >     open Common

00:00:11 #127 [Verbose] >

00:00:11 #128 [Verbose] >     /// ## hashText

00:00:11 #129 [Verbose] >

00:00:11 #130 [Verbose] >     let hashText (input : string) =

00:00:11 #131 [Verbose] >         use sha256 = System.Security.Cryptography.SHA256.Create ()

00:00:11 #132 [Verbose] >         input

00:00:11 #133 [Verbose] >         |> System.Text.Encoding.UTF8.GetBytes

00:00:11 #134 [Verbose] >         |> sha256.ComputeHash

00:00:11 #135 [Verbose] >         |> Array.map (fun b -> b.ToString "x2")

00:00:11 #136 [Verbose] >         |> String.concat ""

00:00:11 #137 [Verbose] >

00:00:11 #138 [Verbose] >

00:00:11 #139 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:11 #140 [Verbose] > #if !INTERACTIVE

00:00:11 #141 [Verbose] > namespace Polyglot

00:00:11 #142 [Verbose] > #endif

00:00:11 #143 [Verbose] >

00:00:11 #144 [Verbose] > module Async =

00:00:11 #145 [Verbose] >

00:00:11 #146 [Verbose] >     open Common

00:00:11 #147 [Verbose] >

00:00:11 #148 [Verbose] >     /// ## choice

00:00:11 #149 [Verbose] >

00:00:11 #150 [Verbose] >     let inline choice asyncs = async {

00:00:11 #151 [Verbose] >         let e = Event<_> ()

00:00:11 #152 [Verbose] >         use cts = new System.Threading.CancellationTokenSource ()

00:00:11 #153 [Verbose] >         let fn =

00:00:11 #154 [Verbose] >             asyncs

00:00:11 #155 [Verbose] >             |> Seq.map (fun a -> async {

00:00:11 #156 [Verbose] >                 let! x = a

00:00:11 #157 [Verbose] >                 e.Trigger x

00:00:11 #158 [Verbose] >             })

00:00:11 #159 [Verbose] >             |> Async.Parallel

00:00:11 #160 [Verbose] >             |> Async.Ignore

00:00:11 #161 [Verbose] >         Async.Start (fn, cts.Token)

00:00:11 #162 [Verbose] >         let! result = Async.AwaitEvent e.Publish

00:00:11 #163 [Verbose] >         cts.Cancel ()

00:00:11 #164 [Verbose] >         return result

00:00:11 #165 [Verbose] >     }

00:00:11 #166 [Verbose] >

00:00:11 #167 [Verbose] >     /// ## map

00:00:11 #168 [Verbose] >

00:00:11 #169 [Verbose] >     let inline map fn a = async {

00:00:11 #170 [Verbose] >         let! x = a

00:00:11 #171 [Verbose] >         return fn x

00:00:11 #172 [Verbose] >     }

00:00:11 #173 [Verbose] >

00:00:11 #174 [Verbose] >     /// ## catch

00:00:11 #175 [Verbose] >

00:00:11 #176 [Verbose] >     let inline catch a =

00:00:11 #177 [Verbose] >         a

00:00:11 #178 [Verbose] >         |> Async.Catch

00:00:11 #179 [Verbose] >         ...

00:00:12 #180 [Verbose] >

00:00:12 #181 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:12 #182 [Verbose] > #if !INTERACTIVE

00:00:12 #183 [Verbose] > namespace Polyglot

00:00:12 #184 [Verbose] > #endif

00:00:12 #185 [Verbose] >

00:00:12 #186 [Verbose] > module AsyncSeq =

00:00:12 #187 [Verbose] >

00:00:12 #188 [Verbose] >     open Common

00:00:12 #189 [Verbose] >

00:00:12 #190 [Verbose] >     /// ## subscribeEvent

00:00:12 #191 [Verbose] >

00:00:12 #192 [Verbose] >     let inline subscribeEvent (event: IEvent<'H, 'A>) map =

00:00:12 #193 [Verbose] >         let observable = System.Reactive.Linq.Observable.FromEventPattern<'H,

00:00:12 #194 [Verbose] > 'A>(event.AddHandler, event.RemoveHandler)

00:00:12 #195 [Verbose] >         System.Reactive.Linq.Observable.Select (observable, fun event -> map

00:00:12 #196 [Verbose] > event.EventArgs)

00:00:12 #197 [Verbose] >         |> FSharp.Control.AsyncSeq.ofObservableBuffered

00:00:12 #198 [Verbose] >

00:00:12 #199 [Verbose] >     let subscribeToken (token : System.Threading.CancellationToken) =

00:00:12 #200 [Verbose] >         let tcs = new System.Threading.Tasks.TaskCompletionSource ()

00:00:12 #201 [Verbose] >         System.Action tcs.SetResult |> token.Register |> ignore

00:00:12 #202 [Verbose] >         let start = System.DateTime.Now.Ticks

00:00:12 #203 [Verbose] >         FSharp.Control.AsyncSeq.unfoldAsync

00:00:12 #204 [Verbose] >             (fun (...

00:00:12 #205 [Verbose] >

00:00:12 #206 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:12 #207 [Verbose] > #if !INTERACTIVE

00:00:12 #208 [Verbose] > namespace Polyglot

00:00:12 #209 [Verbose] > #endif

00:00:12 #210 [Verbose] >

00:00:12 #211 [Verbose] > module Networking =

00:00:12 #212 [Verbose] >

00:00:12 #213 [Verbose] >     open Common

00:00:12 #214 [Verbose] >

00:00:12 #215 [Verbose] >     /// ## testPortOpen

00:00:12 #216 [Verbose] >

00:00:12 #217 [Verbose] >     let inline testPortOpen port = async {

00:00:12 #218 [Verbose] >         let! ct = Async.CancellationToken

00:00:12 #219 [Verbose] >         use client = new System.Net.Sockets.TcpClient ()

00:00:12 #220 [Verbose] >         try

00:00:12 #221 [Verbose] >             do! client.ConnectAsync ("127.0.0.1", port, ct) |>

00:00:12 #222 [Verbose] > Async.awaitValueTaskUnit

00:00:12 #223 [Verbose] >             return true

00:00:12 #224 [Verbose] >         with ex ->

00:00:12 #225 [Verbose] >             trace Verbose (fun () -> $"testPortOpen / ex: {ex |>

00:00:12 #226 [Verbose] > printException}") getLocals

00:00:12 #227 [Verbose] >             return false

00:00:12 #228 [Verbose] >     }

00:00:12 #229 [Verbose] >

00:00:12 #230 [Verbose] >     let inline testPortOpenTimeout timeout port = async {

00:00:12 #231 [Verbose] >         let! result =

00:00:12 #232 [Verbose] >             testPortOpen port

00:00:12 #233 [Verbose] >             |> Async.runWithTimeoutAsync timeout

00:00:12 #234 [Verbose] >         return

00:00:12 #235 [Verbose] >             match result with

00:00:12 #236 [Verbose] >             | None -> false

00:00:12 #237 [Verbose] >  ...

00:00:12 #238 [Verbose] >

00:00:12 #239 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:12 #240 [Verbose] > #if !INTERACTIVE

00:00:12 #241 [Verbose] > namespace Polyglot

00:00:12 #242 [Verbose] > #endif

00:00:12 #243 [Verbose] >

00:00:12 #244 [Verbose] > module Runtime =

00:00:12 #245 [Verbose] >

00:00:12 #246 [Verbose] >     open Common

00:00:12 #247 [Verbose] >

00:00:12 #248 [Verbose] >     /// ## isWindows

00:00:12 #249 [Verbose] >

00:00:12 #250 [Verbose] >     let isWindows =

00:00:12 #251 [Verbose] >         fun () ->

00:00:12 #252 [Verbose] >             System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

00:00:12 #253 [Verbose] >                 System.Runtime.InteropServices.OSPlatform.Windows

00:00:12 #254 [Verbose] >         |> memoize

00:00:12 #255 [Verbose] >

00:00:12 #256 [Verbose] >     /// ## getExecutableSuffix

00:00:12 #257 [Verbose] >

00:00:12 #258 [Verbose] >     let inline getExecutableSuffix () =

00:00:12 #259 [Verbose] >         if isWindows ()

00:00:12 #260 [Verbose] >         then ".exe"

00:00:12 #261 [Verbose] >         else ""

00:00:12 #262 [Verbose] >

00:00:12 #263 [Verbose] >     /// ## splitCommand

00:00:12 #264 [Verbose] >

00:00:12 #265 [Verbose] >     type private CommandParseStep =

00:00:12 #266 [Verbose] >         | Start

00:00:12 #267 [Verbose] >         | Path of quoted: bool

00:00:12 #268 [Verbose] >         | Arguments

00:00:12 #269 [Verbose] >

00:00:12 #270 [Verbose] >     let splitCommand (command: string) =

00:00:12 #271 [Verbose] >         let rec loop (path, args) chars step =

00:00:12 #272 [Verbose] >             match chars, step with

00:00:12 #273 [Verbose] >             | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...

00:00:13 #274 [Verbose] >

00:00:13 #275 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:13 #276 [Verbose] > #if !INTERACTIVE

00:00:13 #277 [Verbose] > namespace Polyglot

00:00:13 #278 [Verbose] > #endif

00:00:13 #279 [Verbose] >

00:00:13 #280 [Verbose] > module FileSystem =

00:00:13 #281 [Verbose] >

00:00:13 #282 [Verbose] >     open Common

00:00:13 #283 [Verbose] >

00:00:13 #284 [Verbose] >     /// ## Operators

00:00:13 #285 [Verbose] >

00:00:13 #286 [Verbose] >     module Operators =

00:00:13 #287 [Verbose] >         let inline (</>) a b =

00:00:13 #288 [Verbose] >             System.IO.Path.Combine (a, b)

00:00:13 #289 [Verbose] >

00:00:13 #290 [Verbose] >     open Operators

00:00:13 #291 [Verbose] >

00:00:13 #292 [Verbose] >     /// ## createTempDirectoryName

00:00:13 #293 [Verbose] >

00:00:13 #294 [Verbose] >     let inline createTempDirectoryName () =

00:00:13 #295 [Verbose] >         let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name

00:00:13 #296 [Verbose] >

00:00:13 #297 [Verbose] >         System.IO.Path.GetTempPath ()

00:00:13 #298 [Verbose] >         </> $"!{root}"

00:00:13 #299 [Verbose] >         </> string (newGuidFromDateTime System.DateTime.Now)

00:00:13 #300 [Verbose] >

00:00:13 #301 [Verbose] >     /// ## createTempDirectory

00:00:13 #302 [Verbose] >

00:00:13 #303 [Verbose] >     let inline createTempDirectory () =

00:00:13 #304 [Verbose] >         let tempFolder = createTempDirectoryName ()

00:00:13 #305 [Verbose] >         let result = System.IO.Directory.CreateDirectory tempFolder

00:00:13 #306 [Verbose] >

00:00:13 #307 [Verbose] >         if not result.Exists then

00:00:13 #308 [Verbose] >             let ge...

00:00:16 #309 [Verbose] >

00:00:16 #310 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:16 #311 [Verbose] > open Common

00:00:16 #312 [Verbose] > open FileSystem.Operators

00:00:16 #313 [Verbose] >

00:00:16 #314 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:16 #315 [Verbose] > let tmpSpiralPath = Path.GetTempPath () </> "!dotnet-interactive-spiral"

00:00:16 #316 [Verbose] > let linePlotsDataPath = tmpSpiralPath </> "line-plots-data"

00:00:16 #317 [Verbose] > let linePlotsSvgPath = tmpSpiralPath </> "line-plots-svg"

00:00:16 #318 [Verbose] >

00:00:16 #319 [Verbose] > [[ tmpSpiralPath; linePlotsDataPath; linePlotsSvgPath ]]

00:00:16 #320 [Verbose] > |> List.iter (fun dir -> if Directory.Exists dir |> not then

00:00:16 #321 [Verbose] > Directory.CreateDirectory dir |> ignore)

00:00:16 #322 [Verbose] >

00:00:16 #323 [Verbose] > Formatter.Register<struct (string * string * string * struct (string * float

00:00:16 #324 [Verbose] > array * float array) array)> (

00:00:16 #325 [Verbose] >     (fun struct (caption, x_desc, y_desc, ys) ->

00:00:16 #326 [Verbose] >         let json = (caption, x_desc, y_desc, ys) |> FSharp.Json.Json.serialize

00:00:16 #327 [Verbose] >         async {

00:00:16 #328 [Verbose] >             let hashHex = json |> Crypto.hashText

00:00:16 #329 [Verbose] >             let svgPath = linePlotsSvgPath </> $"{hashHex}.svg"

00:00:16 #330 [Verbose] >

00:00:16 #331 [Verbose] >             if System.IO.File.Exi...

00:00:17 #332 [Verbose] >

00:00:17 #333 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #334 [Verbose] > // // test

00:00:17 #335 [Verbose] >

00:00:17 #336 [Verbose] > open testing

00:00:18 #337 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-4560-6076-608eda0ed187\main.spi

00:00:20 #338 [Verbose] >

00:00:20 #339 [Verbose] > ╭─[ 3.32s - stdout ]───────────────────────────────────────────────────────────╮

00:00:20 #340 [Verbose] > │ ()                                                                           │

00:00:20 #341 [Verbose] > │                                                                              │

00:00:20 #342 [Verbose] > │                                                                              │

00:00:20 #343 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #344 [Verbose] >

00:00:20 #345 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #346 [Verbose] > inl (/@) x = listm'.(/@) x

00:00:20 #347 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-4837-3709-3a41d3b52789\main.spi

00:00:20 #348 [Verbose] >

00:00:20 #349 [Verbose] > ╭─[ 236.48ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #350 [Verbose] > │ ()                                                                           │

00:00:20 #351 [Verbose] > │                                                                              │

00:00:20 #352 [Verbose] > │                                                                              │

00:00:20 #353 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #354 [Verbose] >

00:00:20 #355 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:20 #356 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:20 #357 [Verbose] > │ ## init_series                                                               │

00:00:20 #358 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #359 [Verbose] >

00:00:20 #360 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #361 [Verbose] > // // test

00:00:20 #362 [Verbose] >

00:00:20 #363 [Verbose] > inl x : a _ f64 = am'.init_series -3 3 0.01

00:00:20 #364 [Verbose] > inl y = x |> am.map math.square

00:00:20 #365 [Verbose] > "square", "x", "y", ;[[ "square", x, y ]]

00:00:20 #366 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-4861-6108-6fd5c08daadd\main.spi

00:00:21 #367 [Verbose] >

00:00:21 #368 [Verbose] > ╭─[ 499.04ms - return value ]──────────────────────────────────────────────────╮

00:00:21 #369 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:21 #370 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:21 #371 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:21 #372 [Verbose] > │ stroke="none"/>                                                              │

00:00:21 #373 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:21 #374 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:21 #375 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:21 #376 [Verbose] > │ square                                                                       │

00:00:21 #377 [Verbose] > │ </text>                                                                      │

00:00:21 #378 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="61" y1="424" x2="61" │

00:00:21 #379 [Verbose] > │ y2="75"/>                                                                    │

00:00:21 #380 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:21 #381 [Verbose] > │ y2="75"/>                                                                    │

00:00:21 #382 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="78" y1="424" x2="78" │

00:00:21 #383 [Verbose] > │ y2="75"/>                                                                    │

00:00:21 #384 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="86" y1="424" x2="86" │

00:00:21 #385 [Verbose] > │ y2="75"/>                                                                    │

00:00:21 #386 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x2="94" │

00:00:21 #387 [Verbose] > │ ...                                                                          │

00:00:21 #388 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #389 [Verbose] >

00:00:21 #390 [Verbose] > ╭─[ 520.80ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #391 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:21 #392 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:21 #393 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:21 #394 [Verbose] > │     let v2 : bool = v1 < 601                                                 │

00:00:21 #395 [Verbose] > │     v2                                                                       │

00:00:21 #396 [Verbose] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

00:00:21 #397 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:21 #398 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:21 #399 [Verbose] > │     v3                                                                       │

00:00:21 #400 [Verbose] > │ and method3 (v0 : (struct (string * (float []) * (float [])) [])) : (struct  │

00:00:21 #401 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:21 #402 [Verbose] > │     v0                                                                       │

00:00:21 #403 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:21 #404 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:21 #405 [Verbose] > │     let v0 : (float []) = Array.zeroCreate<float> (601)                      │

00:00:21 #406 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:21 #407 [Verbose] > │     while method1(v1) do                                                     │

00:00:21 #408 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:21 #409 [Verbose] > │         let v4 : float = float v3                                            │

00:00:21 #410 [Verbose] > │         let v5 : float = 0.01 * v4                                           │

00:00:21 #411 [Verbose] > │         let v6 : float = -3.0 + v5                                           │

00:00:21 #412 [Verbose] > │         v0.[int v3] <- v6                                                    │

00:00:21 #413 [Verbose] > │         let v7 : int32 = v3 + 1                                              │

00:00:21 #414 [Verbose] > │         v1.l0 <- v7                                                          │

00:00:21 #415 [Verbose] > │         ()                                                                   │

00:00:21 #416 [Verbose] > │     let v8 : int32 = v0.Length                                               │

00:00:21 #417 [Verbose] > │     let v9 : (float []) = Array.zeroCreate<float> (v8)                       │

00:00:21 #418 [Verbose] > │     let v10 : Mut0 = {l0 = 0} : Mut0                                         │

00:00:21 #419 [Verbose] > │     while method2(v8, v10) do                                                │

00:00:21 #420 [Verbose] > │         let v12 : int32 = v10.l0                                             │

00:00:21 #421 [Verbose] > │         let v13 : float = v0.[int v12]                                       │

00:00:21 #422 [Verbose] > │         let v14 : float = v13 ** 2.0                                         │

00:00:21 #423 [Verbose] > │         v9.[int v12] <- v14                                                  │

00:00:21 #424 [Verbose] > │         let v15 : int32 = v12 + 1                                            │

00:00:21 #425 [Verbose] > │         v10.l0 <- v15                                                        │

00:00:21 #426 [Verbose] > │         ()                                                                   │

00:00:21 #427 [Verbose] > │     let v16 : string = "square"                                              │

00:00:21 #428 [Verbose] > │     let v17 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:21 #429 [Verbose] > │ (v16, v0, v9)|]                                                              │

00:00:21 #430 [Verbose] > │     let v18 : (struct (string * (float []) * (float [])) []) = method3(v17)  │

00:00:21 #431 [Verbose] > │     let v19 : string = "x"                                                   │

00:00:21 #432 [Verbose] > │     let v20 : string = "y"                                                   │

00:00:21 #433 [Verbose] > │     struct (v16, v19, v20, v18)                                              │

00:00:21 #434 [Verbose] > │ method0()                                                                    │

00:00:21 #435 [Verbose] > │                                                                              │

00:00:21 #436 [Verbose] > │                                                                              │

00:00:21 #437 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #438 [Verbose] >

00:00:21 #439 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:21 #440 [Verbose] > // // test

00:00:21 #441 [Verbose] >

00:00:21 #442 [Verbose] > inl x : a _ f64 = am'.init_series -10 10 0.1

00:00:21 #443 [Verbose] > inl y_sin = x |> am.map sin

00:00:21 #444 [Verbose] > inl y_cos = x |> am.map cos

00:00:21 #445 [Verbose] > "sin cos", "x", "y", ;[[ "sin", x, y_sin; "cos", x, y_cos ]]

00:00:21 #446 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-4916-1622-1306ebf3aa3e\main.spi

00:00:21 #447 [Verbose] >

00:00:21 #448 [Verbose] > ╭─[ 308.22ms - return value ]──────────────────────────────────────────────────╮

00:00:21 #449 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:21 #450 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:21 #451 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:21 #452 [Verbose] > │ stroke="none"/>                                                              │

00:00:21 #453 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:21 #454 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:21 #455 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:21 #456 [Verbose] > │ sin cos                                                                      │

00:00:21 #457 [Verbose] > │ </text>                                                                      │

00:00:21 #458 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="57" y1="424" x2="57" │

00:00:21 #459 [Verbose] > │ y2="75"/>                                                                    │

00:00:21 #460 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:21 #461 [Verbose] > │ y2="75"/>                                                                    │

00:00:21 #462 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="82" y1="424" x2="82" │

00:00:21 #463 [Verbose] > │ y2="75"/>                                                                    │

00:00:21 #464 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x2="94" │

00:00:21 #465 [Verbose] > │ y2="75"/>                                                                    │

00:00:21 #466 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1="424"        │

00:00:21 #467 [Verbose] > │ x2="10...                                                                    │

00:00:21 #468 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #469 [Verbose] >

00:00:21 #470 [Verbose] > ╭─[ 325.97ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #471 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:21 #472 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:21 #473 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:21 #474 [Verbose] > │     let v2 : bool = v1 < 201                                                 │

00:00:21 #475 [Verbose] > │     v2                                                                       │

00:00:21 #476 [Verbose] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

00:00:21 #477 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:21 #478 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:21 #479 [Verbose] > │     v3                                                                       │

00:00:21 #480 [Verbose] > │ and method3 (v0 : (struct (string * (float []) * (float [])) [])) : (struct  │

00:00:21 #481 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:21 #482 [Verbose] > │     v0                                                                       │

00:00:21 #483 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:21 #484 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:21 #485 [Verbose] > │     let v0 : (float []) = Array.zeroCreate<float> (201)                      │

00:00:21 #486 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:21 #487 [Verbose] > │     while method1(v1) do                                                     │

00:00:21 #488 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:21 #489 [Verbose] > │         let v4 : float = float v3                                            │

00:00:21 #490 [Verbose] > │         let v5 : float = 0.1 * v4                                            │

00:00:21 #491 [Verbose] > │         let v6 : float = -10.0 + v5                                          │

00:00:21 #492 [Verbose] > │         v0.[int v3] <- v6                                                    │

00:00:21 #493 [Verbose] > │         let v7 : int32 = v3 + 1                                              │

00:00:21 #494 [Verbose] > │         v1.l0 <- v7                                                          │

00:00:21 #495 [Verbose] > │         ()                                                                   │

00:00:21 #496 [Verbose] > │     let v8 : int32 = v0.Length                                               │

00:00:21 #497 [Verbose] > │     let v9 : (float []) = Array.zeroCreate<float> (v8)                       │

00:00:21 #498 [Verbose] > │     let v10 : Mut0 = {l0 = 0} : Mut0                                         │

00:00:21 #499 [Verbose] > │     while method2(v8, v10) do                                                │

00:00:21 #500 [Verbose] > │         let v12 : int32 = v10.l0                                             │

00:00:21 #501 [Verbose] > │         let v13 : float = v0.[int v12]                                       │

00:00:21 #502 [Verbose] > │         let v14 : float = sin v13                                            │

00:00:21 #503 [Verbose] > │         v9.[int v12] <- v14                                                  │

00:00:21 #504 [Verbose] > │         let v15 : int32 = v12 + 1                                            │

00:00:21 #505 [Verbose] > │         v10.l0 <- v15                                                        │

00:00:21 #506 [Verbose] > │         ()                                                                   │

00:00:21 #507 [Verbose] > │     let v16 : (float []) = Array.zeroCreate<float> (v8)                      │

00:00:21 #508 [Verbose] > │     let v17 : Mut0 = {l0 = 0} : Mut0                                         │

00:00:21 #509 [Verbose] > │     while method2(v8, v17) do                                                │

00:00:21 #510 [Verbose] > │         let v19 : int32 = v17.l0                                             │

00:00:21 #511 [Verbose] > │         let v20 : float = v0.[int v19]                                       │

00:00:21 #512 [Verbose] > │         let v21 : float = cos v20                                            │

00:00:21 #513 [Verbose] > │         v16.[int v19] <- v21                                                 │

00:00:21 #514 [Verbose] > │         let v22 : int32 = v19 + 1                                            │

00:00:21 #515 [Verbose] > │         v17.l0 <- v22                                                        │

00:00:21 #516 [Verbose] > │         ()                                                                   │

00:00:21 #517 [Verbose] > │     let v23 : string = "sin"                                                 │

00:00:21 #518 [Verbose] > │     let v24 : string = "cos"                                                 │

00:00:21 #519 [Verbose] > │     let v25 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:21 #520 [Verbose] > │ (v23, v0, v9); struct (v24, v0, v16)|]                                       │

00:00:21 #521 [Verbose] > │     let v26 : (struct (string * (float []) * (float [])) []) = method3(v25)  │

00:00:21 #522 [Verbose] > │     let v27 : string = "sin cos"                                             │

00:00:21 #523 [Verbose] > │     let v28 : string = "x"                                                   │

00:00:21 #524 [Verbose] > │     let v29 : string = "y"                                                   │

00:00:21 #525 [Verbose] > │     struct (v27, v28, v29, v26)                                              │

00:00:21 #526 [Verbose] > │ method0()                                                                    │

00:00:21 #527 [Verbose] > │                                                                              │

00:00:21 #528 [Verbose] > │                                                                              │

00:00:21 #529 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #530 [Verbose] >

00:00:21 #531 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:21 #532 [Verbose] > // // test

00:00:21 #533 [Verbose] >

00:00:21 #534 [Verbose] > inl y_pos y0 vy0 ay t =

00:00:21 #535 [Verbose] >     y0 + vy0 * t + ay * (t |> math.square) / 2

00:00:21 #536 [Verbose] >

00:00:21 #537 [Verbose] > inl x : a _ f64 = am'.init_series 0 5 0.01

00:00:21 #538 [Verbose] > inl y = x |> am.map (y_pos 0 20 -9.8)

00:00:21 #539 [Verbose] > "projectile motion", "time (s)", "", ;[[ "height of projectile (m)", x, y ]]

00:00:21 #540 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-4952-5235-5a8b1985c445\main.spi

00:00:21 #541 [Verbose] >

00:00:21 #542 [Verbose] > ╭─[ 249.24ms - return value ]──────────────────────────────────────────────────╮

00:00:21 #543 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:21 #544 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:21 #545 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:21 #546 [Verbose] > │ stroke="none"/>                                                              │

00:00:21 #547 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:21 #548 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:21 #549 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:21 #550 [Verbose] > │ projectile motion                                                            │

00:00:21 #551 [Verbose] > │ </text>                                                                      │

00:00:21 #552 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

00:00:21 #553 [Verbose] > │ y2="75"/>                                                                    │

00:00:21 #554 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:21 #555 [Verbose] > │ y2="75"/>                                                                    │

00:00:21 #556 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

00:00:21 #557 [Verbose] > │ y2="75"/>                                                                    │

00:00:21 #558 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

00:00:21 #559 [Verbose] > │ y2="75"/>                                                                    │

00:00:21 #560 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="99" y1="42...        │

00:00:21 #561 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #562 [Verbose] >

00:00:21 #563 [Verbose] > ╭─[ 261.25ms - stdout ]────────────────────────────────────────────────────────╮

00:00:21 #564 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:21 #565 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:21 #566 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:21 #567 [Verbose] > │     let v2 : bool = v1 < 501                                                 │

00:00:21 #568 [Verbose] > │     v2                                                                       │

00:00:21 #569 [Verbose] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

00:00:21 #570 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:21 #571 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:21 #572 [Verbose] > │     v3                                                                       │

00:00:21 #573 [Verbose] > │ and method3 (v0 : (struct (string * (float []) * (float [])) [])) : (struct  │

00:00:21 #574 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:21 #575 [Verbose] > │     v0                                                                       │

00:00:21 #576 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:21 #577 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:21 #578 [Verbose] > │     let v0 : (float []) = Array.zeroCreate<float> (501)                      │

00:00:21 #579 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:21 #580 [Verbose] > │     while method1(v1) do                                                     │

00:00:21 #581 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:21 #582 [Verbose] > │         let v4 : float = float v3                                            │

00:00:21 #583 [Verbose] > │         let v5 : float = 0.01 * v4                                           │

00:00:21 #584 [Verbose] > │         v0.[int v3] <- v5                                                    │

00:00:21 #585 [Verbose] > │         let v6 : int32 = v3 + 1                                              │

00:00:21 #586 [Verbose] > │         v1.l0 <- v6                                                          │

00:00:21 #587 [Verbose] > │         ()                                                                   │

00:00:21 #588 [Verbose] > │     let v7 : int32 = v0.Length                                               │

00:00:21 #589 [Verbose] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

00:00:21 #590 [Verbose] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:21 #591 [Verbose] > │     while method2(v7, v9) do                                                 │

00:00:21 #592 [Verbose] > │         let v11 : int32 = v9.l0                                              │

00:00:21 #593 [Verbose] > │         let v12 : float = v0.[int v11]                                       │

00:00:21 #594 [Verbose] > │         let v13 : float = 20.0 * v12                                         │

00:00:21 #595 [Verbose] > │         let v14 : float = v12 ** 2.0                                         │

00:00:21 #596 [Verbose] > │         let v15 : float = -9.8 * v14                                         │

00:00:21 #597 [Verbose] > │         let v16 : float = v15 / 2.0                                          │

00:00:21 #598 [Verbose] > │         let v17 : float = v13 + v16                                          │

00:00:21 #599 [Verbose] > │         v8.[int v11] <- v17                                                  │

00:00:21 #600 [Verbose] > │         let v18 : int32 = v11 + 1                                            │

00:00:21 #601 [Verbose] > │         v9.l0 <- v18                                                         │

00:00:21 #602 [Verbose] > │         ()                                                                   │

00:00:21 #603 [Verbose] > │     let v19 : string = "height of projectile (m)"                            │

00:00:21 #604 [Verbose] > │     let v20 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:21 #605 [Verbose] > │ (v19, v0, v8)|]                                                              │

00:00:21 #606 [Verbose] > │     let v21 : (struct (string * (float []) * (float [])) []) = method3(v20)  │

00:00:21 #607 [Verbose] > │     let v22 : string = "projectile motion"                                   │

00:00:21 #608 [Verbose] > │     let v23 : string = "time (s)"                                            │

00:00:21 #609 [Verbose] > │     let v24 : string = ""                                                    │

00:00:21 #610 [Verbose] > │     struct (v22, v23, v24, v21)                                              │

00:00:21 #611 [Verbose] > │ method0()                                                                    │

00:00:21 #612 [Verbose] > │                                                                              │

00:00:21 #613 [Verbose] > │                                                                              │

00:00:21 #614 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #615 [Verbose] >

00:00:21 #616 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:21 #617 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:21 #618 [Verbose] > │ ## velocity_cf                                                               │

00:00:21 #619 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #620 [Verbose] >

00:00:21 #621 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:21 #622 [Verbose] > type mass = f64

00:00:21 #623 [Verbose] > type time = f64

00:00:21 #624 [Verbose] > type position = f64

00:00:21 #625 [Verbose] > type velocity = f64

00:00:21 #626 [Verbose] > type force = f64

00:00:21 #627 [Verbose] >

00:00:21 #628 [Verbose] > type velocity_cf = mass -> velocity -> list force -> (time -> velocity)

00:00:21 #629 [Verbose] >

00:00:21 #630 [Verbose] > inl velocity_cf m v0 fs =

00:00:21 #631 [Verbose] >     inl f_net = fs |> listm'.sum

00:00:21 #632 [Verbose] >     inl a0 = f_net / m

00:00:21 #633 [Verbose] >     inl v t = v0 + a0 * t

00:00:21 #634 [Verbose] >     v

00:00:22 #635 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-4981-8185-8f072a986b6f\main.spi

00:00:22 #636 [Verbose] >

00:00:22 #637 [Verbose] > ╭─[ 263.95ms - stdout ]────────────────────────────────────────────────────────╮

00:00:22 #638 [Verbose] > │ ()                                                                           │

00:00:22 #639 [Verbose] > │                                                                              │

00:00:22 #640 [Verbose] > │                                                                              │

00:00:22 #641 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #642 [Verbose] >

00:00:22 #643 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:22 #644 [Verbose] > // // test

00:00:22 #645 [Verbose] >

00:00:22 #646 [Verbose] > velocity_cf 0.1f64 0.6 [[ 0.04; -0.08 ]] 0

00:00:22 #647 [Verbose] > |> _equal 0.6

00:00:22 #648 [Verbose] >

00:00:22 #649 [Verbose] > velocity_cf 0.1f64 0.6 [[ 0.04; -0.08 ]] 1

00:00:22 #650 [Verbose] > |> _equal 0.2

00:00:22 #651 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5008-0856-0c4e01b81860\main.spi

00:00:22 #652 [Verbose] >

00:00:22 #653 [Verbose] > ╭─[ 286.04ms - stdout ]────────────────────────────────────────────────────────╮

00:00:22 #654 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:22 #655 [Verbose] > │     let v0 : string = $"__expect / actual: %A{0.6} / expected: %A{0.6}"      │

00:00:22 #656 [Verbose] > │     let v1 : string = $"__expect / actual: %A{0.2} / expected: %A{0.2}"      │

00:00:22 #657 [Verbose] > │     ()                                                                       │

00:00:22 #658 [Verbose] > │ method0()                                                                    │

00:00:22 #659 [Verbose] > │                                                                              │

00:00:22 #660 [Verbose] > │                                                                              │

00:00:22 #661 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #662 [Verbose] >

00:00:22 #663 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:22 #664 [Verbose] > // // test

00:00:22 #665 [Verbose] >

00:00:22 #666 [Verbose] > inl x = am'.init_series 0 4 0.1

00:00:22 #667 [Verbose] > inl y = x |> am.map (velocity_cf 0.1f64 0.6 [[ 0.04; -0.08 ]])

00:00:22 #668 [Verbose] > "car on an air track", "time (s)", "", ;[[ "velocity of car (m/s)", x, y ]]

00:00:22 #669 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5037-3762-3c9c7e2d2bed\main.spi

00:00:22 #670 [Verbose] >

00:00:22 #671 [Verbose] > ╭─[ 297.73ms - return value ]──────────────────────────────────────────────────╮

00:00:22 #672 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:22 #673 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:22 #674 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:22 #675 [Verbose] > │ stroke="none"/>                                                              │

00:00:22 #676 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:22 #677 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:22 #678 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:22 #679 [Verbose] > │ car on an air track                                                          │

00:00:22 #680 [Verbose] > │ </text>                                                                      │

00:00:22 #681 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="57" y1="424" x2="57" │

00:00:22 #682 [Verbose] > │ y2="75"/>                                                                    │

00:00:22 #683 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:22 #684 [Verbose] > │ y2="75"/>                                                                    │

00:00:22 #685 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="82" y1="424" x2="82" │

00:00:22 #686 [Verbose] > │ y2="75"/>                                                                    │

00:00:22 #687 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x2="94" │

00:00:22 #688 [Verbose] > │ y2="75"/>                                                                    │

00:00:22 #689 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="107" y1=...          │

00:00:22 #690 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #691 [Verbose] >

00:00:22 #692 [Verbose] > ╭─[ 313.06ms - stdout ]────────────────────────────────────────────────────────╮

00:00:22 #693 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:22 #694 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:22 #695 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:22 #696 [Verbose] > │     let v2 : bool = v1 < 41                                                  │

00:00:22 #697 [Verbose] > │     v2                                                                       │

00:00:22 #698 [Verbose] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

00:00:22 #699 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:22 #700 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:22 #701 [Verbose] > │     v3                                                                       │

00:00:22 #702 [Verbose] > │ and method3 (v0 : (struct (string * (float []) * (float [])) [])) : (struct  │

00:00:22 #703 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:22 #704 [Verbose] > │     v0                                                                       │

00:00:22 #705 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:22 #706 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:22 #707 [Verbose] > │     let v0 : (float []) = Array.zeroCreate<float> (41)                       │

00:00:22 #708 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:22 #709 [Verbose] > │     while method1(v1) do                                                     │

00:00:22 #710 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:22 #711 [Verbose] > │         let v4 : float = float v3                                            │

00:00:22 #712 [Verbose] > │         let v5 : float = 0.1 * v4                                            │

00:00:22 #713 [Verbose] > │         v0.[int v3] <- v5                                                    │

00:00:22 #714 [Verbose] > │         let v6 : int32 = v3 + 1                                              │

00:00:22 #715 [Verbose] > │         v1.l0 <- v6                                                          │

00:00:22 #716 [Verbose] > │         ()                                                                   │

00:00:22 #717 [Verbose] > │     let v7 : int32 = v0.Length                                               │

00:00:22 #718 [Verbose] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

00:00:22 #719 [Verbose] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:22 #720 [Verbose] > │     while method2(v7, v9) do                                                 │

00:00:22 #721 [Verbose] > │         let v11 : int32 = v9.l0                                              │

00:00:22 #722 [Verbose] > │         let v12 : float = v0.[int v11]                                       │

00:00:22 #723 [Verbose] > │         let v13 : float = -0.39999999999999997 * v12                         │

00:00:22 #724 [Verbose] > │         let v14 : float = 0.6 + v13                                          │

00:00:22 #725 [Verbose] > │         v8.[int v11] <- v14                                                  │

00:00:22 #726 [Verbose] > │         let v15 : int32 = v11 + 1                                            │

00:00:22 #727 [Verbose] > │         v9.l0 <- v15                                                         │

00:00:22 #728 [Verbose] > │         ()                                                                   │

00:00:22 #729 [Verbose] > │     let v16 : string = "velocity of car (m/s)"                               │

00:00:22 #730 [Verbose] > │     let v17 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:22 #731 [Verbose] > │ (v16, v0, v8)|]                                                              │

00:00:22 #732 [Verbose] > │     let v18 : (struct (string * (float []) * (float [])) []) = method3(v17)  │

00:00:22 #733 [Verbose] > │     let v19 : string = "car on an air track"                                 │

00:00:22 #734 [Verbose] > │     let v20 : string = "time (s)"                                            │

00:00:22 #735 [Verbose] > │     let v21 : string = ""                                                    │

00:00:22 #736 [Verbose] > │     struct (v19, v20, v21, v18)                                              │

00:00:22 #737 [Verbose] > │ method0()                                                                    │

00:00:22 #738 [Verbose] > │                                                                              │

00:00:22 #739 [Verbose] > │                                                                              │

00:00:22 #740 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #741 [Verbose] >

00:00:22 #742 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:22 #743 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:22 #744 [Verbose] > │ ## derivative                                                                │

00:00:22 #745 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #746 [Verbose] >

00:00:22 #747 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:22 #748 [Verbose] > type derivative = (f64 -> f64) -> f64 -> f64

00:00:22 #749 [Verbose] >

00:00:22 #750 [Verbose] > inl derivative dt : derivative =

00:00:22 #751 [Verbose] >     fun x t =>

00:00:22 #752 [Verbose] >         (x (t + dt / 2) - x (t - dt / 2)) / dt

00:00:23 #753 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5072-7238-7e66bb42b983\main.spi

00:00:23 #754 [Verbose] >

00:00:23 #755 [Verbose] > ╭─[ 226.27ms - stdout ]────────────────────────────────────────────────────────╮

00:00:23 #756 [Verbose] > │ ()                                                                           │

00:00:23 #757 [Verbose] > │                                                                              │

00:00:23 #758 [Verbose] > │                                                                              │

00:00:23 #759 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:23 #760 [Verbose] >

00:00:23 #761 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:23 #762 [Verbose] > // // test

00:00:23 #763 [Verbose] >

00:00:23 #764 [Verbose] > derivative 1 (fun x => x ** 4 / 4) 1 - 1

00:00:23 #765 [Verbose] > |> _almost_equal 0.25

00:00:23 #766 [Verbose] >

00:00:23 #767 [Verbose] > derivative 0.001 (fun x => x ** 4 / 4) 1 - 1

00:00:23 #768 [Verbose] > |> _almost_equal 0.0000002499998827953931

00:00:23 #769 [Verbose] >

00:00:23 #770 [Verbose] > derivative 0.000001 (fun x => x ** 4 / 4) 1 - 1

00:00:23 #771 [Verbose] > |> _almost_equal 0.000000000001000088900582341

00:00:23 #772 [Verbose] >

00:00:23 #773 [Verbose] > derivative 0.000000001 (fun x => x ** 4 / 4) 1 - 1

00:00:23 #774 [Verbose] > |> _almost_equal 0.00000008274037099909037

00:00:23 #775 [Verbose] >

00:00:23 #776 [Verbose] > derivative 0.000000000001 (fun x => x ** 4 / 4) 1 - 1

00:00:23 #777 [Verbose] > |> _almost_equal 0.00008890058234101161

00:00:23 #778 [Verbose] >

00:00:23 #779 [Verbose] > derivative 0.000000000000001 (fun x => x ** 4 / 4) 1 - 1

00:00:23 #780 [Verbose] > |> _almost_equal -0.0007992778373592246

00:00:23 #781 [Verbose] >

00:00:23 #782 [Verbose] > derivative 0.000000000000000001 (fun x => x ** 4 / 4) 1 - 1

00:00:23 #783 [Verbose] > |> _almost_equal -1

00:00:23 #784 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5095-9541-9047aca19aca\main.spi

00:00:23 #785 [Verbose] >

00:00:23 #786 [Verbose] > ╭─[ 254.66ms - stdout ]────────────────────────────────────────────────────────╮

00:00:23 #787 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:23 #788 [Verbose] > │     let v0 : string = $"__expect / actual: %A{0.25} / expected: %A{0.25}"    │

00:00:23 #789 [Verbose] > │     let v1 : string = $"__expect / actual: %A{2.499998827953931E-07} /       │

00:00:23 #790 [Verbose] > │ expected: %A{2.499998827953931E-07}"                                         │

00:00:23 #791 [Verbose] > │     let v2 : string = $"__expect / actual: %A{1.000088900582341E-12} /       │

00:00:23 #792 [Verbose] > │ expected: %A{1.000088900582341E-12}"                                         │

00:00:23 #793 [Verbose] > │     let v3 : string = $"__expect / actual: %A{8.274037099909037E-08} /       │

00:00:23 #794 [Verbose] > │ expected: %A{8.274037099909037E-08}"                                         │

00:00:23 #795 [Verbose] > │     let v4 : string = $"__expect / actual: %A{8.890058234101161E-05} /       │

00:00:23 #796 [Verbose] > │ expected: %A{8.890058234101161E-05}"                                         │

00:00:23 #797 [Verbose] > │     let v5 : string = $"__expect / actual: %A{-0.0007992778373592246} /      │

00:00:23 #798 [Verbose] > │ expected: %A{-0.0007992778373592246}"                                        │

00:00:23 #799 [Verbose] > │     let v6 : string = $"__expect / actual: %A{-1.0} / expected: %A{-1.0}"    │

00:00:23 #800 [Verbose] > │     ()                                                                       │

00:00:23 #801 [Verbose] > │ method0()                                                                    │

00:00:23 #802 [Verbose] > │                                                                              │

00:00:23 #803 [Verbose] > │                                                                              │

00:00:23 #804 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:23 #805 [Verbose] >

00:00:23 #806 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:23 #807 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:23 #808 [Verbose] > │ ## integration                                                               │

00:00:23 #809 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:23 #810 [Verbose] >

00:00:23 #811 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:23 #812 [Verbose] > type integration = (f64 -> f64) -> f64 -> f64 -> f64

00:00:23 #813 [Verbose] >

00:00:23 #814 [Verbose] > inl integral dt : integration =

00:00:23 #815 [Verbose] >     fun f a b =>

00:00:23 #816 [Verbose] >         inl rec loop t y =

00:00:23 #817 [Verbose] >             if t < b

00:00:23 #818 [Verbose] >             then loop (t + dt) (y + f t * dt)

00:00:23 #819 [Verbose] >             else t, y

00:00:23 #820 [Verbose] >         loop (a + dt / 2) 0

00:00:23 #821 [Verbose] >         |> snd

00:00:23 #822 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5121-2159-29fae994b79e\main.spi

00:00:23 #823 [Verbose] >

00:00:23 #824 [Verbose] > ╭─[ 289.84ms - stdout ]────────────────────────────────────────────────────────╮

00:00:23 #825 [Verbose] > │ ()                                                                           │

00:00:23 #826 [Verbose] > │                                                                              │

00:00:23 #827 [Verbose] > │                                                                              │

00:00:23 #828 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:23 #829 [Verbose] >

00:00:23 #830 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:23 #831 [Verbose] > // // test

00:00:23 #832 [Verbose] >

00:00:23 #833 [Verbose] > integral 0.01 math.square 0 1

00:00:23 #834 [Verbose] > |> _almost_equal 0.33332500000000004

00:00:23 #835 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5151-5130-5e228e0a437e\main.spi

00:00:24 #836 [Verbose] >

00:00:24 #837 [Verbose] > ╭─[ 336.39ms - stdout ]────────────────────────────────────────────────────────╮

00:00:24 #838 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:24 #839 [Verbose] > │     let v0 : string = $"__expect / actual: %A{0.3333250000000004} /          │

00:00:24 #840 [Verbose] > │ expected: %A{0.33332500000000004}"                                           │

00:00:24 #841 [Verbose] > │     ()                                                                       │

00:00:24 #842 [Verbose] > │ method0()                                                                    │

00:00:24 #843 [Verbose] > │                                                                              │

00:00:24 #844 [Verbose] > │                                                                              │

00:00:24 #845 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:24 #846 [Verbose] >

00:00:24 #847 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:24 #848 [Verbose] > inl integral' dt : integration =

00:00:24 #849 [Verbose] >     fun f a b =>

00:00:24 #850 [Verbose] >         listm'.init_series (a + dt / 2) (b - dt / 2) dt

00:00:24 #851 [Verbose] >         |> listm.map (f >> (*) dt)

00:00:24 #852 [Verbose] >         |> listm'.sum

00:00:24 #853 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5185-8529-8a69607bf574\main.spi

00:00:24 #854 [Verbose] >

00:00:24 #855 [Verbose] > ╭─[ 229.94ms - stdout ]────────────────────────────────────────────────────────╮

00:00:24 #856 [Verbose] > │ ()                                                                           │

00:00:24 #857 [Verbose] > │                                                                              │

00:00:24 #858 [Verbose] > │                                                                              │

00:00:24 #859 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:24 #860 [Verbose] >

00:00:24 #861 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:24 #862 [Verbose] > // // test

00:00:24 #863 [Verbose] >

00:00:24 #864 [Verbose] > integral' 0.1 math.square 0 1

00:00:24 #865 [Verbose] > |> _almost_equal (integral 0.1 math.square 0 1)

00:00:24 #866 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5208-0852-04a02c155783\main.spi

00:00:24 #867 [Verbose] >

00:00:24 #868 [Verbose] > ╭─[ 218.62ms - stdout ]────────────────────────────────────────────────────────╮

00:00:24 #869 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:24 #870 [Verbose] > │     let v0 : string = $"__expect / actual: %A{0.3325000000000001} /          │

00:00:24 #871 [Verbose] > │ expected: %A{0.33249999999999996}"                                           │

00:00:24 #872 [Verbose] > │     ()                                                                       │

00:00:24 #873 [Verbose] > │ method0()                                                                    │

00:00:24 #874 [Verbose] > │                                                                              │

00:00:24 #875 [Verbose] > │                                                                              │

00:00:24 #876 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:24 #877 [Verbose] >

00:00:24 #878 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:24 #879 [Verbose] > inl integral'' dt : integration =

00:00:24 #880 [Verbose] >     fun f a b =>

00:00:24 #881 [Verbose] >         am'.init_series (a + dt / 2) (b - dt / 2) dt

00:00:24 #882 [Verbose] >         |> am.map (f >> (*) dt)

00:00:24 #883 [Verbose] >         |> am'.sum

00:00:24 #884 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5230-3087-37e50a3310ca\main.spi

00:00:24 #885 [Verbose] >

00:00:24 #886 [Verbose] > ╭─[ 219.38ms - stdout ]────────────────────────────────────────────────────────╮

00:00:24 #887 [Verbose] > │ ()                                                                           │

00:00:24 #888 [Verbose] > │                                                                              │

00:00:24 #889 [Verbose] > │                                                                              │

00:00:24 #890 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:24 #891 [Verbose] >

00:00:24 #892 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:24 #893 [Verbose] > // // test

00:00:24 #894 [Verbose] >

00:00:24 #895 [Verbose] > integral'' 0.01 math.square 0 1

00:00:24 #896 [Verbose] > |> _almost_equal (integral 0.01 math.square 0 1)

00:00:24 #897 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5253-5300-573f76235907\main.spi

00:00:25 #898 [Verbose] >

00:00:25 #899 [Verbose] > ╭─[ 470.70ms - stdout ]────────────────────────────────────────────────────────╮

00:00:25 #900 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:25 #901 [Verbose] > │ and Mut1 = {mutable l0 : int32; mutable l1 : float}                          │

00:00:25 #902 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:25 #903 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:25 #904 [Verbose] > │     let v2 : bool = v1 < 100                                                 │

00:00:25 #905 [Verbose] > │     v2                                                                       │

00:00:25 #906 [Verbose] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

00:00:25 #907 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:25 #908 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:25 #909 [Verbose] > │     v3                                                                       │

00:00:25 #910 [Verbose] > │ and method3 (v0 : int32, v1 : Mut1) : bool =                                 │

00:00:25 #911 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:25 #912 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:25 #913 [Verbose] > │     v3                                                                       │

00:00:25 #914 [Verbose] > │ and method0 () : unit =                                                      │

00:00:25 #915 [Verbose] > │     let v0 : (float []) = Array.zeroCreate<float> (100)                      │

00:00:25 #916 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:25 #917 [Verbose] > │     while method1(v1) do                                                     │

00:00:25 #918 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:25 #919 [Verbose] > │         let v4 : float = float v3                                            │

00:00:25 #920 [Verbose] > │         let v5 : float = 0.01 * v4                                           │

00:00:25 #921 [Verbose] > │         let v6 : float = 0.005 + v5                                          │

00:00:25 #922 [Verbose] > │         v0.[int v3] <- v6                                                    │

00:00:25 #923 [Verbose] > │         let v7 : int32 = v3 + 1                                              │

00:00:25 #924 [Verbose] > │         v1.l0 <- v7                                                          │

00:00:25 #925 [Verbose] > │         ()                                                                   │

00:00:25 #926 [Verbose] > │     let v8 : int32 = v0.Length                                               │

00:00:25 #927 [Verbose] > │     let v9 : (float []) = Array.zeroCreate<float> (v8)                       │

00:00:25 #928 [Verbose] > │     let v10 : Mut0 = {l0 = 0} : Mut0                                         │

00:00:25 #929 [Verbose] > │     while method2(v8, v10) do                                                │

00:00:25 #930 [Verbose] > │         let v12 : int32 = v10.l0                                             │

00:00:25 #931 [Verbose] > │         let v13 : float = v0.[int v12]                                       │

00:00:25 #932 [Verbose] > │         let v14 : float = v13 ** 2.0                                         │

00:00:25 #933 [Verbose] > │         let v15 : float = 0.01 * v14                                         │

00:00:25 #934 [Verbose] > │         v9.[int v12] <- v15                                                  │

00:00:25 #935 [Verbose] > │         let v16 : int32 = v12 + 1                                            │

00:00:25 #936 [Verbose] > │         v10.l0 <- v16                                                        │

00:00:25 #937 [Verbose] > │         ()                                                                   │

00:00:25 #938 [Verbose] > │     let v17 : int32 = v9.Length                                              │

00:00:25 #939 [Verbose] > │     let v18 : Mut1 = {l0 = 0; l1 = 0.0} : Mut1                               │

00:00:25 #940 [Verbose] > │     while method3(v17, v18) do                                               │

00:00:25 #941 [Verbose] > │         let v20 : int32 = v18.l0                                             │

00:00:25 #942 [Verbose] > │         let v21 : float = v18.l1                                             │

00:00:25 #943 [Verbose] > │         let v22 : float = v9.[int v20]                                       │

00:00:25 #944 [Verbose] > │         let v23 : float = v21 + v22                                          │

00:00:25 #945 [Verbose] > │         let v24 : int32 = v20 + 1                                            │

00:00:25 #946 [Verbose] > │         v18.l0 <- v24                                                        │

00:00:25 #947 [Verbose] > │         v18.l1 <- v23                                                        │

00:00:25 #948 [Verbose] > │         ()                                                                   │

00:00:25 #949 [Verbose] > │     let v25 : float = v18.l1                                                 │

00:00:25 #950 [Verbose] > │     let v26 : string = $"__expect / actual: %A{v25} / expected:              │

00:00:25 #951 [Verbose] > │ %A{0.3333250000000004}"                                                      │

00:00:25 #952 [Verbose] > │     let v27 : float = 0.3333250000000004 - v25                               │

00:00:25 #953 [Verbose] > │     let v28 : float =  -v27                                                  │

00:00:25 #954 [Verbose] > │     let v29 : bool = v27 >= v28                                              │

00:00:25 #955 [Verbose] > │     let v30 : float =                                                        │

00:00:25 #956 [Verbose] > │         if v29 then                                                          │

00:00:25 #957 [Verbose] > │             v27                                                              │

00:00:25 #958 [Verbose] > │         else                                                                 │

00:00:25 #959 [Verbose] > │             v28                                                              │

00:00:25 #960 [Verbose] > │     let v31 : bool = v30 < 1E-08                                             │

00:00:25 #961 [Verbose] > │     let v32 : bool = v31 = false                                             │

00:00:25 #962 [Verbose] > │     if v32 then                                                              │

00:00:25 #963 [Verbose] > │         failwith<unit> v26                                                   │

00:00:25 #964 [Verbose] > │ method0()                                                                    │

00:00:25 #965 [Verbose] > │                                                                              │

00:00:25 #966 [Verbose] > │                                                                              │

00:00:25 #967 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:25 #968 [Verbose] >

00:00:25 #969 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:25 #970 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:25 #971 [Verbose] > │ ## anti_derivative                                                           │

00:00:25 #972 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:25 #973 [Verbose] >

00:00:25 #974 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:25 #975 [Verbose] > inl anti_derivative dt v0 a t =

00:00:25 #976 [Verbose] >     v0 + integral' dt a 0 t

00:00:25 #977 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5304-0408-01736ca8515f\main.spi

00:00:25 #978 [Verbose] >

00:00:25 #979 [Verbose] > ╭─[ 229.82ms - stdout ]────────────────────────────────────────────────────────╮

00:00:25 #980 [Verbose] > │ ()                                                                           │

00:00:25 #981 [Verbose] > │                                                                              │

00:00:25 #982 [Verbose] > │                                                                              │

00:00:25 #983 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:25 #984 [Verbose] >

00:00:25 #985 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:25 #986 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:25 #987 [Verbose] > │ ## velocity_ft                                                               │

00:00:25 #988 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:25 #989 [Verbose] >

00:00:25 #990 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:25 #991 [Verbose] > type velocity_ft = mass -> velocity -> list (time -> force) -> (time ->

00:00:25 #992 [Verbose] > velocity)

00:00:25 #993 [Verbose] >

00:00:25 #994 [Verbose] > inl velocity_ft dt : velocity_ft =

00:00:25 #995 [Verbose] >     fun m v0 fs =>

00:00:25 #996 [Verbose] >         inl f_net t = fs |> listm.map (fun f => f t) |> listm'.sum

00:00:25 #997 [Verbose] >         inl a t = f_net t / m

00:00:25 #998 [Verbose] >         anti_derivative dt v0 a

00:00:25 #999 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5327-2747-205833cd9e6f\main.spi

00:00:25 #1000 [Verbose] >

00:00:25 #1001 [Verbose] > ╭─[ 235.99ms - stdout ]────────────────────────────────────────────────────────╮

00:00:25 #1002 [Verbose] > │ ()                                                                           │

00:00:25 #1003 [Verbose] > │                                                                              │

00:00:25 #1004 [Verbose] > │                                                                              │

00:00:25 #1005 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:25 #1006 [Verbose] >

00:00:25 #1007 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:25 #1008 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:25 #1009 [Verbose] > │ ## position_ft                                                               │

00:00:25 #1010 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:25 #1011 [Verbose] >

00:00:25 #1012 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:25 #1013 [Verbose] > type position_ft = mass -> position -> velocity -> list (time -> force) -> (time

00:00:25 #1014 [Verbose] > -> position)

00:00:25 #1015 [Verbose] >

00:00:25 #1016 [Verbose] > inl position_ft dt : position_ft =

00:00:25 #1017 [Verbose] >     fun m x0 v0 fs =>

00:00:25 #1018 [Verbose] >         velocity_ft dt m v0 fs

00:00:25 #1019 [Verbose] >         |> anti_derivative dt x0

00:00:25 #1020 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5351-5157-523860465084\main.spi

00:00:25 #1021 [Verbose] >

00:00:25 #1022 [Verbose] > ╭─[ 214.54ms - stdout ]────────────────────────────────────────────────────────╮

00:00:25 #1023 [Verbose] > │ ()                                                                           │

00:00:25 #1024 [Verbose] > │                                                                              │

00:00:25 #1025 [Verbose] > │                                                                              │

00:00:25 #1026 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:25 #1027 [Verbose] >

00:00:25 #1028 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:25 #1029 [Verbose] > // // test

00:00:25 #1030 [Verbose] >

00:00:25 #1031 [Verbose] > inl pedal_coast (t : time) : force =

00:00:25 #1032 [Verbose] >     inl t_cycle = 20

00:00:25 #1033 [Verbose] >     inl n_complete : i32 = t / t_cycle |> conv

00:00:25 #1034 [Verbose] >     inl remainder = t - conv n_complete * t_cycle

00:00:25 #1035 [Verbose] >     if remainder > 0 && remainder < 10

00:00:25 #1036 [Verbose] >     then 10

00:00:25 #1037 [Verbose] >     else 0

00:00:25 #1038 [Verbose] >

00:00:25 #1039 [Verbose] > inl x = am'.init_series -5 45 0.1

00:00:25 #1040 [Verbose] > inl y = x |> am.map pedal_coast

00:00:25 #1041 [Verbose] > "child pedaling then coasting", "time (s)", "", ;[[ "force on bike (N)", x, y ]]

00:00:26 #1042 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5373-7338-760224068e2c\main.spi

00:00:26 #1043 [Verbose] >

00:00:26 #1044 [Verbose] > ╭─[ 279.68ms - return value ]──────────────────────────────────────────────────╮

00:00:26 #1045 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:26 #1046 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:26 #1047 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:26 #1048 [Verbose] > │ stroke="none"/>                                                              │

00:00:26 #1049 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:26 #1050 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:26 #1051 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:26 #1052 [Verbose] > │ child pedaling then coasting                                                 │

00:00:26 #1053 [Verbose] > │ </text>                                                                      │

00:00:26 #1054 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

00:00:26 #1055 [Verbose] > │ y2="75"/>                                                                    │

00:00:26 #1056 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:26 #1057 [Verbose] > │ y2="75"/>                                                                    │

00:00:26 #1058 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

00:00:26 #1059 [Verbose] > │ y2="75"/>                                                                    │

00:00:26 #1060 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

00:00:26 #1061 [Verbose] > │ y2="75"/>                                                                    │

00:00:26 #1062 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1=...                   │

00:00:26 #1063 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:26 #1064 [Verbose] >

00:00:26 #1065 [Verbose] > ╭─[ 300.26ms - stdout ]────────────────────────────────────────────────────────╮

00:00:26 #1066 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:26 #1067 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:26 #1068 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:26 #1069 [Verbose] > │     let v2 : bool = v1 < 501                                                 │

00:00:26 #1070 [Verbose] > │     v2                                                                       │

00:00:26 #1071 [Verbose] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

00:00:26 #1072 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:26 #1073 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:26 #1074 [Verbose] > │     v3                                                                       │

00:00:26 #1075 [Verbose] > │ and method3 (v0 : (struct (string * (float []) * (float [])) [])) : (struct  │

00:00:26 #1076 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:26 #1077 [Verbose] > │     v0                                                                       │

00:00:26 #1078 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:26 #1079 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:26 #1080 [Verbose] > │     let v0 : (float []) = Array.zeroCreate<float> (501)                      │

00:00:26 #1081 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:26 #1082 [Verbose] > │     while method1(v1) do                                                     │

00:00:26 #1083 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:26 #1084 [Verbose] > │         let v4 : float = float v3                                            │

00:00:26 #1085 [Verbose] > │         let v5 : float = 0.1 * v4                                            │

00:00:26 #1086 [Verbose] > │         let v6 : float = -5.0 + v5                                           │

00:00:26 #1087 [Verbose] > │         v0.[int v3] <- v6                                                    │

00:00:26 #1088 [Verbose] > │         let v7 : int32 = v3 + 1                                              │

00:00:26 #1089 [Verbose] > │         v1.l0 <- v7                                                          │

00:00:26 #1090 [Verbose] > │         ()                                                                   │

00:00:26 #1091 [Verbose] > │     let v8 : int32 = v0.Length                                               │

00:00:26 #1092 [Verbose] > │     let v9 : (float []) = Array.zeroCreate<float> (v8)                       │

00:00:26 #1093 [Verbose] > │     let v10 : Mut0 = {l0 = 0} : Mut0                                         │

00:00:26 #1094 [Verbose] > │     while method2(v8, v10) do                                                │

00:00:26 #1095 [Verbose] > │         let v12 : int32 = v10.l0                                             │

00:00:26 #1096 [Verbose] > │         let v13 : float = v0.[int v12]                                       │

00:00:26 #1097 [Verbose] > │         let v14 : float = v13 / 20.0                                         │

00:00:26 #1098 [Verbose] > │         let v15 : int32 = int32 v14                                          │

00:00:26 #1099 [Verbose] > │         let v16 : float = float v15                                          │

00:00:26 #1100 [Verbose] > │         let v17 : float = v16 * 20.0                                         │

00:00:26 #1101 [Verbose] > │         let v18 : float = v13 - v17                                          │

00:00:26 #1102 [Verbose] > │         let v19 : bool = v18 > 0.0                                           │

00:00:26 #1103 [Verbose] > │         let v21 : bool =                                                     │

00:00:26 #1104 [Verbose] > │             if v19 then                                                      │

00:00:26 #1105 [Verbose] > │                 let v20 : bool = v18 < 10.0                                  │

00:00:26 #1106 [Verbose] > │                 v20                                                          │

00:00:26 #1107 [Verbose] > │             else                                                             │

00:00:26 #1108 [Verbose] > │                 false                                                        │

00:00:26 #1109 [Verbose] > │         let v22 : float =                                                    │

00:00:26 #1110 [Verbose] > │             if v21 then                                                      │

00:00:26 #1111 [Verbose] > │                 10.0                                                         │

00:00:26 #1112 [Verbose] > │             else                                                             │

00:00:26 #1113 [Verbose] > │                 0.0                                                          │

00:00:26 #1114 [Verbose] > │         v9.[int v12] <- v22                                                  │

00:00:26 #1115 [Verbose] > │         let v23 : int32 = v12 + 1                                            │

00:00:26 #1116 [Verbose] > │         v10.l0 <- v23                                                        │

00:00:26 #1117 [Verbose] > │         ()                                                                   │

00:00:26 #1118 [Verbose] > │     let v24 : string = "force on bike (N)"                                   │

00:00:26 #1119 [Verbose] > │     let v25 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:26 #1120 [Verbose] > │ (v24, v0, v9)|]                                                              │

00:00:26 #1121 [Verbose] > │     let v26 : (struct (string * (float []) * (float [])) []) = method3(v25)  │

00:00:26 #1122 [Verbose] > │     let v27 : string = "child pedaling then coasting"                        │

00:00:26 #1123 [Verbose] > │     let v28 : string = "time (s)"                                            │

00:00:26 #1124 [Verbose] > │     let v29 : string = ""                                                    │

00:00:26 #1125 [Verbose] > │     struct (v27, v28, v29, v26)                                              │

00:00:26 #1126 [Verbose] > │ method0()                                                                    │

00:00:26 #1127 [Verbose] > │                                                                              │

00:00:26 #1128 [Verbose] > │                                                                              │

00:00:26 #1129 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:26 #1130 [Verbose] >

00:00:26 #1131 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:26 #1132 [Verbose] > // // test

00:00:26 #1133 [Verbose] >

00:00:26 #1134 [Verbose] > inl x = am'.init_series -5 45 1

00:00:26 #1135 [Verbose] > inl y = x |> am.map (position_ft 0.1f64 20 0 0 [[ pedal_coast ]])

00:00:26 #1136 [Verbose] > "child pedaling then coasting", "time (s)", "", ;[[ "position of bike (m)", x, y

00:00:26 #1137 [Verbose] > ]]

00:00:26 #1138 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5407-0760-040b07a0c4b7\main.spi

00:00:26 #1139 [Verbose] >

00:00:26 #1140 [Verbose] > ╭─[ 740.67ms - return value ]──────────────────────────────────────────────────╮

00:00:26 #1141 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:26 #1142 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:26 #1143 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:26 #1144 [Verbose] > │ stroke="none"/>                                                              │

00:00:26 #1145 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:26 #1146 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:26 #1147 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:26 #1148 [Verbose] > │ child pedaling then coasting                                                 │

00:00:26 #1149 [Verbose] > │ </text>                                                                      │

00:00:26 #1150 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

00:00:26 #1151 [Verbose] > │ y2="75"/>                                                                    │

00:00:26 #1152 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:26 #1153 [Verbose] > │ y2="75"/>                                                                    │

00:00:26 #1154 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

00:00:26 #1155 [Verbose] > │ y2="75"/>                                                                    │

00:00:26 #1156 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

00:00:26 #1157 [Verbose] > │ y2="75"/>                                                                    │

00:00:26 #1158 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1=...                   │

00:00:26 #1159 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:26 #1160 [Verbose] >

00:00:26 #1161 [Verbose] > ╭─[ 755.35ms - stdout ]────────────────────────────────────────────────────────╮

00:00:26 #1162 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:26 #1163 [Verbose] > │ and UH0 =                                                                    │

00:00:26 #1164 [Verbose] > │     | UH0_0 of float * UH0                                                   │

00:00:26 #1165 [Verbose] > │     | UH0_1                                                                  │

00:00:26 #1166 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:26 #1167 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:26 #1168 [Verbose] > │     let v2 : bool = v1 < 51                                                  │

00:00:26 #1169 [Verbose] > │     v2                                                                       │

00:00:26 #1170 [Verbose] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

00:00:26 #1171 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:26 #1172 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:26 #1173 [Verbose] > │     v3                                                                       │

00:00:26 #1174 [Verbose] > │ and method3 (v0 : float, v1 : float) : UH0 =                                 │

00:00:26 #1175 [Verbose] > │     let v2 : bool = v1 < v0                                                  │

00:00:26 #1176 [Verbose] > │     if v2 then                                                               │

00:00:26 #1177 [Verbose] > │         let v3 : float = 0.1 * v1                                            │

00:00:26 #1178 [Verbose] > │         let v4 : float = 0.05 + v3                                           │

00:00:26 #1179 [Verbose] > │         let v5 : float = v1 + 1.0                                            │

00:00:27 #1180 [Verbose] > │         let v6 : UH0 = method3(v0, v5)                                       │

00:00:27 #1181 [Verbose] > │         UH0_0(v4, v6)                                                        │

00:00:27 #1182 [Verbose] > │     else                                                                     │

00:00:27 #1183 [Verbose] > │         UH0_1                                                                │

00:00:27 #1184 [Verbose] > │ and method5 (v0 : UH0, v1 : UH0) : UH0 =                                     │

00:00:27 #1185 [Verbose] > │     match v0 with                                                            │

00:00:27 #1186 [Verbose] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

00:00:27 #1187 [Verbose] > │         let v4 : UH0 = method5(v3, v1)                                       │

00:00:27 #1188 [Verbose] > │         let v5 : float = v2 / 20.0                                           │

00:00:27 #1189 [Verbose] > │         let v6 : int32 = int32 v5                                            │

00:00:27 #1190 [Verbose] > │         let v7 : float = float v6                                            │

00:00:27 #1191 [Verbose] > │         let v8 : float = v7 * 20.0                                           │

00:00:27 #1192 [Verbose] > │         let v9 : float = v2 - v8                                             │

00:00:27 #1193 [Verbose] > │         let v10 : bool = v9 > 0.0                                            │

00:00:27 #1194 [Verbose] > │         let v12 : bool =                                                     │

00:00:27 #1195 [Verbose] > │             if v10 then                                                      │

00:00:27 #1196 [Verbose] > │                 let v11 : bool = v9 < 10.0                                   │

00:00:27 #1197 [Verbose] > │                 v11                                                          │

00:00:27 #1198 [Verbose] > │             else                                                             │

00:00:27 #1199 [Verbose] > │                 false                                                        │

00:00:27 #1200 [Verbose] > │         let v13 : float =                                                    │

00:00:27 #1201 [Verbose] > │             if v12 then                                                      │

00:00:27 #1202 [Verbose] > │                 10.0                                                         │

00:00:27 #1203 [Verbose] > │             else                                                             │

00:00:27 #1204 [Verbose] > │                 0.0                                                          │

00:00:27 #1205 [Verbose] > │         let v14 : float = v13 / 20.0                                         │

00:00:27 #1206 [Verbose] > │         let v15 : float = 0.1 * v14                                          │

00:00:27 #1207 [Verbose] > │         UH0_0(v15, v4)                                                       │

00:00:27 #1208 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:27 #1209 [Verbose] > │         v1                                                                   │

00:00:27 #1210 [Verbose] > │ and method6 (v0 : UH0, v1 : float) : float =                                 │

00:00:27 #1211 [Verbose] > │     match v0 with                                                            │

00:00:27 #1212 [Verbose] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

00:00:27 #1213 [Verbose] > │         let v4 : float = v1 + v2                                             │

00:00:27 #1214 [Verbose] > │         method6(v3, v4)                                                      │

00:00:27 #1215 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:27 #1216 [Verbose] > │         v1                                                                   │

00:00:27 #1217 [Verbose] > │ and method4 (v0 : UH0, v1 : UH0) : UH0 =                                     │

00:00:27 #1218 [Verbose] > │     match v0 with                                                            │

00:00:27 #1219 [Verbose] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

00:00:27 #1220 [Verbose] > │         let v4 : UH0 = method4(v3, v1)                                       │

00:00:27 #1221 [Verbose] > │         let v5 : float = v2 - 0.05                                           │

00:00:27 #1222 [Verbose] > │         let v6 : float = v5 - 0.05                                           │

00:00:27 #1223 [Verbose] > │         let v7 : float = v6 / 0.1                                            │

00:00:27 #1224 [Verbose] > │         let v8 : float = v7 + 1.0                                            │

00:00:27 #1225 [Verbose] > │         let v9 : float = 0.0                                                 │

00:00:27 #1226 [Verbose] > │         let v10 : UH0 = method3(v8, v9)                                      │

00:00:27 #1227 [Verbose] > │         let v11 : UH0 = UH0_1                                                │

00:00:27 #1228 [Verbose] > │         let v12 : UH0 = method5(v10, v11)                                    │

00:00:27 #1229 [Verbose] > │         let v13 : float = 0.0                                                │

00:00:27 #1230 [Verbose] > │         let v14 : float = method6(v12, v13)                                  │

00:00:27 #1231 [Verbose] > │         let v15 : float = 0.1 * v14                                          │

00:00:27 #1232 [Verbose] > │         UH0_0(v15, v4)                                                       │

00:00:27 #1233 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:27 #1234 [Verbose] > │         v1                                                                   │

00:00:27 #1235 [Verbose] > │ and method7 (v0 : (struct (string * (float []) * (float [])) [])) : (struct  │

00:00:27 #1236 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:27 #1237 [Verbose] > │     v0                                                                       │

00:00:27 #1238 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:27 #1239 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:27 #1240 [Verbose] > │     let v0 : (float []) = Array.zeroCreate<float> (51)                       │

00:00:27 #1241 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:27 #1242 [Verbose] > │     while method1(v1) do                                                     │

00:00:27 #1243 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:27 #1244 [Verbose] > │         let v4 : float = float v3                                            │

00:00:27 #1245 [Verbose] > │         let v5 : float = -5.0 + v4                                           │

00:00:27 #1246 [Verbose] > │         v0.[int v3] <- v5                                                    │

00:00:27 #1247 [Verbose] > │         let v6 : int32 = v3 + 1                                              │

00:00:27 #1248 [Verbose] > │         v1.l0 <- v6                                                          │

00:00:27 #1249 [Verbose] > │         ()                                                                   │

00:00:27 #1250 [Verbose] > │     let v7 : int32 = v0.Length                                               │

00:00:27 #1251 [Verbose] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

00:00:27 #1252 [Verbose] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:27 #1253 [Verbose] > │     while method2(v7, v9) do                                                 │

00:00:27 #1254 [Verbose] > │         let v11 : int32 = v9.l0                                              │

00:00:27 #1255 [Verbose] > │         let v12 : float = v0.[int v11]                                       │

00:00:27 #1256 [Verbose] > │         let v13 : float = v12 - 0.05                                         │

00:00:27 #1257 [Verbose] > │         let v14 : float = v13 - 0.05                                         │

00:00:27 #1258 [Verbose] > │         let v15 : float = v14 / 0.1                                          │

00:00:27 #1259 [Verbose] > │         let v16 : float = v15 + 1.0                                          │

00:00:27 #1260 [Verbose] > │         let v17 : float = 0.0                                                │

00:00:27 #1261 [Verbose] > │         let v18 : UH0 = method3(v16, v17)                                    │

00:00:27 #1262 [Verbose] > │         let v19 : UH0 = UH0_1                                                │

00:00:27 #1263 [Verbose] > │         let v20 : UH0 = method4(v18, v19)                                    │

00:00:27 #1264 [Verbose] > │         let v21 : float = 0.0                                                │

00:00:27 #1265 [Verbose] > │         let v22 : float = method6(v20, v21)                                  │

00:00:27 #1266 [Verbose] > │         v8.[int v11] <- v22                                                  │

00:00:27 #1267 [Verbose] > │         let v23 : int32 = v11 + 1                                            │

00:00:27 #1268 [Verbose] > │         v9.l0 <- v23                                                         │

00:00:27 #1269 [Verbose] > │         ()                                                                   │

00:00:27 #1270 [Verbose] > │     let v24 : string = "position of bike (m)"                                │

00:00:27 #1271 [Verbose] > │     let v25 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:27 #1272 [Verbose] > │ (v24, v0, v8)|]                                                              │

00:00:27 #1273 [Verbose] > │     let v26 : (struct (string * (float []) * (float [])) []) = method7(v25)  │

00:00:27 #1274 [Verbose] > │     let v27 : string = "child pedaling then coasting"                        │

00:00:27 #1275 [Verbose] > │     let v28 : string = "time (s)"                                            │

00:00:27 #1276 [Verbose] > │     let v29 : string = ""                                                    │

00:00:27 #1277 [Verbose] > │     struct (v27, v28, v29, v26)                                              │

00:00:27 #1278 [Verbose] > │ method0()                                                                    │

00:00:27 #1279 [Verbose] > │                                                                              │

00:00:27 #1280 [Verbose] > │                                                                              │

00:00:27 #1281 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:27 #1282 [Verbose] >

00:00:27 #1283 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:27 #1284 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:27 #1285 [Verbose] > │ ## velocity_fv                                                               │

00:00:27 #1286 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:27 #1287 [Verbose] >

00:00:27 #1288 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:27 #1289 [Verbose] > inl newton_second_v m fs v0 =

00:00:27 #1290 [Verbose] >     fs |> listm.map (fun f => f v0) |> listm'.sum |> fun x => x / m

00:00:27 #1291 [Verbose] >

00:00:27 #1292 [Verbose] > inl update_velocity dt m fs v0 =

00:00:27 #1293 [Verbose] >     v0 + newton_second_v m fs v0 * dt

00:00:27 #1294 [Verbose] >

00:00:27 #1295 [Verbose] > inl velocity_fv dt m v0 fs t =

00:00:27 #1296 [Verbose] >     stream.iterate (update_velocity dt m fs) v0

00:00:27 #1297 [Verbose] >     |> stream.try_item (t / dt |> math.round |> abs)

00:00:27 #1298 [Verbose] >     |> optionm'.default_value 0

00:00:27 #1299 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5490-9038-935f5f739830\main.spi

00:00:27 #1300 [Verbose] >

00:00:27 #1301 [Verbose] > ╭─[ 237.75ms - stdout ]────────────────────────────────────────────────────────╮

00:00:27 #1302 [Verbose] > │ ()                                                                           │

00:00:27 #1303 [Verbose] > │                                                                              │

00:00:27 #1304 [Verbose] > │                                                                              │

00:00:27 #1305 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:27 #1306 [Verbose] >

00:00:27 #1307 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:27 #1308 [Verbose] > inl f_air drag rho area v =

00:00:27 #1309 [Verbose] >     -drag * rho * area * abs v * v / 2

00:00:27 #1310 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5514-1411-108e08d86e57\main.spi

00:00:27 #1311 [Verbose] >

00:00:27 #1312 [Verbose] > ╭─[ 236.39ms - stdout ]────────────────────────────────────────────────────────╮

00:00:27 #1313 [Verbose] > │ ()                                                                           │

00:00:27 #1314 [Verbose] > │                                                                              │

00:00:27 #1315 [Verbose] > │                                                                              │

00:00:27 #1316 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:27 #1317 [Verbose] >

00:00:27 #1318 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:27 #1319 [Verbose] > // // test

00:00:27 #1320 [Verbose] >

00:00:27 #1321 [Verbose] > inl x = am'.init_series 0 60 0.5

00:00:27 #1322 [Verbose] > inl y = x |> am.map (velocity_fv 1 70 0f64 [[ fun _ => 100; f_air 2 1.225 0.6

00:00:27 #1323 [Verbose] > ]])

00:00:27 #1324 [Verbose] > "bike velocity", "time (s)", "", ;[[ "velocity of bike (m/s)", x, y ]]

00:00:27 #1325 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5538-3824-37f2525576d6\main.spi

00:00:28 #1326 [Verbose] >

00:00:28 #1327 [Verbose] > ╭─[ 856.76ms - return value ]──────────────────────────────────────────────────╮

00:00:28 #1328 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:28 #1329 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:28 #1330 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:28 #1331 [Verbose] > │ stroke="none"/>                                                              │

00:00:28 #1332 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:28 #1333 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:28 #1334 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:28 #1335 [Verbose] > │ bike velocity                                                                │

00:00:28 #1336 [Verbose] > │ </text>                                                                      │

00:00:28 #1337 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="61" y1="424" x2="61" │

00:00:28 #1338 [Verbose] > │ y2="75"/>                                                                    │

00:00:28 #1339 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:28 #1340 [Verbose] > │ y2="75"/>                                                                    │

00:00:28 #1341 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="78" y1="424" x2="78" │

00:00:28 #1342 [Verbose] > │ y2="75"/>                                                                    │

00:00:28 #1343 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="86" y1="424" x2="86" │

00:00:28 #1344 [Verbose] > │ y2="75"/>                                                                    │

00:00:28 #1345 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="94" y1="424" x...    │

00:00:28 #1346 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:28 #1347 [Verbose] >

00:00:28 #1348 [Verbose] > ╭─[ 872.92ms - stdout ]────────────────────────────────────────────────────────╮

00:00:28 #1349 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:28 #1350 [Verbose] > │ and UH0 =                                                                    │

00:00:28 #1351 [Verbose] > │     | UH0_0 of float * (unit -> UH0)                                         │

00:00:28 #1352 [Verbose] > │     | UH0_1                                                                  │

00:00:28 #1353 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:28 #1354 [Verbose] > │     | US0_0                                                                  │

00:00:28 #1355 [Verbose] > │     | US0_1 of f1_0 : float                                                  │

00:00:28 #1356 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:28 #1357 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:28 #1358 [Verbose] > │     let v2 : bool = v1 < 121                                                 │

00:00:28 #1359 [Verbose] > │     v2                                                                       │

00:00:28 #1360 [Verbose] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

00:00:28 #1361 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:28 #1362 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:28 #1363 [Verbose] > │     v3                                                                       │

00:00:28 #1364 [Verbose] > │ and closure129 () () : UH0 =                                                 │

00:00:28 #1365 [Verbose] > │     let v0 : (unit -> UH0) = closure129()                                    │

00:00:28 #1366 [Verbose] > │     UH0_0(11.664236870396083, v0)                                            │

00:00:28 #1367 [Verbose] > │ and closure128 () () : UH0 =                                                 │

00:00:28 #1368 [Verbose] > │     let v0 : (unit -> UH0) = closure129()                                    │

00:00:28 #1369 [Verbose] > │     UH0_0(11.664236870396081, v0)                                            │

00:00:28 #1370 [Verbose] > │ and closure127 () () : UH0 =                                                 │

00:00:28 #1371 [Verbose] > │     let v0 : (unit -> UH0) = closure128()                                    │

00:00:28 #1372 [Verbose] > │     UH0_0(11.66423687039608, v0)                                             │

00:00:28 #1373 [Verbose] > │ and closure126 () () : UH0 =                                                 │

00:00:28 #1374 [Verbose] > │     let v0 : (unit -> UH0) = closure127()                                    │

00:00:28 #1375 [Verbose] > │     UH0_0(11.664236870396078, v0)                                            │

00:00:28 #1376 [Verbose] > │ and closure125 () () : UH0 =                                                 │

00:00:28 #1377 [Verbose] > │     let v0 : (unit -> UH0) = closure126()                                    │

00:00:28 #1378 [Verbose] > │     UH0_0(11.664236870396074, v0)                                            │

00:00:28 #1379 [Verbose] > │ and closure124 () () : UH0 =                                                 │

00:00:28 #1380 [Verbose] > │     let v0 : (unit -> UH0) = closure125()                                    │

00:00:28 #1381 [Verbose] > │     UH0_0(11.66423687039607, v0)                                             │

00:00:28 #1382 [Verbose] > │ and closure123 () () : UH0 =                                                 │

00:00:28 #1383 [Verbose] > │     let v0 : (unit -> UH0) = closure124()                                    │

00:00:28 #1384 [Verbose] > │     UH0_0(11.664236870396065, v0)                                            │

00:00:28 #1385 [Verbose] > │ and closure122 () () : UH0 =                                                 │

00:00:28 #1386 [Verbose] > │     let v0 : (unit -> UH0) = closure123()                                    │

00:00:28 #1387 [Verbose] > │     UH0_0(11.664236870396058, v0)                                            │

00:00:28 #1388 [Verbose] > │ and closure121 () () : UH0 =                                                 │

00:00:28 #1389 [Verbose] > │     let v0 : (unit -> UH0) = closure122()                                    │

00:00:28 #1390 [Verbose] > │     UH0_0(11.66423687039605, v0)                                             │

00:00:28 #1391 [Verbose] > │ and closure120 () () : UH0 =                                                 │

00:00:28 #1392 [Verbose] > │     let v0 : (unit -> UH0) = closure121()                                    │

00:00:28 #1393 [Verbose] > │     UH0_0(11.664236870396037, v0)                                            │

00:00:28 #1394 [Verbose] > │ and closure119 () () : UH0 =                                                 │

00:00:28 #1395 [Verbose] > │     let v0 : (unit -> UH0) = closure120()                                    │

00:00:28 #1396 [Verbose] > │     UH0_0(11.66423687039602, v0)                                             │

00:00:28 #1397 [Verbose] > │ and closure118 () () : UH0 =                                                 │

00:00:28 #1398 [Verbose] > │     let v0 : (unit -> UH0) = closure119()                                    │

00:00:28 #1399 [Verbose] > │     UH0_0(11.664236870396, v0)                                               │

00:00:28 #1400 [Verbose] > │ and closure117 () () : UH0 =                                                 │

00:00:28 #1401 [Verbose] > │     let v0 : (unit -> UH0) = closure118()                                    │

00:00:28 #1402 [Verbose] > │     UH0_0(11.664236870395971, v0)                                            │

00:00:28 #1403 [Verbose] > │ and closure116 () () : UH0 =                                                 │

00:00:28 #1404 [Verbose] > │     let v0 : (unit -> UH0) = closure117()                                    │

00:00:28 #1405 [Verbose] > │     UH0_0(11.664236870395934, v0)                                            │

00:00:28 #1406 [Verbose] > │ and closure115 () () : UH0 =                                                 │

00:00:28 #1407 [Verbose] > │     let v0 : (unit -> UH0) = closure116()                                    │

00:00:28 #1408 [Verbose] > │     UH0_0(11.664236870395884, v0)                                            │

00:00:28 #1409 [Verbose] > │ and closure114 () () : UH0 =                                                 │

00:00:28 #1410 [Verbose] > │     let v0 : (unit -> UH0) = closure115()                                    │

00:00:28 #1411 [Verbose] > │     UH0_0(11.664236870395818, v0)                                            │

00:00:28 #1412 [Verbose] > │ and closure113 () () : UH0 =                                                 │

00:00:28 #1413 [Verbose] > │     let v0 : (unit -> UH0) = closure114()                                    │

00:00:28 #1414 [Verbose] > │     UH0_0(11.664236870395731, v0)                                            │

00:00:28 #1415 [Verbose] > │ and closure112 () () : UH0 =                                                 │

00:00:28 #1416 [Verbose] > │     let v0 : (unit -> UH0) = closure113()                                    │

00:00:28 #1417 [Verbose] > │     UH0_0(11.664236870395616, v0)                                            │

00:00:28 #1418 [Verbose] > │ and closure111 () () : UH0 =                                                 │

00:00:28 #1419 [Verbose] > │     let v0 : (unit -> UH0) = closure112()                                    │

00:00:28 #1420 [Verbose] > │     UH0_0(11.664236870395463, v0)                                            │

00:00:28 #1421 [Verbose] > │ and closure110 () () : UH0 =                                                 │

00:00:28 #1422 [Verbose] > │     let v0 : (unit -> UH0) = closure111()                                    │

00:00:28 #1423 [Verbose] > │     UH0_0(11.66423687039526, v0)                                             │

00:00:28 #1424 [Verbose] > │ and closure109 () () : UH0 =                                                 │

00:00:28 #1425 [Verbose] > │     let v0 : (unit -> UH0) = closure110()                                    │

00:00:28 #1426 [Verbose] > │     UH0_0(11.664236870394992, v0)                                            │

00:00:28 #1427 [Verbose] > │ and closure108 () () : UH0 =                                                 │

00:00:28 #1428 [Verbose] > │     let v0 : (unit -> UH0) = closure109()                                    │

00:00:28 #1429 [Verbose] > │     UH0_0(11.664236870394637, v0)                                            │

00:00:28 #1430 [Verbose] > │ and closure107 () () : UH0 =                                                 │

00:00:28 #1431 [Verbose] > │     let v0 : (unit -> UH0) = closure108()                                    │

00:00:28 #1432 [Verbose] > │     UH0_0(11.664236870394168, v0)                                            │

00:00:28 #1433 [Verbose] > │ and closure106 () () : UH0 =                                                 │

00:00:28 #1434 [Verbose] > │     let v0 : (unit -> UH0) = closure107()                                    │

00:00:28 #1435 [Verbose] > │     UH0_0(11.664236870393546, v0)                                            │

00:00:28 #1436 [Verbose] > │ and closure105 () () : UH0 =                                                 │

00:00:28 #1437 [Verbose] > │     let v0 : (unit -> UH0) = closure106()                                    │

00:00:28 #1438 [Verbose] > │     UH0_0(11.664236870392722, v0)                                            │

00:00:28 #1439 [Verbose] > │ and closure104 () () : UH0 =                                                 │

00:00:28 #1440 [Verbose] > │     let v0 : (unit -> UH0) = closure105()                                    │

00:00:28 #1441 [Verbose] > │     UH0_0(11.664236870391631, v0)                                            │

00:00:28 #1442 [Verbose] > │ and closure103 () () : UH0 =                                                 │

00:00:28 #1443 [Verbose] > │     let v0 : (unit -> UH0) = closure104()                                    │

00:00:28 #1444 [Verbose] > │     UH0_0(11.664236870390187, v0)                                            │

00:00:28 #1445 [Verbose] > │ and closure102 () () : UH0 =                                                 │

00:00:28 #1446 [Verbose] > │     let v0 : (unit -> UH0) = closure103()                                    │

00:00:28 #1447 [Verbose] > │     UH0_0(11.664236870388274, v0)                                            │

00:00:28 #1448 [Verbose] > │ and closure101 () () : UH0 =                                                 │

00:00:28 #1449 [Verbose] > │     let v0 : (unit -> UH0) = closure102()                                    │

00:00:28 #1450 [Verbose] > │     UH0_0(11.66423687038574, v0)                                             │

00:00:28 #1451 [Verbose] > │ and closure100 () () : UH0 =                                                 │

00:00:28 #1452 [Verbose] > │     let v0 : (unit -> UH0) = closure101()                                    │

00:00:28 #1453 [Verbose] > │     UH0_0(11.664236870382384, v0)                                            │

00:00:28 #1454 [Verbose] > │ and closure99 () () : UH0 =                                                  │

00:00:28 #1455 [Verbose] > │     let v0 : (unit -> UH0) = closure100()                                    │

00:00:28 #1456 [Verbose] > │     UH0_0(11.664236870377938, v0)                                            │

00:00:28 #1457 [Verbose] > │ and closure98 () () : UH0 =                                                  │

00:00:28 #1458 [Verbose] > │     let v0 : (unit -> UH0) = closure99()                                     │

00:00:28 #1459 [Verbose] > │     UH0_0(11.66423687037205, v0)                                             │

00:00:28 #1460 [Verbose] > │ and closure97 () () : UH0 =                                                  │

00:00:28 #1461 [Verbose] > │     let v0 : (unit -> UH0) = closure98()                                     │

00:00:28 #1462 [Verbose] > │     UH0_0(11.664236870364254, v0)                                            │

00:00:28 #1463 [Verbose] > │ and closure96 () () : UH0 =                                                  │

00:00:28 #1464 [Verbose] > │     let v0 : (unit -> UH0) = closure97()                                     │

00:00:28 #1465 [Verbose] > │     UH0_0(11.664236870353927, v0)                                            │

00:00:28 #1466 [Verbose] > │ and closure95 () () : UH0 =                                                  │

00:00:28 #1467 [Verbose] > │     let v0 : (unit -> UH0) = closure96()                                     │

00:00:28 #1468 [Verbose] > │     UH0_0(11.664236870340249, v0)                                            │

00:00:28 #1469 [Verbose] > │ and closure94 () () : UH0 =                                                  │

00:00:28 #1470 [Verbose] > │     let v0 : (unit -> UH0) = closure95()                                     │

00:00:28 #1471 [Verbose] > │     UH0_0(11.664236870322135, v0)                                            │

00:00:28 #1472 [Verbose] > │ and closure93 () () : UH0 =                                                  │

00:00:28 #1473 [Verbose] > │     let v0 : (unit -> UH0) = closure94()                                     │

00:00:28 #1474 [Verbose] > │     UH0_0(11.664236870298145, v0)                                            │

00:00:28 #1475 [Verbose] > │ and closure92 () () : UH0 =                                                  │

00:00:28 #1476 [Verbose] > │     let v0 : (unit -> UH0) = closure93()                                     │

00:00:28 #1477 [Verbose] > │     UH0_0(11.664236870266372, v0)                                            │

00:00:28 #1478 [Verbose] > │ and closure91 () () : UH0 =                                                  │

00:00:28 #1479 [Verbose] > │     let v0 : (unit -> UH0) = closure92()                                     │

00:00:28 #1480 [Verbose] > │     UH0_0(11.664236870224292, v0)                                            │

00:00:28 #1481 [Verbose] > │ and closure90 () () : UH0 =                                                  │

00:00:28 #1482 [Verbose] > │     let v0 : (unit -> UH0) = closure91()                                     │

00:00:28 #1483 [Verbose] > │     UH0_0(11.66423687016856, v0)                                             │

00:00:28 #1484 [Verbose] > │ and closure89 () () : UH0 =                                                  │

00:00:28 #1485 [Verbose] > │     let v0 : (unit -> UH0) = closure90()                                     │

00:00:28 #1486 [Verbose] > │     UH0_0(11.664236870094747, v0)                                            │

00:00:28 #1487 [Verbose] > │ and closure88 () () : UH0 =                                                  │

00:00:28 #1488 [Verbose] > │     let v0 : (unit -> UH0) = closure89()                                     │

00:00:28 #1489 [Verbose] > │     UH0_0(11.664236869996989, v0)                                            │

00:00:28 #1490 [Verbose] > │ and closure87 () () : UH0 =                                                  │

00:00:28 #1491 [Verbose] > │     let v0 : (unit -> UH0) = closure88()                                     │

00:00:28 #1492 [Verbose] > │     UH0_0(11.664236869867516, v0)                                            │

00:00:28 #1493 [Verbose] > │ and closure86 () () : UH0 =                                                  │

00:00:28 #1494 [Verbose] > │     let v0 : (unit -> UH0) = closure87()                                     │

00:00:28 #1495 [Verbose] > │     UH0_0(11.66423686969604, v0)                                             │

00:00:28 #1496 [Verbose] > │ and closure85 () () : UH0 =                                                  │

00:00:28 #1497 [Verbose] > │     let v0 : (unit -> UH0) = closure86()                                     │

00:00:28 #1498 [Verbose] > │     UH0_0(11.664236869468937, v0)                                            │

00:00:28 #1499 [Verbose] > │ and closure84 () () : UH0 =                                                  │

00:00:28 #1500 [Verbose] > │     let v0 : (unit -> UH0) = closure85()                                     │

00:00:28 #1501 [Verbose] > │     UH0_0(11.664236869168157, v0)                                            │

00:00:28 #1502 [Verbose] > │ and closure83 () () : UH0 =                                                  │

00:00:28 #1503 [Verbose] > │     let v0 : (unit -> UH0) = closure84()                                     │

00:00:28 #1504 [Verbose] > │     UH0_0(11.6642368687698, v0)                                              │

00:00:28 #1505 [Verbose] > │ and closure82 () () : UH0 =                                                  │

00:00:28 #1506 [Verbose] > │     let v0 : (unit -> UH0) = closure83()                                     │

00:00:28 #1507 [Verbose] > │     UH0_0(11.664236868242211, v0)                                            │

00:00:28 #1508 [Verbose] > │ and closure81 () () : UH0 =                                                  │

00:00:28 #1509 [Verbose] > │     let v0 : (unit -> UH0) = closure82()                                     │

00:00:28 #1510 [Verbose] > │     UH0_0(11.664236867543465, v0)                                            │

00:00:28 #1511 [Verbose] > │ and closure80 () () : UH0 =                                                  │

00:00:28 #1512 [Verbose] > │     let v0 : (unit -> UH0) = closure81()                                     │

00:00:28 #1513 [Verbose] > │     UH0_0(11.664236866618037, v0)                                            │

00:00:28 #1514 [Verbose] > │ and closure79 () () : UH0 =                                                  │

00:00:28 #1515 [Verbose] > │     let v0 : (unit -> UH0) = closure80()                                     │

00:00:28 #1516 [Verbose] > │     UH0_0(11.664236865392386, v0)                                            │

00:00:28 #1517 [Verbose] > │ and closure78 () () : UH0 =                                                  │

00:00:28 #1518 [Verbose] > │     let v0 : (unit -> UH0) = closure79()                                     │

00:00:28 #1519 [Verbose] > │     UH0_0(11.664236863769117, v0)                                            │

00:00:28 #1520 [Verbose] > │ and closure77 () () : UH0 =                                                  │

00:00:28 #1521 [Verbose] > │     let v0 : (unit -> UH0) = closure78()                                     │

00:00:28 #1522 [Verbose] > │     UH0_0(11.664236861619237, v0)                                            │

00:00:28 #1523 [Verbose] > │ and closure76 () () : UH0 =                                                  │

00:00:28 #1524 [Verbose] > │     let v0 : (unit -> UH0) = closure77()                                     │

00:00:28 #1525 [Verbose] > │     UH0_0(11.664236858771906, v0)                                            │

00:00:28 #1526 [Verbose] > │ and closure75 () () : UH0 =                                                  │

00:00:28 #1527 [Verbose] > │     let v0 : (unit -> UH0) = closure76()                                     │

00:00:28 #1528 [Verbose] > │     UH0_0(11.66423685500086, v0)                                             │

00:00:28 #1529 [Verbose] > │ and closure74 () () : UH0 =                                                  │

00:00:28 #1530 [Verbose] > │     let v0 : (unit -> UH0) = closure75()                                     │

00:00:28 #1531 [Verbose] > │     UH0_0(11.664236850006436, v0)                                            │

00:00:28 #1532 [Verbose] > │ and closure73 () () : UH0 =                                                  │

00:00:28 #1533 [Verbose] > │     let v0 : (unit -> UH0) = closure74()                                     │

00:00:28 #1534 [Verbose] > │     UH0_0(11.664236843391752, v0)                                            │

00:00:28 #1535 [Verbose] > │ and closure72 () () : UH0 =                                                  │

00:00:28 #1536 [Verbose] > │     let v0 : (unit -> UH0) = closure73()                                     │

00:00:28 #1537 [Verbose] > │     UH0_0(11.664236834631172, v0)                                            │

00:00:28 #1538 [Verbose] > │ and closure71 () () : UH0 =                                                  │

00:00:28 #1539 [Verbose] > │     let v0 : (unit -> UH0) = closure72()                                     │

00:00:28 #1540 [Verbose] > │     UH0_0(11.66423682302854, v0)                                             │

00:00:28 #1541 [Verbose] > │ and closure70 () () : UH0 =                                                  │

00:00:28 #1542 [Verbose] > │     let v0 : (unit -> UH0) = closure71()                                     │

00:00:28 #1543 [Verbose] > │     UH0_0(11.664236807661855, v0)                                            │

00:00:28 #1544 [Verbose] > │ and closure69 () () : UH0 =                                                  │

00:00:28 #1545 [Verbose] > │     let v0 : (unit -> UH0) = closure70()                                     │

00:00:28 #1546 [Verbose] > │     UH0_0(11.664236787310005, v0)                                            │

00:00:28 #1547 [Verbose] > │ and closure68 () () : UH0 =                                                  │

00:00:28 #1548 [Verbose] > │     let v0 : (unit -> UH0) = closure69()                                     │

00:00:28 #1549 [Verbose] > │     UH0_0(11.664236760355733, v0)                                            │

00:00:28 #1550 [Verbose] > │ and closure67 () () : UH0 =                                                  │

00:00:28 #1551 [Verbose] > │     let v0 : (unit -> UH0) = closure68()                                     │

00:00:28 #1552 [Verbose] > │     UH0_0(11.664236724657123, v0)                                            │

00:00:28 #1553 [Verbose] > │ and closure66 () () : UH0 =                                                  │

00:00:28 #1554 [Verbose] > │     let v0 : (unit -> UH0) = closure67()                                     │

00:00:28 #1555 [Verbose] > │     UH0_0(11.66423667737739, v0)                                             │

00:00:28 #1556 [Verbose] > │ and closure65 () () : UH0 =                                                  │

00:00:28 #1557 [Verbose] > │     let v0 : (unit -> UH0) = closure66()                                     │

00:00:28 #1558 [Verbose] > │     UH0_0(11.664236614759462, v0)                                            │

00:00:28 #1559 [Verbose] > │ and closure64 () () : UH0 =                                                  │

00:00:28 #1560 [Verbose] > │     let v0 : (unit -> UH0) = closure65()                                     │

00:00:28 #1561 [Verbose] > │     UH0_0(11.664236531827415, v0)                                            │

00:00:28 #1562 [Verbose] > │ and closure63 () () : UH0 =                                                  │

00:00:28 #1563 [Verbose] > │     let v0 : (unit -> UH0) = closure64()                                     │

00:00:28 #1564 [Verbose] > │     UH0_0(11.664236421991067, v0)                                            │

00:00:28 #1565 [Verbose] > │ and closure62 () () : UH0 =                                                  │

00:00:28 #1566 [Verbose] > │     let v0 : (unit -> UH0) = closure63()                                     │

00:00:28 #1567 [Verbose] > │     UH0_0(11.664236276522294, v0)                                            │

00:00:28 #1568 [Verbose] > │ and closure61 () () : UH0 =                                                  │

00:00:28 #1569 [Verbose] > │     let v0 : (unit -> UH0) = closure62()                                     │

00:00:28 #1570 [Verbose] > │     UH0_0(11.664236083861448, v0)                                            │

00:00:28 #1571 [Verbose] > │ and closure60 () () : UH0 =                                                  │

00:00:28 #1572 [Verbose] > │     let v0 : (unit -> UH0) = closure61()                                     │

00:00:28 #1573 [Verbose] > │     UH0_0(11.664235828698772, v0)                                            │

00:00:28 #1574 [Verbose] > │ and closure59 () () : UH0 =                                                  │

00:00:28 #1575 [Verbose] > │     let v0 : (unit -> UH0) = closure60()                                     │

00:00:28 #1576 [Verbose] > │     UH0_0(11.664235490757811, v0)                                            │

00:00:28 #1577 [Verbose] > │ and closure58 () () : UH0 =                                                  │

00:00:28 #1578 [Verbose] > │     let v0 : (unit -> UH0) = closure59()                                     │

00:00:28 #1579 [Verbose] > │     UH0_0(11.664235043184158, v0)                                            │

00:00:28 #1580 [Verbose] > │ and closure57 () () : UH0 =                                                  │

00:00:28 #1581 [Verbose] > │     let v0 : (unit -> UH0) = closure58()                                     │

00:00:28 #1582 [Verbose] > │     UH0_0(11.66423445041147, v0)                                             │

00:00:28 #1583 [Verbose] > │ and closure56 () () : UH0 =                                                  │

00:00:28 #1584 [Verbose] > │     let v0 : (unit -> UH0) = closure57()                                     │

00:00:28 #1585 [Verbose] > │     UH0_0(11.664233665335203, v0)                                            │

00:00:28 #1586 [Verbose] > │ and closure55 () () : UH0 =                                                  │

00:00:28 #1587 [Verbose] > │     let v0 : (unit -> UH0) = closure56()                                     │

00:00:28 #1588 [Verbose] > │     UH0_0(11.664232625569467, v0)                                            │

00:00:28 #1589 [Verbose] > │ and closure54 () () : UH0 =                                                  │

00:00:28 #1590 [Verbose] > │     let v0 : (unit -> UH0) = closure55()                                     │

00:00:28 #1591 [Verbose] > │     UH0_0(11.664231248489562, v0)                                            │

00:00:28 #1592 [Verbose] > │ and closure53 () () : UH0 =                                                  │

00:00:28 #1593 [Verbose] > │     let v0 : (unit -> UH0) = closure54()                                     │

00:00:28 #1594 [Verbose] > │     UH0_0(11.664229424666262, v0)                                            │

00:00:28 #1595 [Verbose] > │ and closure52 () () : UH0 =                                                  │

00:00:28 #1596 [Verbose] > │     let v0 : (unit -> UH0) = closure53()                                     │

00:00:28 #1597 [Verbose] > │     UH0_0(11.66422700917009, v0)                                             │

00:00:28 #1598 [Verbose] > │ and closure51 () () : UH0 =                                                  │

00:00:28 #1599 [Verbose] > │     let v0 : (unit -> UH0) = closure52()                                     │

00:00:28 #1600 [Verbose] > │     UH0_0(11.664223810054642, v0)                                            │

00:00:28 #1601 [Verbose] > │ and closure50 () () : UH0 =                                                  │

00:00:28 #1602 [Verbose] > │     let v0 : (unit -> UH0) = closure51()                                     │

00:00:28 #1603 [Verbose] > │     UH0_0(11.664219573103773, v0)                                            │

00:00:28 #1604 [Verbose] > │ and closure49 () () : UH0 =                                                  │

00:00:28 #1605 [Verbose] > │     let v0 : (unit -> UH0) = closure50()                                     │

00:00:28 #1606 [Verbose] > │     UH0_0(11.6642139616307, v0)                                              │

00:00:28 #1607 [Verbose] > │ and closure48 () () : UH0 =                                                  │

00:00:28 #1608 [Verbose] > │     let v0 : (unit -> UH0) = closure49()                                     │

00:00:28 #1609 [Verbose] > │     UH0_0(11.664206529723813, v0)                                            │

00:00:28 #1610 [Verbose] > │ and closure47 () () : UH0 =                                                  │

00:00:28 #1611 [Verbose] > │     let v0 : (unit -> UH0) = closure48()                                     │

00:00:28 #1612 [Verbose] > │     UH0_0(11.664196686813408, v0)                                            │

00:00:28 #1613 [Verbose] > │ and closure46 () () : UH0 =                                                  │

00:00:28 #1614 [Verbose] > │     let v0 : (unit -> UH0) = closure47()                                     │

00:00:28 #1615 [Verbose] > │     UH0_0(11.664183650743945, v0)                                            │

00:00:28 #1616 [Verbose] > │ and closure45 () () : UH0 =                                                  │

00:00:28 #1617 [Verbose] > │     let v0 : (unit -> UH0) = closure46()                                     │

00:00:28 #1618 [Verbose] > │     UH0_0(11.664166385623318, v0)                                            │

00:00:28 #1619 [Verbose] > │ and closure44 () () : UH0 =                                                  │

00:00:28 #1620 [Verbose] > │     let v0 : (unit -> UH0) = closure45()                                     │

00:00:28 #1621 [Verbose] > │     UH0_0(11.664143519511356, v0)                                            │

00:00:28 #1622 [Verbose] > │ and closure43 () () : UH0 =                                                  │

00:00:28 #1623 [Verbose] > │     let v0 : (unit -> UH0) = closure44()                                     │

00:00:28 #1624 [Verbose] > │     UH0_0(11.664113235408447, v0)                                            │

00:00:28 #1625 [Verbose] > │ and closure42 () () : UH0 =                                                  │

00:00:28 #1626 [Verbose] > │     let v0 : (unit -> UH0) = closure43()                                     │

00:00:28 #1627 [Verbose] > │     UH0_0(11.66407312688485, v0)                                             │

00:00:28 #1628 [Verbose] > │ and closure41 () () : UH0 =                                                  │

00:00:28 #1629 [Verbose] > │     let v0 : (unit -> UH0) = closure42()                                     │

00:00:28 #1630 [Verbose] > │     UH0_0(11.664020006883758, v0)                                            │

00:00:28 #1631 [Verbose] > │ and closure40 () () : UH0 =                                                  │

00:00:28 #1632 [Verbose] > │     let v0 : (unit -> UH0) = closure41()                                     │

00:00:28 #1633 [Verbose] > │     UH0_0(11.663949654514292, v0)                                            │

00:00:28 #1634 [Verbose] > │ and closure39 () () : UH0 =                                                  │

00:00:28 #1635 [Verbose] > │     let v0 : (unit -> UH0) = closure40()                                     │

00:00:28 #1636 [Verbose] > │     UH0_0(11.663856479730171, v0)                                            │

00:00:28 #1637 [Verbose] > │ and closure38 () () : UH0 =                                                  │

00:00:28 #1638 [Verbose] > │     let v0 : (unit -> UH0) = closure39()                                     │

00:00:28 #1639 [Verbose] > │     UH0_0(11.663733079277343, v0)                                            │

00:00:28 #1640 [Verbose] > │ and closure37 () () : UH0 =                                                  │

00:00:28 #1641 [Verbose] > │     let v0 : (unit -> UH0) = closure38()                                     │

00:00:28 #1642 [Verbose] > │     UH0_0(11.663569648675777, v0)                                            │

00:00:28 #1643 [Verbose] > │ and closure36 () () : UH0 =                                                  │

00:00:28 #1644 [Verbose] > │     let v0 : (unit -> UH0) = closure37()                                     │

00:00:28 #1645 [Verbose] > │     UH0_0(11.663353203599439, v0)                                            │

00:00:28 #1646 [Verbose] > │ and closure35 () () : UH0 =                                                  │

00:00:28 #1647 [Verbose] > │     let v0 : (unit -> UH0) = closure36()                                     │

00:00:28 #1648 [Verbose] > │     UH0_0(11.663066548940721, v0)                                            │

00:00:28 #1649 [Verbose] > │ and closure34 () () : UH0 =                                                  │

00:00:28 #1650 [Verbose] > │     let v0 : (unit -> UH0) = closure35()                                     │

00:00:28 #1651 [Verbose] > │     UH0_0(11.662686913915445, v0)                                            │

00:00:28 #1652 [Verbose] > │ and closure33 () () : UH0 =                                                  │

00:00:28 #1653 [Verbose] > │     let v0 : (unit -> UH0) = closure34()                                     │

00:00:28 #1654 [Verbose] > │     UH0_0(11.662184145236864, v0)                                            │

00:00:28 #1655 [Verbose] > │ and closure32 () () : UH0 =                                                  │

00:00:28 #1656 [Verbose] > │     let v0 : (unit -> UH0) = closure33()                                     │

00:00:28 #1657 [Verbose] > │     UH0_0(11.661518315638029, v0)                                            │

00:00:28 #1658 [Verbose] > │ and closure31 () () : UH0 =                                                  │

00:00:28 #1659 [Verbose] > │     let v0 : (unit -> UH0) = closure32()                                     │

00:00:28 #1660 [Verbose] > │     UH0_0(11.66063655920926, v0)                                             │

00:00:28 #1661 [Verbose] > │ and closure30 () () : UH0 =                                                  │

00:00:28 #1662 [Verbose] > │     let v0 : (unit -> UH0) = closure31()                                     │

00:00:28 #1663 [Verbose] > │     UH0_0(11.659468884709733, v0)                                            │

00:00:28 #1664 [Verbose] > │ and closure29 () () : UH0 =                                                  │

00:00:28 #1665 [Verbose] > │     let v0 : (unit -> UH0) = closure30()                                     │

00:00:28 #1666 [Verbose] > │     UH0_0(11.657922638782631, v0)                                            │

00:00:28 #1667 [Verbose] > │ and closure28 () () : UH0 =                                                  │

00:00:28 #1668 [Verbose] > │     let v0 : (unit -> UH0) = closure29()                                     │

00:00:28 #1669 [Verbose] > │     UH0_0(11.655875187195818, v0)                                            │

00:00:28 #1670 [Verbose] > │ and closure27 () () : UH0 =                                                  │

00:00:28 #1671 [Verbose] > │     let v0 : (unit -> UH0) = closure28()                                     │

00:00:28 #1672 [Verbose] > │     UH0_0(11.653164246713697, v0)                                            │

00:00:28 #1673 [Verbose] > │ and closure26 () () : UH0 =                                                  │

00:00:28 #1674 [Verbose] > │     let v0 : (unit -> UH0) = closure27()                                     │

00:00:28 #1675 [Verbose] > │     UH0_0(11.64957512416459, v0)                                             │

00:00:28 #1676 [Verbose] > │ and closure25 () () : UH0 =                                                  │

00:00:28 #1677 [Verbose] > │     let v0 : (unit -> UH0) = closure26()                                     │

00:00:28 #1678 [Verbose] > │     UH0_0(11.644823892116417, v0)                                            │

00:00:28 #1679 [Verbose] > │ and closure24 () () : UH0 =                                                  │

00:00:28 #1680 [Verbose] > │     let v0 : (unit -> UH0) = closure25()                                     │

00:00:28 #1681 [Verbose] > │     UH0_0(11.63853524018339, v0)                                             │

00:00:28 #1682 [Verbose] > │ and closure23 () () : UH0 =                                                  │

00:00:28 #1683 [Verbose] > │     let v0 : (unit -> UH0) = closure24()                                     │

00:00:28 #1684 [Verbose] > │     UH0_0(11.630213374558416, v0)                                            │

00:00:28 #1685 [Verbose] > │ and closure22 () () : UH0 =                                                  │

00:00:28 #1686 [Verbose] > │     let v0 : (unit -> UH0) = closure23()                                     │

00:00:28 #1687 [Verbose] > │     UH0_0(11.619203884549703, v0)                                            │

00:00:28 #1688 [Verbose] > │ and closure21 () () : UH0 =                                                  │

00:00:28 #1689 [Verbose] > │     let v0 : (unit -> UH0) = closure22()                                     │

00:00:28 #1690 [Verbose] > │     UH0_0(11.604643948207235, v0)                                            │

00:00:28 #1691 [Verbose] > │ and closure20 () () : UH0 =                                                  │

00:00:28 #1692 [Verbose] > │     let v0 : (unit -> UH0) = closure21()                                     │

00:00:28 #1693 [Verbose] > │     UH0_0(11.585397618384544, v0)                                            │

00:00:28 #1694 [Verbose] > │ and closure19 () () : UH0 =                                                  │

00:00:28 #1695 [Verbose] > │     let v0 : (unit -> UH0) = closure20()                                     │

00:00:28 #1696 [Verbose] > │     UH0_0(11.559972254267073, v0)                                            │

00:00:28 #1697 [Verbose] > │ and closure18 () () : UH0 =                                                  │

00:00:28 #1698 [Verbose] > │     let v0 : (unit -> UH0) = closure19()                                     │

00:00:28 #1699 [Verbose] > │     UH0_0(11.526411536153837, v0)                                            │

00:00:28 #1700 [Verbose] > │ and closure17 () () : UH0 =                                                  │

00:00:28 #1701 [Verbose] > │     let v0 : (unit -> UH0) = closure18()                                     │

00:00:28 #1702 [Verbose] > │     UH0_0(11.48216011776808, v0)                                             │

00:00:28 #1703 [Verbose] > │ and closure16 () () : UH0 =                                                  │

00:00:28 #1704 [Verbose] > │     let v0 : (unit -> UH0) = closure17()                                     │

00:00:28 #1705 [Verbose] > │     UH0_0(11.42389519391233, v0)                                             │

00:00:28 #1706 [Verbose] > │ and closure15 () () : UH0 =                                                  │

00:00:28 #1707 [Verbose] > │     let v0 : (unit -> UH0) = closure16()                                     │

00:00:28 #1708 [Verbose] > │     UH0_0(11.347321723441393, v0)                                            │

00:00:28 #1709 [Verbose] > │ and closure14 () () : UH0 =                                                  │

00:00:28 #1710 [Verbose] > │     let v0 : (unit -> UH0) = closure15()                                     │

00:00:28 #1711 [Verbose] > │     UH0_0(11.246931775734161, v0)                                            │

00:00:28 #1712 [Verbose] > │ and closure13 () () : UH0 =                                                  │

00:00:28 #1713 [Verbose] > │     let v0 : (unit -> UH0) = closure14()                                     │

00:00:28 #1714 [Verbose] > │     UH0_0(11.115736011467376, v0)                                            │

00:00:28 #1715 [Verbose] > │ and closure12 () () : UH0 =                                                  │

00:00:28 #1716 [Verbose] > │     let v0 : (unit -> UH0) = closure13()                                     │

00:00:28 #1717 [Verbose] > │     UH0_0(10.94498876251829, v0)                                             │

00:00:28 #1718 [Verbose] > │ and closure11 () () : UH0 =                                                  │

00:00:28 #1719 [Verbose] > │     let v0 : (unit -> UH0) = closure12()                                     │

00:00:28 #1720 [Verbose] > │     UH0_0(10.72394989903564, v0)                                             │

00:00:28 #1721 [Verbose] > │ and closure10 () () : UH0 =                                                  │

00:00:28 #1722 [Verbose] > │     let v0 : (unit -> UH0) = closure11()                                     │

00:00:28 #1723 [Verbose] > │     UH0_0(10.439758275369812, v0)                                            │

00:00:28 #1724 [Verbose] > │ and closure9 () () : UH0 =                                                   │

00:00:28 #1725 [Verbose] > │     let v0 : (unit -> UH0) = closure10()                                     │

00:00:28 #1726 [Verbose] > │     UH0_0(10.077531599826058, v0)                                            │

00:00:28 #1727 [Verbose] > │ and closure8 () () : UH0 =                                                   │

00:00:28 #1728 [Verbose] > │     let v0 : (unit -> UH0) = closure9()                                      │

00:00:28 #1729 [Verbose] > │     UH0_0(9.62084761372258, v0)                                              │

00:00:28 #1730 [Verbose] > │ and closure7 () () : UH0 =                                                   │

00:00:28 #1731 [Verbose] > │     let v0 : (unit -> UH0) = closure8()                                      │

00:00:28 #1732 [Verbose] > │     UH0_0(9.052781056066443, v0)                                             │

00:00:28 #1733 [Verbose] > │ and closure6 () () : UH0 =                                                   │

00:00:28 #1734 [Verbose] > │     let v0 : (unit -> UH0) = closure7()                                      │

00:00:28 #1735 [Verbose] > │     UH0_0(8.357635347880503, v0)                                             │

00:00:28 #1736 [Verbose] > │ and closure5 () () : UH0 =                                                   │

00:00:28 #1737 [Verbose] > │     let v0 : (unit -> UH0) = closure6()                                      │

00:00:28 #1738 [Verbose] > │     UH0_0(7.523376447621674, v0)                                             │

00:00:28 #1739 [Verbose] > │ and closure4 () () : UH0 =                                                   │

00:00:28 #1740 [Verbose] > │     let v0 : (unit -> UH0) = closure5()                                      │

00:00:28 #1741 [Verbose] > │     UH0_0(6.544529054818572, v0)                                             │

00:00:28 #1742 [Verbose] > │ and closure3 () () : UH0 =                                                   │

00:00:28 #1743 [Verbose] > │     let v0 : (unit -> UH0) = closure4()                                      │

00:00:28 #1744 [Verbose] > │     UH0_0(5.424976512996006, v0)                                             │

00:00:28 #1745 [Verbose] > │ and closure2 () () : UH0 =                                                   │

00:00:28 #1746 [Verbose] > │     let v0 : (unit -> UH0) = closure3()                                      │

00:00:28 #1747 [Verbose] > │     UH0_0(4.179852321428571, v0)                                             │

00:00:28 #1748 [Verbose] > │ and closure1 () () : UH0 =                                                   │

00:00:28 #1749 [Verbose] > │     let v0 : (unit -> UH0) = closure2()                                      │

00:00:28 #1750 [Verbose] > │     UH0_0(2.835714285714286, v0)                                             │

00:00:28 #1751 [Verbose] > │ and closure0 () () : UH0 =                                                   │

00:00:28 #1752 [Verbose] > │     let v0 : (unit -> UH0) = closure1()                                      │

00:00:28 #1753 [Verbose] > │     UH0_0(1.4285714285714286, v0)                                            │

00:00:28 #1754 [Verbose] > │ and method3 (v0 : float, v1 : UH0) : US0 =                                   │

00:00:28 #1755 [Verbose] > │     match v1 with                                                            │

00:00:28 #1756 [Verbose] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

00:00:28 #1757 [Verbose] > │         let v4 : bool = v0 <= 0.0                                            │

00:00:28 #1758 [Verbose] > │         if v4 then                                                           │

00:00:28 #1759 [Verbose] > │             US0_1(v2)                                                        │

00:00:28 #1760 [Verbose] > │         else                                                                 │

00:00:28 #1761 [Verbose] > │             let v6 : float = v0 - 1.0                                        │

00:00:28 #1762 [Verbose] > │             let v7 : UH0 = v3 ()                                             │

00:00:28 #1763 [Verbose] > │             method3(v6, v7)                                                  │

00:00:28 #1764 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:28 #1765 [Verbose] > │         US0_0                                                                │

00:00:28 #1766 [Verbose] > │ and method4 (v0 : (struct (string * (float []) * (float [])) [])) : (struct  │

00:00:28 #1767 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:28 #1768 [Verbose] > │     v0                                                                       │

00:00:28 #1769 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:28 #1770 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:28 #1771 [Verbose] > │     let v0 : (float []) = Array.zeroCreate<float> (121)                      │

00:00:28 #1772 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:28 #1773 [Verbose] > │     while method1(v1) do                                                     │

00:00:28 #1774 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:28 #1775 [Verbose] > │         let v4 : float = float v3                                            │

00:00:28 #1776 [Verbose] > │         let v5 : float = 0.5 * v4                                            │

00:00:28 #1777 [Verbose] > │         v0.[int v3] <- v5                                                    │

00:00:28 #1778 [Verbose] > │         let v6 : int32 = v3 + 1                                              │

00:00:28 #1779 [Verbose] > │         v1.l0 <- v6                                                          │

00:00:28 #1780 [Verbose] > │         ()                                                                   │

00:00:28 #1781 [Verbose] > │     let v7 : int32 = v0.Length                                               │

00:00:28 #1782 [Verbose] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

00:00:28 #1783 [Verbose] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:28 #1784 [Verbose] > │     while method2(v7, v9) do                                                 │

00:00:28 #1785 [Verbose] > │         let v11 : int32 = v9.l0                                              │

00:00:28 #1786 [Verbose] > │         let v12 : float = v0.[int v11]                                       │

00:00:28 #1787 [Verbose] > │         let v13 : float = round v12                                          │

00:00:28 #1788 [Verbose] > │         let v14 : float =  -v13                                              │

00:00:28 #1789 [Verbose] > │         let v15 : bool = v13 >= v14                                          │

00:00:28 #1790 [Verbose] > │         let v16 : float =                                                    │

00:00:28 #1791 [Verbose] > │             if v15 then                                                      │

00:00:28 #1792 [Verbose] > │                 v13                                                          │

00:00:28 #1793 [Verbose] > │             else                                                             │

00:00:28 #1794 [Verbose] > │                 v14                                                          │

00:00:28 #1795 [Verbose] > │         let v17 : float = 0.0                                                │

00:00:28 #1796 [Verbose] > │         let v18 : (unit -> UH0) = closure0()                                 │

00:00:28 #1797 [Verbose] > │         let v19 : UH0 = UH0_0(v17, v18)                                      │

00:00:28 #1798 [Verbose] > │         let v20 : US0 = method3(v16, v19)                                    │

00:00:28 #1799 [Verbose] > │         let v23 : float =                                                    │

00:00:28 #1800 [Verbose] > │             match v20 with                                                   │

00:00:28 #1801 [Verbose] > │             | US0_0 -> (* None *)                                            │

00:00:28 #1802 [Verbose] > │                 0.0                                                          │

00:00:28 #1803 [Verbose] > │             | US0_1(v21) -> (* Some *)                                       │

00:00:28 #1804 [Verbose] > │                 v21                                                          │

00:00:28 #1805 [Verbose] > │         v8.[int v11] <- v23                                                  │

00:00:28 #1806 [Verbose] > │         let v24 : int32 = v11 + 1                                            │

00:00:28 #1807 [Verbose] > │         v9.l0 <- v24                                                         │

00:00:28 #1808 [Verbose] > │         ()                                                                   │

00:00:28 #1809 [Verbose] > │     let v25 : string = "velocity of bike (m/s)"                              │

00:00:28 #1810 [Verbose] > │     let v26 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:28 #1811 [Verbose] > │ (v25, v0, v8)|]                                                              │

00:00:28 #1812 [Verbose] > │     let v27 : (struct (string * (float []) * (float [])) []) = method4(v26)  │

00:00:28 #1813 [Verbose] > │     let v28 : string = "bike velocity"                                       │

00:00:28 #1814 [Verbose] > │     let v29 : string = "time (s)"                                            │

00:00:28 #1815 [Verbose] > │     let v30 : string = ""                                                    │

00:00:28 #1816 [Verbose] > │     struct (v28, v29, v30, v27)                                              │

00:00:28 #1817 [Verbose] > │ method0()                                                                    │

00:00:28 #1818 [Verbose] > │                                                                              │

00:00:28 #1819 [Verbose] > │                                                                              │

00:00:28 #1820 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:28 #1821 [Verbose] >

00:00:28 #1822 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:28 #1823 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:28 #1824 [Verbose] > │ ## velocity_ftv                                                              │

00:00:28 #1825 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:28 #1826 [Verbose] >

00:00:28 #1827 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:28 #1828 [Verbose] > inl newton_second_tv m fs (t, v0) =

00:00:28 #1829 [Verbose] >     inl f_net = fs |> listm.map (fun f => f (t, v0)) |> listm'.sum

00:00:28 #1830 [Verbose] >     inl acc = f_net / m

00:00:28 #1831 [Verbose] >     1, acc

00:00:28 #1832 [Verbose] >

00:00:28 #1833 [Verbose] > inl update_tv dt m fs (t, v0) =

00:00:28 #1834 [Verbose] >     inl dtdt, dvdt = newton_second_tv m fs (t, v0)

00:00:28 #1835 [Verbose] >     t + dtdt * dt, v0 + dvdt * dt

00:00:28 #1836 [Verbose] >

00:00:28 #1837 [Verbose] > inl velocity_ftv dt m tv0 fs t =

00:00:28 #1838 [Verbose] >     stream.iterate (join update_tv dt m fs) tv0

00:00:28 #1839 [Verbose] >     |> stream.try_item (t / dt |> math.round |> abs)

00:00:28 #1840 [Verbose] >     |> optionm.map snd

00:00:28 #1841 [Verbose] >     |> optionm'.default_value 0

00:00:28 #1842 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5655-5513-5f69a07ace95\main.spi

00:00:28 #1843 [Verbose] >

00:00:28 #1844 [Verbose] > ╭─[ 194.65ms - stdout ]────────────────────────────────────────────────────────╮

00:00:28 #1845 [Verbose] > │ ()                                                                           │

00:00:28 #1846 [Verbose] > │                                                                              │

00:00:28 #1847 [Verbose] > │                                                                              │

00:00:28 #1848 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:28 #1849 [Verbose] >

00:00:28 #1850 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:28 #1851 [Verbose] > // // test

00:00:28 #1852 [Verbose] >

00:00:28 #1853 [Verbose] > inl x = am'.init_series 0 100 0.1

00:00:28 #1854 [Verbose] > inl y =

00:00:28 #1855 [Verbose] >     x

00:00:28 #1856 [Verbose] >     |> am.map (

00:00:28 #1857 [Verbose] >         velocity_ftv 0.1 20 (dyn (0, 0)) [[ fun (t, _) => pedal_coast t; fun (_,

00:00:28 #1858 [Verbose] > v) => f_air 2 1.225 0.5 v ]]

00:00:28 #1859 [Verbose] >     )

00:00:28 #1860 [Verbose] > "pedaling and coasting with air", "time (s)", "", ;[[ "velocity of bike (m/s)",

00:00:28 #1861 [Verbose] > x, y ]]

00:00:29 #1862 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5674-7458-7dde5e9670d9\main.spi

00:00:29 #1863 [Verbose] >

00:00:29 #1864 [Verbose] > ╭─[ 501.43ms - return value ]──────────────────────────────────────────────────╮

00:00:29 #1865 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:29 #1866 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:29 #1867 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:29 #1868 [Verbose] > │ stroke="none"/>                                                              │

00:00:29 #1869 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:29 #1870 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:29 #1871 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:29 #1872 [Verbose] > │ pedaling and coasting with air                                               │

00:00:29 #1873 [Verbose] > │ </text>                                                                      │

00:00:29 #1874 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

00:00:29 #1875 [Verbose] > │ y2="75"/>                                                                    │

00:00:29 #1876 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:29 #1877 [Verbose] > │ y2="75"/>                                                                    │

00:00:29 #1878 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

00:00:29 #1879 [Verbose] > │ y2="75"/>                                                                    │

00:00:29 #1880 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

00:00:29 #1881 [Verbose] > │ y2="75"/>                                                                    │

00:00:29 #1882 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x...                     │

00:00:29 #1883 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:29 #1884 [Verbose] >

00:00:29 #1885 [Verbose] > ╭─[ 516.44ms - stdout ]────────────────────────────────────────────────────────╮

00:00:29 #1886 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:29 #1887 [Verbose] > │ and UH0 =                                                                    │

00:00:29 #1888 [Verbose] > │     | UH0_0 of float * float * (unit -> UH0)                                 │

00:00:29 #1889 [Verbose] > │     | UH0_1                                                                  │

00:00:29 #1890 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:29 #1891 [Verbose] > │     | US0_0                                                                  │

00:00:29 #1892 [Verbose] > │     | US0_1 of f1_0 : float * f1_1 : float                                   │

00:00:29 #1893 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:29 #1894 [Verbose] > │     | US1_0                                                                  │

00:00:29 #1895 [Verbose] > │     | US1_1 of f1_0 : float                                                  │

00:00:29 #1896 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:29 #1897 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:29 #1898 [Verbose] > │     let v2 : bool = v1 < 1001                                                │

00:00:29 #1899 [Verbose] > │     v2                                                                       │

00:00:29 #1900 [Verbose] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

00:00:29 #1901 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:29 #1902 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:29 #1903 [Verbose] > │     v3                                                                       │

00:00:29 #1904 [Verbose] > │ and closure0 () struct (v0 : float, v1 : float) : struct (float * float) =   │

00:00:29 #1905 [Verbose] > │     let v2 : float =  -v1                                                    │

00:00:29 #1906 [Verbose] > │     let v3 : bool = v1 >= v2                                                 │

00:00:29 #1907 [Verbose] > │     let v4 : float =                                                         │

00:00:29 #1908 [Verbose] > │         if v3 then                                                           │

00:00:29 #1909 [Verbose] > │             v1                                                               │

00:00:29 #1910 [Verbose] > │         else                                                                 │

00:00:29 #1911 [Verbose] > │             v2                                                               │

00:00:29 #1912 [Verbose] > │     let v5 : float = -1.225 * v4                                             │

00:00:29 #1913 [Verbose] > │     let v6 : float = v5 * v1                                                 │

00:00:29 #1914 [Verbose] > │     let v7 : float = v6 / 2.0                                                │

00:00:29 #1915 [Verbose] > │     let v8 : float = v0 / 20.0                                               │

00:00:29 #1916 [Verbose] > │     let v9 : int32 = int32 v8                                                │

00:00:29 #1917 [Verbose] > │     let v10 : float = float v9                                               │

00:00:29 #1918 [Verbose] > │     let v11 : float = v10 * 20.0                                             │

00:00:29 #1919 [Verbose] > │     let v12 : float = v0 - v11                                               │

00:00:29 #1920 [Verbose] > │     let v13 : bool = v12 > 0.0                                               │

00:00:29 #1921 [Verbose] > │     let v15 : bool =                                                         │

00:00:29 #1922 [Verbose] > │         if v13 then                                                          │

00:00:29 #1923 [Verbose] > │             let v14 : bool = v12 < 10.0                                      │

00:00:29 #1924 [Verbose] > │             v14                                                              │

00:00:29 #1925 [Verbose] > │         else                                                                 │

00:00:29 #1926 [Verbose] > │             false                                                            │

00:00:29 #1927 [Verbose] > │     let v16 : float =                                                        │

00:00:29 #1928 [Verbose] > │         if v15 then                                                          │

00:00:29 #1929 [Verbose] > │             10.0                                                             │

00:00:29 #1930 [Verbose] > │         else                                                                 │

00:00:29 #1931 [Verbose] > │             0.0                                                              │

00:00:29 #1932 [Verbose] > │     let v17 : float = v16 + v7                                               │

00:00:29 #1933 [Verbose] > │     let v18 : float = v17 / 20.0                                             │

00:00:29 #1934 [Verbose] > │     let v19 : float = v0 + 0.1                                               │

00:00:29 #1935 [Verbose] > │     let v20 : float = v18 * 0.1                                              │

00:00:29 #1936 [Verbose] > │     let v21 : float = v1 + v20                                               │

00:00:29 #1937 [Verbose] > │     struct (v19, v21)                                                        │

00:00:29 #1938 [Verbose] > │ and method3 () : (struct (float * float) -> struct (float * float)) =        │

00:00:29 #1939 [Verbose] > │     closure0()                                                               │

00:00:29 #1940 [Verbose] > │ and closure1 (v0 : (struct (float * float) -> struct (float * float)), v1 :  │

00:00:29 #1941 [Verbose] > │ float, v2 : float, v3 : float, v4 : float) () : UH0 =                        │

00:00:29 #1942 [Verbose] > │     let struct (v5 : float, v6 : float) = v0 struct (v3, v4)                 │

00:00:29 #1943 [Verbose] > │     let v7 : (unit -> UH0) = closure1(v0, v1, v2, v5, v6)                    │

00:00:29 #1944 [Verbose] > │     UH0_0(v3, v4, v7)                                                        │

00:00:29 #1945 [Verbose] > │ and method4 (v0 : float, v1 : UH0) : US0 =                                   │

00:00:29 #1946 [Verbose] > │     match v1 with                                                            │

00:00:29 #1947 [Verbose] > │     | UH0_0(v2, v3, v4) -> (* StreamCons *)                                  │

00:00:29 #1948 [Verbose] > │         let v5 : bool = v0 <= 0.0                                            │

00:00:29 #1949 [Verbose] > │         if v5 then                                                           │

00:00:29 #1950 [Verbose] > │             US0_1(v2, v3)                                                    │

00:00:29 #1951 [Verbose] > │         else                                                                 │

00:00:29 #1952 [Verbose] > │             let v7 : float = v0 - 1.0                                        │

00:00:29 #1953 [Verbose] > │             let v8 : UH0 = v4 ()                                             │

00:00:29 #1954 [Verbose] > │             method4(v7, v8)                                                  │

00:00:29 #1955 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:29 #1956 [Verbose] > │         US0_0                                                                │

00:00:29 #1957 [Verbose] > │ and method5 (v0 : (struct (string * (float []) * (float [])) [])) : (struct  │

00:00:29 #1958 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:29 #1959 [Verbose] > │     v0                                                                       │

00:00:29 #1960 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:29 #1961 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:29 #1962 [Verbose] > │     let v0 : (float []) = Array.zeroCreate<float> (1001)                     │

00:00:29 #1963 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:29 #1964 [Verbose] > │     while method1(v1) do                                                     │

00:00:29 #1965 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:29 #1966 [Verbose] > │         let v4 : float = float v3                                            │

00:00:29 #1967 [Verbose] > │         let v5 : float = 0.1 * v4                                            │

00:00:29 #1968 [Verbose] > │         v0.[int v3] <- v5                                                    │

00:00:29 #1969 [Verbose] > │         let v6 : int32 = v3 + 1                                              │

00:00:29 #1970 [Verbose] > │         v1.l0 <- v6                                                          │

00:00:29 #1971 [Verbose] > │         ()                                                                   │

00:00:29 #1972 [Verbose] > │     let v7 : float = 0.0                                                     │

00:00:29 #1973 [Verbose] > │     let v8 : float = 0.0                                                     │

00:00:29 #1974 [Verbose] > │     let v9 : int32 = v0.Length                                               │

00:00:29 #1975 [Verbose] > │     let v10 : (float []) = Array.zeroCreate<float> (v9)                      │

00:00:29 #1976 [Verbose] > │     let v11 : Mut0 = {l0 = 0} : Mut0                                         │

00:00:29 #1977 [Verbose] > │     while method2(v9, v11) do                                                │

00:00:29 #1978 [Verbose] > │         let v13 : int32 = v11.l0                                             │

00:00:29 #1979 [Verbose] > │         let v14 : float = v0.[int v13]                                       │

00:00:29 #1980 [Verbose] > │         let v15 : (struct (float * float) -> struct (float * float)) =       │

00:00:29 #1981 [Verbose] > │ method3()                                                                    │

00:00:29 #1982 [Verbose] > │         let struct (v16 : float, v17 : float) = v15 struct (v7, v8)          │

00:00:29 #1983 [Verbose] > │         let v18 : float = v14 / 0.1                                          │

00:00:29 #1984 [Verbose] > │         let v19 : float = round v18                                          │

00:00:29 #1985 [Verbose] > │         let v20 : float =  -v19                                              │

00:00:29 #1986 [Verbose] > │         let v21 : bool = v19 >= v20                                          │

00:00:29 #1987 [Verbose] > │         let v22 : float =                                                    │

00:00:29 #1988 [Verbose] > │             if v21 then                                                      │

00:00:29 #1989 [Verbose] > │                 v19                                                          │

00:00:29 #1990 [Verbose] > │             else                                                             │

00:00:29 #1991 [Verbose] > │                 v20                                                          │

00:00:29 #1992 [Verbose] > │         let v23 : (unit -> UH0) = closure1(v15, v7, v8, v16, v17)            │

00:00:29 #1993 [Verbose] > │         let v24 : UH0 = UH0_0(v7, v8, v23)                                   │

00:00:29 #1994 [Verbose] > │         let v25 : US0 = method4(v22, v24)                                    │

00:00:29 #1995 [Verbose] > │         let v31 : US1 =                                                      │

00:00:29 #1996 [Verbose] > │             match v25 with                                                   │

00:00:29 #1997 [Verbose] > │             | US0_0 -> (* None *)                                            │

00:00:29 #1998 [Verbose] > │                 US1_0                                                        │

00:00:29 #1999 [Verbose] > │             | US0_1(v26, v27) -> (* Some *)                                  │

00:00:29 #2000 [Verbose] > │                 US1_1(v27)                                                   │

00:00:29 #2001 [Verbose] > │         let v34 : float =                                                    │

00:00:29 #2002 [Verbose] > │             match v31 with                                                   │

00:00:29 #2003 [Verbose] > │             | US1_0 -> (* None *)                                            │

00:00:29 #2004 [Verbose] > │                 0.0                                                          │

00:00:29 #2005 [Verbose] > │             | US1_1(v32) -> (* Some *)                                       │

00:00:29 #2006 [Verbose] > │                 v32                                                          │

00:00:29 #2007 [Verbose] > │         v10.[int v13] <- v34                                                 │

00:00:29 #2008 [Verbose] > │         let v35 : int32 = v13 + 1                                            │

00:00:29 #2009 [Verbose] > │         v11.l0 <- v35                                                        │

00:00:29 #2010 [Verbose] > │         ()                                                                   │

00:00:29 #2011 [Verbose] > │     let v36 : string = "velocity of bike (m/s)"                              │

00:00:29 #2012 [Verbose] > │     let v37 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:29 #2013 [Verbose] > │ (v36, v0, v10)|]                                                             │

00:00:29 #2014 [Verbose] > │     let v38 : (struct (string * (float []) * (float [])) []) = method5(v37)  │

00:00:29 #2015 [Verbose] > │     let v39 : string = "pedaling and coasting with air"                      │

00:00:29 #2016 [Verbose] > │     let v40 : string = "time (s)"                                            │

00:00:29 #2017 [Verbose] > │     let v41 : string = ""                                                    │

00:00:29 #2018 [Verbose] > │     struct (v39, v40, v41, v38)                                              │

00:00:29 #2019 [Verbose] > │ method0()                                                                    │

00:00:29 #2020 [Verbose] > │                                                                              │

00:00:29 #2021 [Verbose] > │                                                                              │

00:00:29 #2022 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:29 #2023 [Verbose] >

00:00:29 #2024 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:29 #2025 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:29 #2026 [Verbose] > │ ## velocity_ftxv                                                             │

00:00:29 #2027 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:29 #2028 [Verbose] >

00:00:29 #2029 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:29 #2030 [Verbose] > nominal state_1d = time * position * velocity

00:00:29 #2031 [Verbose] > nominal rrr = f64 * f64 * f64

00:00:29 #2032 [Verbose] >

00:00:29 #2033 [Verbose] > inl newton_second_1d m fs (state_1d (t, x0, v0)) =

00:00:29 #2034 [Verbose] >     inl f_net = fs |> listm.map (fun f => f (state_1d (t, x0, v0))) |>

00:00:29 #2035 [Verbose] > listm'.sum

00:00:29 #2036 [Verbose] >     inl acc = f_net / m

00:00:29 #2037 [Verbose] >     rrr (1f64, v0, acc)

00:00:29 #2038 [Verbose] >

00:00:29 #2039 [Verbose] > inl euler_1d dt deriv (state_1d (t0, x0, v0) as t) =

00:00:29 #2040 [Verbose] >     inl (rrr (_, _, dvdt)) = deriv t

00:00:29 #2041 [Verbose] >     inl t1 = t0 + dt

00:00:29 #2042 [Verbose] >     inl x1 = x0 + v0 * dt

00:00:29 #2043 [Verbose] >     inl v1 = v0 + dvdt * dt

00:00:29 #2044 [Verbose] >     state_1d (t1, x1, v1)

00:00:29 #2045 [Verbose] >

00:00:29 #2046 [Verbose] > inl update_txv dt m fs =

00:00:29 #2047 [Verbose] >     newton_second_1d m fs |> euler_1d dt

00:00:29 #2048 [Verbose] >

00:00:29 #2049 [Verbose] > inl states_txv dt m txv0 fs =

00:00:29 #2050 [Verbose] >     seq.iterate_ (update_txv dt m fs) txv0

00:00:29 #2051 [Verbose] >

00:00:29 #2052 [Verbose] > inl velocity_1d sts t =

00:00:29 #2053 [Verbose] >     inl (state_1d (t0, _, _)) = sts 0

00:00:29 #2054 [Verbose] >     inl (state_1d (t1, _, _)) = sts 1

00:00:29 #2055 [Verbose] >     inl dt = t1 - t0

00:00:29 #2056 [Verbose] >     inl num_steps = t / dt |> math.round |> abs

00:00:29 #2057 [Verbose] >     inl (state_1d (_, _, v0)) = sts num_steps

00:00:29 #2058 [Verbose] >     v0

00:00:29 #2059 [Verbose] >

00:00:29 #2060 [Verbose] > inl velocity_ftxv dt m txv0 fs =

00:00:29 #2061 [Verbose] >     states_txv dt m txv0 fs |> velocity_1d

00:00:29 #2062 [Verbose] >

00:00:29 #2063 [Verbose] > inl position_1d sts t =

00:00:29 #2064 [Verbose] >     inl (state_1d (t0, _, _)) = sts 0

00:00:29 #2065 [Verbose] >     inl (state_1d (t1, _, _)) = sts 1

00:00:29 #2066 [Verbose] >     inl dt = t1 - t0

00:00:29 #2067 [Verbose] >     inl num_steps = t / dt |> math.round |> abs

00:00:29 #2068 [Verbose] >     inl (state_1d (_, x0, _)) = sts num_steps

00:00:29 #2069 [Verbose] >     x0

00:00:29 #2070 [Verbose] >

00:00:29 #2071 [Verbose] > inl position_ftxv dt m txv0 fs =

00:00:29 #2072 [Verbose] >     states_txv dt m txv0 fs |> position_1d

00:00:29 #2073 [Verbose] >

00:00:29 #2074 [Verbose] > inl spring_force k (state_1d (_, x0, _)) =

00:00:29 #2075 [Verbose] >     -k * x0

00:00:29 #2076 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5734-3482-3774ffa9c659\main.spi

00:00:29 #2077 [Verbose] >

00:00:29 #2078 [Verbose] > ╭─[ 236.63ms - stdout ]────────────────────────────────────────────────────────╮

00:00:29 #2079 [Verbose] > │ ()                                                                           │

00:00:29 #2080 [Verbose] > │                                                                              │

00:00:29 #2081 [Verbose] > │                                                                              │

00:00:29 #2082 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:29 #2083 [Verbose] >

00:00:29 #2084 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:29 #2085 [Verbose] > // // test

00:00:29 #2086 [Verbose] >

00:00:29 #2087 [Verbose] > inl damped_ho_forces () =

00:00:29 #2088 [Verbose] >     [[

00:00:29 #2089 [Verbose] >         spring_force 0.8

00:00:29 #2090 [Verbose] >         fun (state_1d (_, _, v0)) => f_air 2 1.225 (pi * math.square 0.02) v0

00:00:29 #2091 [Verbose] >         fun _ => -0.0027 * 9.80665

00:00:29 #2092 [Verbose] >     ]]

00:00:29 #2093 [Verbose] >

00:00:29 #2094 [Verbose] > inl damped_ho_states () =

00:00:29 #2095 [Verbose] >     states_txv 0.001 0.0027 (state_1d (0, 0.1, 0)) (damped_ho_forces ())

00:00:29 #2096 [Verbose] >

00:00:29 #2097 [Verbose] > inl pingpong_position t =

00:00:29 #2098 [Verbose] >     position_ftxv 0.001 0.0027 (state_1d (0, 0.1, 0)) (damped_ho_forces ()) t

00:00:29 #2099 [Verbose] >

00:00:29 #2100 [Verbose] > inl x : a _ f64 = am'.init_series 0 3 0.01

00:00:29 #2101 [Verbose] > inl y = x |> am.map pingpong_position

00:00:29 #2102 [Verbose] > "ping pong ball on a slinky", "time (s)", "", ;[[ "position (m)", x, y ]]

00:00:29 #2103 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5758-5845-51d5bb3354da\main.spi

00:00:30 #2104 [Verbose] >

00:00:30 #2105 [Verbose] > ╭─[ 304.79ms - return value ]──────────────────────────────────────────────────╮

00:00:30 #2106 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:30 #2107 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:30 #2108 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:30 #2109 [Verbose] > │ stroke="none"/>                                                              │

00:00:30 #2110 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:30 #2111 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:30 #2112 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:30 #2113 [Verbose] > │ ping pong ball on a slinky                                                   │

00:00:30 #2114 [Verbose] > │ </text>                                                                      │

00:00:30 #2115 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="61" y1="424" x2="61" │

00:00:30 #2116 [Verbose] > │ y2="75"/>                                                                    │

00:00:30 #2117 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:30 #2118 [Verbose] > │ y2="75"/>                                                                    │

00:00:30 #2119 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="78" y1="424" x2="78" │

00:00:30 #2120 [Verbose] > │ y2="75"/>                                                                    │

00:00:30 #2121 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="86" y1="424" x2="86" │

00:00:30 #2122 [Verbose] > │ y2="75"/>                                                                    │

00:00:30 #2123 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="9...                 │

00:00:30 #2124 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:30 #2125 [Verbose] >

00:00:30 #2126 [Verbose] > ╭─[ 315.34ms - stdout ]────────────────────────────────────────────────────────╮

00:00:30 #2127 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:30 #2128 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:30 #2129 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:30 #2130 [Verbose] > │     let v2 : bool = v1 < 301                                                 │

00:00:30 #2131 [Verbose] > │     v2                                                                       │

00:00:30 #2132 [Verbose] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

00:00:30 #2133 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:30 #2134 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:30 #2135 [Verbose] > │     v3                                                                       │

00:00:30 #2136 [Verbose] > │ and method3 (v0 : float, v1 : float, v2 : float, v3 : float) : struct (float │

00:00:30 #2137 [Verbose] > │ * float * float) =                                                           │

00:00:30 #2138 [Verbose] > │     let v4 : bool = v3 <= 0.0                                                │

00:00:30 #2139 [Verbose] > │     if v4 then                                                               │

00:00:30 #2140 [Verbose] > │         struct (v0, v1, v2)                                                  │

00:00:30 #2141 [Verbose] > │     else                                                                     │

00:00:30 #2142 [Verbose] > │         let v5 : float =  -v2                                                │

00:00:30 #2143 [Verbose] > │         let v6 : bool = v2 >= v5                                             │

00:00:30 #2144 [Verbose] > │         let v7 : float =                                                     │

00:00:30 #2145 [Verbose] > │             if v6 then                                                       │

00:00:30 #2146 [Verbose] > │                 v2                                                           │

00:00:30 #2147 [Verbose] > │             else                                                             │

00:00:30 #2148 [Verbose] > │                 v5                                                           │

00:00:30 #2149 [Verbose] > │         let v8 : float = -0.0030787608005179976 * v7                         │

00:00:30 #2150 [Verbose] > │         let v9 : float = v8 * v2                                             │

00:00:30 #2151 [Verbose] > │         let v10 : float = v9 / 2.0                                           │

00:00:30 #2152 [Verbose] > │         let v11 : float = -0.8 * v1                                          │

00:00:30 #2153 [Verbose] > │         let v12 : float = v11 + v10                                          │

00:00:30 #2154 [Verbose] > │         let v13 : float = v12 + -0.026477955                                 │

00:00:30 #2155 [Verbose] > │         let v14 : float = v13 / 0.0027                                       │

00:00:30 #2156 [Verbose] > │         let v15 : float = v0 + 0.001                                         │

00:00:30 #2157 [Verbose] > │         let v16 : float = v2 * 0.001                                         │

00:00:30 #2158 [Verbose] > │         let v17 : float = v1 + v16                                           │

00:00:30 #2159 [Verbose] > │         let v18 : float = v14 * 0.001                                        │

00:00:30 #2160 [Verbose] > │         let v19 : float = v2 + v18                                           │

00:00:30 #2161 [Verbose] > │         let v20 : float = v3 - 1.0                                           │

00:00:30 #2162 [Verbose] > │         method3(v15, v17, v19, v20)                                          │

00:00:30 #2163 [Verbose] > │ and method4 (v0 : (struct (string * (float []) * (float [])) [])) : (struct  │

00:00:30 #2164 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:30 #2165 [Verbose] > │     v0                                                                       │

00:00:30 #2166 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:30 #2167 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:30 #2168 [Verbose] > │     let v0 : (float []) = Array.zeroCreate<float> (301)                      │

00:00:30 #2169 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:30 #2170 [Verbose] > │     while method1(v1) do                                                     │

00:00:30 #2171 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:30 #2172 [Verbose] > │         let v4 : float = float v3                                            │

00:00:30 #2173 [Verbose] > │         let v5 : float = 0.01 * v4                                           │

00:00:30 #2174 [Verbose] > │         v0.[int v3] <- v5                                                    │

00:00:30 #2175 [Verbose] > │         let v6 : int32 = v3 + 1                                              │

00:00:30 #2176 [Verbose] > │         v1.l0 <- v6                                                          │

00:00:30 #2177 [Verbose] > │         ()                                                                   │

00:00:30 #2178 [Verbose] > │     let v7 : int32 = v0.Length                                               │

00:00:30 #2179 [Verbose] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

00:00:30 #2180 [Verbose] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:30 #2181 [Verbose] > │     while method2(v7, v9) do                                                 │

00:00:30 #2182 [Verbose] > │         let v11 : int32 = v9.l0                                              │

00:00:30 #2183 [Verbose] > │         let v12 : float = v0.[int v11]                                       │

00:00:30 #2184 [Verbose] > │         let v13 : float = 0.0                                                │

00:00:30 #2185 [Verbose] > │         let v14 : float = 0.1                                                │

00:00:30 #2186 [Verbose] > │         let v15 : float = 0.0                                                │

00:00:30 #2187 [Verbose] > │         let v16 : float = 0.0                                                │

00:00:30 #2188 [Verbose] > │         let struct (v17 : float, v18 : float, v19 : float) = method3(v13,    │

00:00:30 #2189 [Verbose] > │ v14, v15, v16)                                                               │

00:00:30 #2190 [Verbose] > │         let v20 : float = 0.0                                                │

00:00:30 #2191 [Verbose] > │         let v21 : float = 0.1                                                │

00:00:30 #2192 [Verbose] > │         let v22 : float = 0.0                                                │

00:00:30 #2193 [Verbose] > │         let v23 : float = 1.0                                                │

00:00:30 #2194 [Verbose] > │         let struct (v24 : float, v25 : float, v26 : float) = method3(v20,    │

00:00:30 #2195 [Verbose] > │ v21, v22, v23)                                                               │

00:00:30 #2196 [Verbose] > │         let v27 : float = v24 - v17                                          │

00:00:30 #2197 [Verbose] > │         let v28 : float = v12 / v27                                          │

00:00:30 #2198 [Verbose] > │         let v29 : float = round v28                                          │

00:00:30 #2199 [Verbose] > │         let v30 : float =  -v29                                              │

00:00:30 #2200 [Verbose] > │         let v31 : bool = v29 >= v30                                          │

00:00:30 #2201 [Verbose] > │         let v32 : float =                                                    │

00:00:30 #2202 [Verbose] > │             if v31 then                                                      │

00:00:30 #2203 [Verbose] > │                 v29                                                          │

00:00:30 #2204 [Verbose] > │             else                                                             │

00:00:30 #2205 [Verbose] > │                 v30                                                          │

00:00:30 #2206 [Verbose] > │         let v33 : float = 0.0                                                │

00:00:30 #2207 [Verbose] > │         let v34 : float = 0.1                                                │

00:00:30 #2208 [Verbose] > │         let v35 : float = 0.0                                                │

00:00:30 #2209 [Verbose] > │         let struct (v36 : float, v37 : float, v38 : float) = method3(v33,    │

00:00:30 #2210 [Verbose] > │ v34, v35, v32)                                                               │

00:00:30 #2211 [Verbose] > │         v8.[int v11] <- v37                                                  │

00:00:30 #2212 [Verbose] > │         let v39 : int32 = v11 + 1                                            │

00:00:30 #2213 [Verbose] > │         v9.l0 <- v39                                                         │

00:00:30 #2214 [Verbose] > │         ()                                                                   │

00:00:30 #2215 [Verbose] > │     let v40 : string = "position (m)"                                        │

00:00:30 #2216 [Verbose] > │     let v41 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:30 #2217 [Verbose] > │ (v40, v0, v8)|]                                                              │

00:00:30 #2218 [Verbose] > │     let v42 : (struct (string * (float []) * (float [])) []) = method4(v41)  │

00:00:30 #2219 [Verbose] > │     let v43 : string = "ping pong ball on a slinky"                          │

00:00:30 #2220 [Verbose] > │     let v44 : string = "time (s)"                                            │

00:00:30 #2221 [Verbose] > │     let v45 : string = ""                                                    │

00:00:30 #2222 [Verbose] > │     struct (v43, v44, v45, v42)                                              │

00:00:30 #2223 [Verbose] > │ method0()                                                                    │

00:00:30 #2224 [Verbose] > │                                                                              │

00:00:30 #2225 [Verbose] > │                                                                              │

00:00:30 #2226 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:30 #2227 [Verbose] >

00:00:30 #2228 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:30 #2229 [Verbose] > // // test

00:00:30 #2230 [Verbose] >

00:00:30 #2231 [Verbose] > inl pingpong_velocity t =

00:00:30 #2232 [Verbose] >     velocity_ftxv 0.001 0.0027 (state_1d (0, 0.1, 0)) (damped_ho_forces ()) t

00:00:30 #2233 [Verbose] >

00:00:30 #2234 [Verbose] > inl x = am'.init_series 0 3 0.01

00:00:30 #2235 [Verbose] > inl y = x |> am.map pingpong_velocity

00:00:30 #2236 [Verbose] > "ping pong ball on a slinky", "time (s)", "", ;[[ "velocity (m/s)", x, y ]]

00:00:30 #2237 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5795-9510-97d838de0395\main.spi

00:00:30 #2238 [Verbose] >

00:00:30 #2239 [Verbose] > ╭─[ 396.34ms - return value ]──────────────────────────────────────────────────╮

00:00:30 #2240 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:30 #2241 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:30 #2242 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:30 #2243 [Verbose] > │ stroke="none"/>                                                              │

00:00:30 #2244 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:30 #2245 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:30 #2246 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:30 #2247 [Verbose] > │ ping pong ball on a slinky                                                   │

00:00:30 #2248 [Verbose] > │ </text>                                                                      │

00:00:30 #2249 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="61" y1="424" x2="61" │

00:00:30 #2250 [Verbose] > │ y2="75"/>                                                                    │

00:00:30 #2251 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:30 #2252 [Verbose] > │ y2="75"/>                                                                    │

00:00:30 #2253 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="78" y1="424" x2="78" │

00:00:30 #2254 [Verbose] > │ y2="75"/>                                                                    │

00:00:30 #2255 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="86" y1="424" x2="86" │

00:00:30 #2256 [Verbose] > │ y2="75"/>                                                                    │

00:00:30 #2257 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="9...                 │

00:00:30 #2258 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:30 #2259 [Verbose] >

00:00:30 #2260 [Verbose] > ╭─[ 407.99ms - stdout ]────────────────────────────────────────────────────────╮

00:00:30 #2261 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:30 #2262 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:30 #2263 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:30 #2264 [Verbose] > │     let v2 : bool = v1 < 301                                                 │

00:00:30 #2265 [Verbose] > │     v2                                                                       │

00:00:30 #2266 [Verbose] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

00:00:30 #2267 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:30 #2268 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:30 #2269 [Verbose] > │     v3                                                                       │

00:00:30 #2270 [Verbose] > │ and method3 (v0 : float, v1 : float, v2 : float, v3 : float) : struct (float │

00:00:30 #2271 [Verbose] > │ * float * float) =                                                           │

00:00:30 #2272 [Verbose] > │     let v4 : bool = v3 <= 0.0                                                │

00:00:30 #2273 [Verbose] > │     if v4 then                                                               │

00:00:30 #2274 [Verbose] > │         struct (v0, v1, v2)                                                  │

00:00:30 #2275 [Verbose] > │     else                                                                     │

00:00:30 #2276 [Verbose] > │         let v5 : float =  -v2                                                │

00:00:30 #2277 [Verbose] > │         let v6 : bool = v2 >= v5                                             │

00:00:30 #2278 [Verbose] > │         let v7 : float =                                                     │

00:00:30 #2279 [Verbose] > │             if v6 then                                                       │

00:00:30 #2280 [Verbose] > │                 v2                                                           │

00:00:30 #2281 [Verbose] > │             else                                                             │

00:00:30 #2282 [Verbose] > │                 v5                                                           │

00:00:30 #2283 [Verbose] > │         let v8 : float = -0.0030787608005179976 * v7                         │

00:00:30 #2284 [Verbose] > │         let v9 : float = v8 * v2                                             │

00:00:30 #2285 [Verbose] > │         let v10 : float = v9 / 2.0                                           │

00:00:30 #2286 [Verbose] > │         let v11 : float = -0.8 * v1                                          │

00:00:30 #2287 [Verbose] > │         let v12 : float = v11 + v10                                          │

00:00:30 #2288 [Verbose] > │         let v13 : float = v12 + -0.026477955                                 │

00:00:30 #2289 [Verbose] > │         let v14 : float = v13 / 0.0027                                       │

00:00:30 #2290 [Verbose] > │         let v15 : float = v0 + 0.001                                         │

00:00:30 #2291 [Verbose] > │         let v16 : float = v2 * 0.001                                         │

00:00:30 #2292 [Verbose] > │         let v17 : float = v1 + v16                                           │

00:00:30 #2293 [Verbose] > │         let v18 : float = v14 * 0.001                                        │

00:00:30 #2294 [Verbose] > │         let v19 : float = v2 + v18                                           │

00:00:30 #2295 [Verbose] > │         let v20 : float = v3 - 1.0                                           │

00:00:30 #2296 [Verbose] > │         method3(v15, v17, v19, v20)                                          │

00:00:30 #2297 [Verbose] > │ and method4 (v0 : (struct (string * (float []) * (float [])) [])) : (struct  │

00:00:30 #2298 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:30 #2299 [Verbose] > │     v0                                                                       │

00:00:30 #2300 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:30 #2301 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:30 #2302 [Verbose] > │     let v0 : (float []) = Array.zeroCreate<float> (301)                      │

00:00:30 #2303 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:30 #2304 [Verbose] > │     while method1(v1) do                                                     │

00:00:30 #2305 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:30 #2306 [Verbose] > │         let v4 : float = float v3                                            │

00:00:30 #2307 [Verbose] > │         let v5 : float = 0.01 * v4                                           │

00:00:30 #2308 [Verbose] > │         v0.[int v3] <- v5                                                    │

00:00:30 #2309 [Verbose] > │         let v6 : int32 = v3 + 1                                              │

00:00:30 #2310 [Verbose] > │         v1.l0 <- v6                                                          │

00:00:30 #2311 [Verbose] > │         ()                                                                   │

00:00:30 #2312 [Verbose] > │     let v7 : int32 = v0.Length                                               │

00:00:30 #2313 [Verbose] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

00:00:30 #2314 [Verbose] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:30 #2315 [Verbose] > │     while method2(v7, v9) do                                                 │

00:00:30 #2316 [Verbose] > │         let v11 : int32 = v9.l0                                              │

00:00:30 #2317 [Verbose] > │         let v12 : float = v0.[int v11]                                       │

00:00:30 #2318 [Verbose] > │         let v13 : float = 0.0                                                │

00:00:30 #2319 [Verbose] > │         let v14 : float = 0.1                                                │

00:00:30 #2320 [Verbose] > │         let v15 : float = 0.0                                                │

00:00:30 #2321 [Verbose] > │         let v16 : float = 0.0                                                │

00:00:30 #2322 [Verbose] > │         let struct (v17 : float, v18 : float, v19 : float) = method3(v13,    │

00:00:30 #2323 [Verbose] > │ v14, v15, v16)                                                               │

00:00:30 #2324 [Verbose] > │         let v20 : float = 0.0                                                │

00:00:30 #2325 [Verbose] > │         let v21 : float = 0.1                                                │

00:00:30 #2326 [Verbose] > │         let v22 : float = 0.0                                                │

00:00:30 #2327 [Verbose] > │         let v23 : float = 1.0                                                │

00:00:30 #2328 [Verbose] > │         let struct (v24 : float, v25 : float, v26 : float) = method3(v20,    │

00:00:30 #2329 [Verbose] > │ v21, v22, v23)                                                               │

00:00:30 #2330 [Verbose] > │         let v27 : float = v24 - v17                                          │

00:00:30 #2331 [Verbose] > │         let v28 : float = v12 / v27                                          │

00:00:30 #2332 [Verbose] > │         let v29 : float = round v28                                          │

00:00:30 #2333 [Verbose] > │         let v30 : float =  -v29                                              │

00:00:30 #2334 [Verbose] > │         let v31 : bool = v29 >= v30                                          │

00:00:30 #2335 [Verbose] > │         let v32 : float =                                                    │

00:00:30 #2336 [Verbose] > │             if v31 then                                                      │

00:00:30 #2337 [Verbose] > │                 v29                                                          │

00:00:30 #2338 [Verbose] > │             else                                                             │

00:00:30 #2339 [Verbose] > │                 v30                                                          │

00:00:30 #2340 [Verbose] > │         let v33 : float = 0.0                                                │

00:00:30 #2341 [Verbose] > │         let v34 : float = 0.1                                                │

00:00:30 #2342 [Verbose] > │         let v35 : float = 0.0                                                │

00:00:30 #2343 [Verbose] > │         let struct (v36 : float, v37 : float, v38 : float) = method3(v33,    │

00:00:30 #2344 [Verbose] > │ v34, v35, v32)                                                               │

00:00:30 #2345 [Verbose] > │         v8.[int v11] <- v38                                                  │

00:00:30 #2346 [Verbose] > │         let v39 : int32 = v11 + 1                                            │

00:00:30 #2347 [Verbose] > │         v9.l0 <- v39                                                         │

00:00:30 #2348 [Verbose] > │         ()                                                                   │

00:00:30 #2349 [Verbose] > │     let v40 : string = "velocity (m/s)"                                      │

00:00:30 #2350 [Verbose] > │     let v41 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:30 #2351 [Verbose] > │ (v40, v0, v8)|]                                                              │

00:00:30 #2352 [Verbose] > │     let v42 : (struct (string * (float []) * (float [])) []) = method4(v41)  │

00:00:30 #2353 [Verbose] > │     let v43 : string = "ping pong ball on a slinky"                          │

00:00:30 #2354 [Verbose] > │     let v44 : string = "time (s)"                                            │

00:00:30 #2355 [Verbose] > │     let v45 : string = ""                                                    │

00:00:30 #2356 [Verbose] > │     struct (v43, v44, v45, v42)                                              │

00:00:30 #2357 [Verbose] > │ method0()                                                                    │

00:00:30 #2358 [Verbose] > │                                                                              │

00:00:30 #2359 [Verbose] > │                                                                              │

00:00:30 #2360 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:30 #2361 [Verbose] >

00:00:30 #2362 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:30 #2363 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:30 #2364 [Verbose] > │ ## shift                                                                     │

00:00:30 #2365 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:30 #2366 [Verbose] >

00:00:30 #2367 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:30 #2368 [Verbose] > type update_function s = s -> s

00:00:30 #2369 [Verbose] >

00:00:30 #2370 [Verbose] > type differential_equation s ds = s -> ds

00:00:30 #2371 [Verbose] >

00:00:30 #2372 [Verbose] > type numerical_method s ds = differential_equation s ds -> update_function s

00:00:30 #2373 [Verbose] >

00:00:30 #2374 [Verbose] >

00:00:30 #2375 [Verbose] > inl solver method =

00:00:30 #2376 [Verbose] >     method >> seq.iterate

00:00:30 #2377 [Verbose] > inl solver' method =

00:00:30 #2378 [Verbose] >     method >> seq.iterate'

00:00:30 #2379 [Verbose] > inl solver_ method =

00:00:30 #2380 [Verbose] >     method >> seq.iterate_

00:00:30 #2381 [Verbose] >

00:00:30 #2382 [Verbose] >

00:00:30 #2383 [Verbose] > inl euler_cromer_1d dt deriv (state_1d (t0, x0, v0) as t) =

00:00:30 #2384 [Verbose] >     inl (rrr (_, _, dvdt)) = deriv t

00:00:30 #2385 [Verbose] >     inl t1 = t0 + dt

00:00:30 #2386 [Verbose] >     inl v1 = v0 + dvdt * dt

00:00:30 #2387 [Verbose] >     inl x1 = x0 + v1 * dt

00:00:30 #2388 [Verbose] >     state_1d (t1, x1, v1)

00:00:30 #2389 [Verbose] >

00:00:30 #2390 [Verbose] > inl update_txv_ec dt m fs =

00:00:30 #2391 [Verbose] >     euler_cromer_1d dt (newton_second_1d m fs)

00:00:30 #2392 [Verbose] >

00:00:30 #2393 [Verbose] > prototype (+++) ds : ds -> ds -> ds

00:00:30 #2394 [Verbose] > prototype scale ds : f64 -> ds -> ds

00:00:30 #2395 [Verbose] >

00:00:30 #2396 [Verbose] > instance (+++) rrr = fun (rrr (dtdt0, dxdt0, dvdt0)) (rrr (dtdt1, dxdt1, dvdt1))

00:00:30 #2397 [Verbose] > =>

00:00:30 #2398 [Verbose] >     rrr (dtdt0 + dtdt1, dxdt0 + dxdt1, dvdt0 + dvdt1)

00:00:30 #2399 [Verbose] >

00:00:30 #2400 [Verbose] > instance scale rrr = fun w (rrr (dtdt0, dxdt0, dvdt0)) =>

00:00:30 #2401 [Verbose] >     rrr (w * dtdt0, w * dxdt0, w * dvdt0)

00:00:30 #2402 [Verbose] >

00:00:30 #2403 [Verbose] > prototype shift s : forall ds. f64 -> ds -> s -> s

00:00:30 #2404 [Verbose] >

00:00:30 #2405 [Verbose] > instance shift state_1d = fun dt ds (state_1d (t, x, v)) =>

00:00:30 #2406 [Verbose] >     inl dtdt, dxdt, dvdt =

00:00:30 #2407 [Verbose] >         real

00:00:30 #2408 [Verbose] >             match ds with

00:00:30 #2409 [Verbose] >             | rrr x => x

00:00:30 #2410 [Verbose] >             | state_1d x => x

00:00:30 #2411 [Verbose] >     state_1d (t + dtdt * dt, x + dxdt * dt, v + dvdt * dt)

00:00:30 #2412 [Verbose] >

00:00:30 #2413 [Verbose] > inl euler dt deriv st0 =

00:00:30 #2414 [Verbose] >     shift dt (deriv st0) st0

00:00:30 #2415 [Verbose] >

00:00:30 #2416 [Verbose] > inl runge_kutta_4 dt deriv st0 =

00:00:30 #2417 [Verbose] >     inl m0 = deriv st0

00:00:30 #2418 [Verbose] >     inl m1 = deriv (shift (dt / 2) m0 st0)

00:00:30 #2419 [Verbose] >     inl m2 = deriv (shift (dt / 2) m1 st0)

00:00:30 #2420 [Verbose] >     inl m3 = deriv (shift dt m2 st0)

00:00:30 #2421 [Verbose] >     shift (dt / 6) (m0 +++ m1 +++ m1 +++ m2 +++ m2 +++ m3) st0

00:00:30 #2422 [Verbose] >

00:00:30 #2423 [Verbose] > inl exponential (_, x0, v0) =

00:00:30 #2424 [Verbose] >     1f64, v0, x0

00:00:30 #2425 [Verbose] >

00:00:30 #2426 [Verbose] > inl of_state_1d (state_1d (t, x, v)) =

00:00:30 #2427 [Verbose] >     t, x, v

00:00:30 #2428 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5843-4314-492430a18d99\main.spi

00:00:30 #2429 [Verbose] >

00:00:30 #2430 [Verbose] > ╭─[ 260.61ms - stdout ]────────────────────────────────────────────────────────╮

00:00:30 #2431 [Verbose] > │ ()                                                                           │

00:00:30 #2432 [Verbose] > │                                                                              │

00:00:30 #2433 [Verbose] > │                                                                              │

00:00:30 #2434 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:30 #2435 [Verbose] >

00:00:30 #2436 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:30 #2437 [Verbose] > // // test

00:00:30 #2438 [Verbose] >

00:00:30 #2439 [Verbose] > solver (euler 0.01) (of_state_1d >> exponential >> state_1d) (state_1d (0, 1,

00:00:30 #2440 [Verbose] > 1)) 800i32

00:00:30 #2441 [Verbose] > |> _equal (state_1d (7.999999999999874, 2864.8311229272326, 2864.8311229272326))

00:00:30 #2442 [Verbose] >

00:00:30 #2443 [Verbose] > solver (euler_cromer_1d 0.1) (of_state_1d >> exponential >> rrr) (state_1d (0,

00:00:30 #2444 [Verbose] > 1, 1)) 80i32

00:00:30 #2445 [Verbose] > |> _equal (state_1d (7.999999999999988, 3043.379244966009, 2895.0121485099035))

00:00:30 #2446 [Verbose] >

00:00:30 #2447 [Verbose] > solver (runge_kutta_4 1) (of_state_1d >> exponential >> rrr) (state_1d (0, 1,

00:00:30 #2448 [Verbose] > 1)) 8i32

00:00:30 #2449 [Verbose] > |> _equal (state_1d (8.0, 2894.789038540849, 2894.789038540849))

00:00:30 #2450 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5869-6912-67f8c7d28e60\main.spi

00:00:31 #2451 [Verbose] >

00:00:31 #2452 [Verbose] > ╭─[ 313.77ms - stdout ]────────────────────────────────────────────────────────╮

00:00:31 #2453 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:31 #2454 [Verbose] > │     let v0 : string = $"__expect / actual: %A{struct (7.999999999999874,     │

00:00:31 #2455 [Verbose] > │ 2864.8311229272326, 2864.8311229272326)} / expected: %A{struct               │

00:00:31 #2456 [Verbose] > │ (7.999999999999874, 2864.8311229272326, 2864.8311229272326)}"                │

00:00:31 #2457 [Verbose] > │     let v1 : string = $"__expect / actual: %A{struct (7.999999999999988,     │

00:00:31 #2458 [Verbose] > │ 3043.379244966009, 2895.0121485099035)} / expected: %A{struct                │

00:00:31 #2459 [Verbose] > │ (7.999999999999988, 3043.379244966009, 2895.0121485099035)}"                 │

00:00:31 #2460 [Verbose] > │     let v2 : string = $"__expect / actual: %A{struct (8.0,                   │

00:00:31 #2461 [Verbose] > │ 2894.789038540849, 2894.789038540849)} / expected: %A{struct (8.0,           │

00:00:31 #2462 [Verbose] > │ 2894.789038540849, 2894.789038540849)}"                                      │

00:00:31 #2463 [Verbose] > │     ()                                                                       │

00:00:31 #2464 [Verbose] > │ method0()                                                                    │

00:00:31 #2465 [Verbose] > │                                                                              │

00:00:31 #2466 [Verbose] > │                                                                              │

00:00:31 #2467 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:31 #2468 [Verbose] >

00:00:31 #2469 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:31 #2470 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:31 #2471 [Verbose] > │ ## vec                                                                       │

00:00:31 #2472 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:31 #2473 [Verbose] >

00:00:31 #2474 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:31 #2475 [Verbose] > type vec =

00:00:31 #2476 [Verbose] >     {

00:00:31 #2477 [Verbose] >         x : f64

00:00:31 #2478 [Verbose] >         y : f64

00:00:31 #2479 [Verbose] >         z : f64

00:00:31 #2480 [Verbose] >     }

00:00:31 #2481 [Verbose] >

00:00:31 #2482 [Verbose] > inl vec x y z : vec =

00:00:31 #2483 [Verbose] >     { x y z }

00:00:31 #2484 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5901-0189-0a30a9158976\main.spi

00:00:31 #2485 [Verbose] >

00:00:31 #2486 [Verbose] > ╭─[ 240.84ms - stdout ]────────────────────────────────────────────────────────╮

00:00:31 #2487 [Verbose] > │ ()                                                                           │

00:00:31 #2488 [Verbose] > │                                                                              │

00:00:31 #2489 [Verbose] > │                                                                              │

00:00:31 #2490 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:31 #2491 [Verbose] >

00:00:31 #2492 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:31 #2493 [Verbose] > // // test

00:00:31 #2494 [Verbose] >

00:00:31 #2495 [Verbose] > vec 1 2 3 .z

00:00:31 #2496 [Verbose] > |> _equal 3

00:00:31 #2497 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5926-2614-2af479637d16\main.spi

00:00:31 #2498 [Verbose] >

00:00:31 #2499 [Verbose] > ╭─[ 238.39ms - stdout ]────────────────────────────────────────────────────────╮

00:00:31 #2500 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:31 #2501 [Verbose] > │     let v0 : string = $"__expect / actual: %A{3.0} / expected: %A{3.0}"      │

00:00:31 #2502 [Verbose] > │     ()                                                                       │

00:00:31 #2503 [Verbose] > │ method0()                                                                    │

00:00:31 #2504 [Verbose] > │                                                                              │

00:00:31 #2505 [Verbose] > │                                                                              │

00:00:31 #2506 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:31 #2507 [Verbose] >

00:00:31 #2508 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:31 #2509 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:31 #2510 [Verbose] > │ ### consts                                                                   │

00:00:31 #2511 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:31 #2512 [Verbose] >

00:00:31 #2513 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:31 #2514 [Verbose] > inl i_hat () = vec 1 0 0

00:00:31 #2515 [Verbose] > inl j_hat () = vec 0 1 0

00:00:31 #2516 [Verbose] > inl k_hat () = vec 0 0 1

00:00:31 #2517 [Verbose] > inl zero_vec () = vec 0 0 0

00:00:31 #2518 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5950-5089-52755e3f22f0\main.spi

00:00:31 #2519 [Verbose] >

00:00:31 #2520 [Verbose] > ╭─[ 256.41ms - stdout ]────────────────────────────────────────────────────────╮

00:00:31 #2521 [Verbose] > │ ()                                                                           │

00:00:31 #2522 [Verbose] > │                                                                              │

00:00:31 #2523 [Verbose] > │                                                                              │

00:00:31 #2524 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:31 #2525 [Verbose] >

00:00:31 #2526 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:31 #2527 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:31 #2528 [Verbose] > │ ### ^+^                                                                      │

00:00:31 #2529 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:31 #2530 [Verbose] >

00:00:31 #2531 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:31 #2532 [Verbose] > inl (^+^) (a : vec) (b : vec) =

00:00:31 #2533 [Verbose] >     vec (a.x + b.x) (a.y + b.y) (a.z + b.z)

00:00:32 #2534 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1639-5977-7719-793769ca580a\main.spi

00:00:32 #2535 [Verbose] >

00:00:32 #2536 [Verbose] > ╭─[ 265.07ms - stdout ]────────────────────────────────────────────────────────╮

00:00:32 #2537 [Verbose] > │ ()                                                                           │

00:00:32 #2538 [Verbose] > │                                                                              │

00:00:32 #2539 [Verbose] > │                                                                              │

00:00:32 #2540 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:32 #2541 [Verbose] >

00:00:32 #2542 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:32 #2543 [Verbose] > // // test

00:00:32 #2544 [Verbose] >

00:00:32 #2545 [Verbose] > vec 1 2 3 ^+^ vec 4 5 6

00:00:32 #2546 [Verbose] > |> _equal (vec 5 7 9)

00:00:32 #2547 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0004-0417-05219f4f388a\main.spi

00:00:32 #2548 [Verbose] >

00:00:32 #2549 [Verbose] > ╭─[ 238.24ms - stdout ]────────────────────────────────────────────────────────╮

00:00:32 #2550 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:32 #2551 [Verbose] > │     let v0 : string = $"__expect / actual: %A{struct (5.0, 7.0, 9.0)} /      │

00:00:32 #2552 [Verbose] > │ expected: %A{struct (5.0, 7.0, 9.0)}"                                        │

00:00:32 #2553 [Verbose] > │     ()                                                                       │

00:00:32 #2554 [Verbose] > │ method0()                                                                    │

00:00:32 #2555 [Verbose] > │                                                                              │

00:00:32 #2556 [Verbose] > │                                                                              │

00:00:32 #2557 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:32 #2558 [Verbose] >

00:00:32 #2559 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:32 #2560 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:32 #2561 [Verbose] > │ ### sum_vec                                                                  │

00:00:32 #2562 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:32 #2563 [Verbose] >

00:00:32 #2564 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:32 #2565 [Verbose] > inl sum_vec vs =

00:00:32 #2566 [Verbose] >     vs |> listm.fold (^+^) (zero_vec ())

00:00:32 #2567 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0028-2870-2f1a5a59fce5\main.spi

00:00:32 #2568 [Verbose] >

00:00:32 #2569 [Verbose] > ╭─[ 285.96ms - stdout ]────────────────────────────────────────────────────────╮

00:00:32 #2570 [Verbose] > │ ()                                                                           │

00:00:32 #2571 [Verbose] > │                                                                              │

00:00:32 #2572 [Verbose] > │                                                                              │

00:00:32 #2573 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:32 #2574 [Verbose] >

00:00:32 #2575 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:32 #2576 [Verbose] > // // test

00:00:32 #2577 [Verbose] >

00:00:32 #2578 [Verbose] > [[ vec 1 2 3; vec 4 5 6 ]]

00:00:32 #2579 [Verbose] > |> sum_vec

00:00:32 #2580 [Verbose] > |> _equal (vec 5 7 9)

00:00:32 #2581 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0057-5762-57f4f9079381\main.spi

00:00:32 #2582 [Verbose] >

00:00:32 #2583 [Verbose] > ╭─[ 246.27ms - stdout ]────────────────────────────────────────────────────────╮

00:00:32 #2584 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:32 #2585 [Verbose] > │     let v0 : string = $"__expect / actual: %A{struct (5.0, 7.0, 9.0)} /      │

00:00:32 #2586 [Verbose] > │ expected: %A{struct (5.0, 7.0, 9.0)}"                                        │

00:00:32 #2587 [Verbose] > │     ()                                                                       │

00:00:32 #2588 [Verbose] > │ method0()                                                                    │

00:00:32 #2589 [Verbose] > │                                                                              │

00:00:32 #2590 [Verbose] > │                                                                              │

00:00:32 #2591 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:32 #2592 [Verbose] >

00:00:32 #2593 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:32 #2594 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:32 #2595 [Verbose] > │ ### *^                                                                       │

00:00:32 #2596 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:32 #2597 [Verbose] >

00:00:32 #2598 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:32 #2599 [Verbose] > inl (*^) c { x y z } =

00:00:32 #2600 [Verbose] >     vec (c * x) (c * y) (c * z)

00:00:33 #2601 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0083-8316-8629897272ca\main.spi

00:00:33 #2602 [Verbose] >

00:00:33 #2603 [Verbose] > ╭─[ 252.63ms - stdout ]────────────────────────────────────────────────────────╮

00:00:33 #2604 [Verbose] > │ ()                                                                           │

00:00:33 #2605 [Verbose] > │                                                                              │

00:00:33 #2606 [Verbose] > │                                                                              │

00:00:33 #2607 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:33 #2608 [Verbose] >

00:00:33 #2609 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:33 #2610 [Verbose] > // // test

00:00:33 #2611 [Verbose] >

00:00:33 #2612 [Verbose] > 5 *^ vec 1 2 3

00:00:33 #2613 [Verbose] > |> _equal (vec 5 10 15)

00:00:33 #2614 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0108-0873-0b86c458aa69\main.spi

00:00:33 #2615 [Verbose] >

00:00:33 #2616 [Verbose] > ╭─[ 263.82ms - stdout ]────────────────────────────────────────────────────────╮

00:00:33 #2617 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:33 #2618 [Verbose] > │     let v0 : string = $"__expect / actual: %A{struct (5.0, 10.0, 15.0)} /    │

00:00:33 #2619 [Verbose] > │ expected: %A{struct (5.0, 10.0, 15.0)}"                                      │

00:00:33 #2620 [Verbose] > │     ()                                                                       │

00:00:33 #2621 [Verbose] > │ method0()                                                                    │

00:00:33 #2622 [Verbose] > │                                                                              │

00:00:33 #2623 [Verbose] > │                                                                              │

00:00:33 #2624 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:33 #2625 [Verbose] >

00:00:33 #2626 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:33 #2627 [Verbose] > // // test

00:00:33 #2628 [Verbose] >

00:00:33 #2629 [Verbose] > 3 *^ i_hat () ^+^ 4 *^ k_hat ()

00:00:33 #2630 [Verbose] > |> _equal (vec 3 0 4)

00:00:33 #2631 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0135-3541-3bccc56f0ca4\main.spi

00:00:33 #2632 [Verbose] >

00:00:33 #2633 [Verbose] > ╭─[ 215.71ms - stdout ]────────────────────────────────────────────────────────╮

00:00:33 #2634 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:33 #2635 [Verbose] > │     let v0 : string = $"__expect / actual: %A{struct (3.0, 0.0, 4.0)} /      │

00:00:33 #2636 [Verbose] > │ expected: %A{struct (3.0, 0.0, 4.0)}"                                        │

00:00:33 #2637 [Verbose] > │     ()                                                                       │

00:00:33 #2638 [Verbose] > │ method0()                                                                    │

00:00:33 #2639 [Verbose] > │                                                                              │

00:00:33 #2640 [Verbose] > │                                                                              │

00:00:33 #2641 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:33 #2642 [Verbose] >

00:00:33 #2643 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:33 #2644 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:33 #2645 [Verbose] > │ ### ^*                                                                       │

00:00:33 #2646 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:33 #2647 [Verbose] >

00:00:33 #2648 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:33 #2649 [Verbose] > inl (^*) v c =

00:00:33 #2650 [Verbose] >     (*^) c v

00:00:33 #2651 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0158-5811-5fa7f98c8516\main.spi

00:00:33 #2652 [Verbose] >

00:00:33 #2653 [Verbose] > ╭─[ 193.10ms - stdout ]────────────────────────────────────────────────────────╮

00:00:33 #2654 [Verbose] > │ ()                                                                           │

00:00:33 #2655 [Verbose] > │                                                                              │

00:00:33 #2656 [Verbose] > │                                                                              │

00:00:33 #2657 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:33 #2658 [Verbose] >

00:00:33 #2659 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:33 #2660 [Verbose] > // // test

00:00:33 #2661 [Verbose] >

00:00:33 #2662 [Verbose] > vec 1 2 3 ^* 5

00:00:33 #2663 [Verbose] > |> _equal (vec 5 10 15)

00:00:34 #2664 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0177-7727-75d3d7ec78a1\main.spi

00:00:34 #2665 [Verbose] >

00:00:34 #2666 [Verbose] > ╭─[ 224.97ms - stdout ]────────────────────────────────────────────────────────╮

00:00:34 #2667 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:34 #2668 [Verbose] > │     let v0 : string = $"__expect / actual: %A{struct (5.0, 10.0, 15.0)} /    │

00:00:34 #2669 [Verbose] > │ expected: %A{struct (5.0, 10.0, 15.0)}"                                      │

00:00:34 #2670 [Verbose] > │     ()                                                                       │

00:00:34 #2671 [Verbose] > │ method0()                                                                    │

00:00:34 #2672 [Verbose] > │                                                                              │

00:00:34 #2673 [Verbose] > │                                                                              │

00:00:34 #2674 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:34 #2675 [Verbose] >

00:00:34 #2676 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:34 #2677 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:34 #2678 [Verbose] > │ ### ^/                                                                       │

00:00:34 #2679 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:34 #2680 [Verbose] >

00:00:34 #2681 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:34 #2682 [Verbose] > inl (^/) { x y z } c =

00:00:34 #2683 [Verbose] >     vec (x / c) (y / c) (z / c)

00:00:34 #2684 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0200-0078-0699bb9833aa\main.spi

00:00:34 #2685 [Verbose] >

00:00:34 #2686 [Verbose] > ╭─[ 241.99ms - stdout ]────────────────────────────────────────────────────────╮

00:00:34 #2687 [Verbose] > │ ()                                                                           │

00:00:34 #2688 [Verbose] > │                                                                              │

00:00:34 #2689 [Verbose] > │                                                                              │

00:00:34 #2690 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:34 #2691 [Verbose] >

00:00:34 #2692 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:34 #2693 [Verbose] > // // test

00:00:34 #2694 [Verbose] >

00:00:34 #2695 [Verbose] > vec 1 2 3 ^/ 5

00:00:34 #2696 [Verbose] > |> _equal (vec 0.2 0.4 0.6)

00:00:34 #2697 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0225-2526-2359ce8fbe47\main.spi

00:00:34 #2698 [Verbose] >

00:00:34 #2699 [Verbose] > ╭─[ 287.93ms - stdout ]────────────────────────────────────────────────────────╮

00:00:34 #2700 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:34 #2701 [Verbose] > │     let v0 : string = $"__expect / actual: %A{struct (0.2, 0.4, 0.6)} /      │

00:00:34 #2702 [Verbose] > │ expected: %A{struct (0.2, 0.4, 0.6)}"                                        │

00:00:34 #2703 [Verbose] > │     ()                                                                       │

00:00:34 #2704 [Verbose] > │ method0()                                                                    │

00:00:34 #2705 [Verbose] > │                                                                              │

00:00:34 #2706 [Verbose] > │                                                                              │

00:00:34 #2707 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:34 #2708 [Verbose] >

00:00:34 #2709 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:34 #2710 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:34 #2711 [Verbose] > │ ### negate_vec                                                               │

00:00:34 #2712 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:34 #2713 [Verbose] >

00:00:34 #2714 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:34 #2715 [Verbose] > inl negate_vec v =

00:00:34 #2716 [Verbose] >     v ^* -1

00:00:34 #2717 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0255-5522-50bfc31d8216\main.spi

00:00:34 #2718 [Verbose] >

00:00:34 #2719 [Verbose] > ╭─[ 215.94ms - stdout ]────────────────────────────────────────────────────────╮

00:00:34 #2720 [Verbose] > │ ()                                                                           │

00:00:34 #2721 [Verbose] > │                                                                              │

00:00:34 #2722 [Verbose] > │                                                                              │

00:00:34 #2723 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:34 #2724 [Verbose] >

00:00:34 #2725 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:34 #2726 [Verbose] > // // test

00:00:34 #2727 [Verbose] >

00:00:34 #2728 [Verbose] > vec 1 2 3

00:00:34 #2729 [Verbose] > |> negate_vec

00:00:34 #2730 [Verbose] > |> _equal (vec -1 -2 -3)

00:00:35 #2731 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0276-7691-75476d9da383\main.spi

00:00:35 #2732 [Verbose] >

00:00:35 #2733 [Verbose] > ╭─[ 226.05ms - stdout ]────────────────────────────────────────────────────────╮

00:00:35 #2734 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:35 #2735 [Verbose] > │     let v0 : string = $"__expect / actual: %A{struct (-1.0, -2.0, -3.0)} /   │

00:00:35 #2736 [Verbose] > │ expected: %A{struct (-1.0, -2.0, -3.0)}"                                     │

00:00:35 #2737 [Verbose] > │     ()                                                                       │

00:00:35 #2738 [Verbose] > │ method0()                                                                    │

00:00:35 #2739 [Verbose] > │                                                                              │

00:00:35 #2740 [Verbose] > │                                                                              │

00:00:35 #2741 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:35 #2742 [Verbose] >

00:00:35 #2743 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:35 #2744 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:35 #2745 [Verbose] > │ ### ^-^                                                                      │

00:00:35 #2746 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:35 #2747 [Verbose] >

00:00:35 #2748 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:35 #2749 [Verbose] > inl (^-^) a b =

00:00:35 #2750 [Verbose] >     a ^+^ (negate_vec b)

00:00:35 #2751 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0300-0047-09256459b9b0\main.spi

00:00:35 #2752 [Verbose] >

00:00:35 #2753 [Verbose] > ╭─[ 283.27ms - stdout ]────────────────────────────────────────────────────────╮

00:00:35 #2754 [Verbose] > │ ()                                                                           │

00:00:35 #2755 [Verbose] > │                                                                              │

00:00:35 #2756 [Verbose] > │                                                                              │

00:00:35 #2757 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:35 #2758 [Verbose] >

00:00:35 #2759 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:35 #2760 [Verbose] > // // test

00:00:35 #2761 [Verbose] >

00:00:35 #2762 [Verbose] > vec 1 2 3 ^-^ vec 4 5 6

00:00:35 #2763 [Verbose] > |> _equal (vec -3 -3 -3)

00:00:35 #2764 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0329-2903-27da5b53702c\main.spi

00:00:35 #2765 [Verbose] >

00:00:35 #2766 [Verbose] > ╭─[ 190.43ms - stdout ]────────────────────────────────────────────────────────╮

00:00:35 #2767 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:35 #2768 [Verbose] > │     let v0 : string = $"__expect / actual: %A{struct (-3.0, -3.0, -3.0)} /   │

00:00:35 #2769 [Verbose] > │ expected: %A{struct (-3.0, -3.0, -3.0)}"                                     │

00:00:35 #2770 [Verbose] > │     ()                                                                       │

00:00:35 #2771 [Verbose] > │ method0()                                                                    │

00:00:35 #2772 [Verbose] > │                                                                              │

00:00:35 #2773 [Verbose] > │                                                                              │

00:00:35 #2774 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:35 #2775 [Verbose] >

00:00:35 #2776 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:35 #2777 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:35 #2778 [Verbose] > │ ### <.>                                                                      │

00:00:35 #2779 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:35 #2780 [Verbose] >

00:00:35 #2781 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:35 #2782 [Verbose] > inl (<.>) { x = ax y = ay z = az } { x = bx y = by z = bz } =

00:00:35 #2783 [Verbose] >     ax * bx + ay * by + az * bz

00:00:35 #2784 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0348-4891-41f9cf556e27\main.spi

00:00:35 #2785 [Verbose] >

00:00:35 #2786 [Verbose] > ╭─[ 287.00ms - stdout ]────────────────────────────────────────────────────────╮

00:00:35 #2787 [Verbose] > │ ()                                                                           │

00:00:35 #2788 [Verbose] > │                                                                              │

00:00:35 #2789 [Verbose] > │                                                                              │

00:00:35 #2790 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:35 #2791 [Verbose] >

00:00:35 #2792 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:35 #2793 [Verbose] > // // test

00:00:35 #2794 [Verbose] >

00:00:35 #2795 [Verbose] > vec 1 2 3 <.> vec 4 5 6

00:00:35 #2796 [Verbose] > |> _equal 32

00:00:36 #2797 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0377-7787-78c510312f7b\main.spi

00:00:36 #2798 [Verbose] >

00:00:36 #2799 [Verbose] > ╭─[ 216.08ms - stdout ]────────────────────────────────────────────────────────╮

00:00:36 #2800 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:36 #2801 [Verbose] > │     let v0 : string = $"__expect / actual: %A{32.0} / expected: %A{32.0}"    │

00:00:36 #2802 [Verbose] > │     ()                                                                       │

00:00:36 #2803 [Verbose] > │ method0()                                                                    │

00:00:36 #2804 [Verbose] > │                                                                              │

00:00:36 #2805 [Verbose] > │                                                                              │

00:00:36 #2806 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:36 #2807 [Verbose] >

00:00:36 #2808 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:36 #2809 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:36 #2810 [Verbose] > │ ### \>\<                                                                     │

00:00:36 #2811 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:36 #2812 [Verbose] >

00:00:36 #2813 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:36 #2814 [Verbose] > inl (><) (a : vec) (b : vec) =

00:00:36 #2815 [Verbose] >     vec

00:00:36 #2816 [Verbose] >         (a.y * b.z - a.z * b.y)

00:00:36 #2817 [Verbose] >         (a.z * b.x - a.x * b.z)

00:00:36 #2818 [Verbose] >         (a.x * b.y - a.y * b.x)

00:00:36 #2819 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0400-0047-0f9381cfd6db\main.spi

00:00:36 #2820 [Verbose] >

00:00:36 #2821 [Verbose] > ╭─[ 232.38ms - stdout ]────────────────────────────────────────────────────────╮

00:00:36 #2822 [Verbose] > │ ()                                                                           │

00:00:36 #2823 [Verbose] > │                                                                              │

00:00:36 #2824 [Verbose] > │                                                                              │

00:00:36 #2825 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:36 #2826 [Verbose] >

00:00:36 #2827 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:36 #2828 [Verbose] > // // test

00:00:36 #2829 [Verbose] >

00:00:36 #2830 [Verbose] > vec 1 2 3 >< vec 4 5 6

00:00:36 #2831 [Verbose] > |> _equal (vec -3 6 -3)

00:00:36 #2832 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0423-2379-20bac5163941\main.spi

00:00:36 #2833 [Verbose] >

00:00:36 #2834 [Verbose] > ╭─[ 275.97ms - stdout ]────────────────────────────────────────────────────────╮

00:00:36 #2835 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:36 #2836 [Verbose] > │     let v0 : string = $"__expect / actual: %A{struct (-3.0, 6.0, -3.0)} /    │

00:00:36 #2837 [Verbose] > │ expected: %A{struct (-3.0, 6.0, -3.0)}"                                      │

00:00:36 #2838 [Verbose] > │     ()                                                                       │

00:00:36 #2839 [Verbose] > │ method0()                                                                    │

00:00:36 #2840 [Verbose] > │                                                                              │

00:00:36 #2841 [Verbose] > │                                                                              │

00:00:36 #2842 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:36 #2843 [Verbose] >

00:00:36 #2844 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:36 #2845 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:36 #2846 [Verbose] > │ ### magnitude                                                                │

00:00:36 #2847 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:36 #2848 [Verbose] >

00:00:36 #2849 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:36 #2850 [Verbose] > inl magnitude v =

00:00:36 #2851 [Verbose] >     v <.> v |> sqrt

00:00:36 #2852 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0452-5252-5a64fb8f9c16\main.spi

00:00:36 #2853 [Verbose] >

00:00:36 #2854 [Verbose] > ╭─[ 207.02ms - stdout ]────────────────────────────────────────────────────────╮

00:00:36 #2855 [Verbose] > │ ()                                                                           │

00:00:36 #2856 [Verbose] > │                                                                              │

00:00:36 #2857 [Verbose] > │                                                                              │

00:00:36 #2858 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:36 #2859 [Verbose] >

00:00:36 #2860 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:36 #2861 [Verbose] > // // test

00:00:36 #2862 [Verbose] >

00:00:36 #2863 [Verbose] > vec 1 2 3

00:00:36 #2864 [Verbose] > |> magnitude

00:00:36 #2865 [Verbose] > |> _almost_equal 3.7416573867739413

00:00:37 #2866 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0473-7357-7d42cdaea823\main.spi

00:00:37 #2867 [Verbose] >

00:00:37 #2868 [Verbose] > ╭─[ 265.45ms - stdout ]────────────────────────────────────────────────────────╮

00:00:37 #2869 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:37 #2870 [Verbose] > │     let v0 : string = $"__expect / actual: %A{3.7416573867739413} /          │

00:00:37 #2871 [Verbose] > │ expected: %A{3.7416573867739413}"                                            │

00:00:37 #2872 [Verbose] > │     ()                                                                       │

00:00:37 #2873 [Verbose] > │ method0()                                                                    │

00:00:37 #2874 [Verbose] > │                                                                              │

00:00:37 #2875 [Verbose] > │                                                                              │

00:00:37 #2876 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:37 #2877 [Verbose] >

00:00:37 #2878 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:37 #2879 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:37 #2880 [Verbose] > │ ### v1                                                                       │

00:00:37 #2881 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:37 #2882 [Verbose] >

00:00:37 #2883 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:37 #2884 [Verbose] > inl v1 t =

00:00:37 #2885 [Verbose] >     2 *^ (t ** 2 *^ i_hat () ^+^ 3 *^ (t ** 3 *^ j_hat () ^+^ t ** 4 *^ k_hat

00:00:37 #2886 [Verbose] > ()))

00:00:37 #2887 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0500-0092-036b675def94\main.spi

00:00:37 #2888 [Verbose] >

00:00:37 #2889 [Verbose] > ╭─[ 255.47ms - stdout ]────────────────────────────────────────────────────────╮

00:00:37 #2890 [Verbose] > │ ()                                                                           │

00:00:37 #2891 [Verbose] > │                                                                              │

00:00:37 #2892 [Verbose] > │                                                                              │

00:00:37 #2893 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:37 #2894 [Verbose] >

00:00:37 #2895 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:37 #2896 [Verbose] > // // test

00:00:37 #2897 [Verbose] >

00:00:37 #2898 [Verbose] > v1 1

00:00:37 #2899 [Verbose] > |> _equal (vec 2 6 6)

00:00:37 #2900 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0526-2687-2d4d350446dc\main.spi

00:00:37 #2901 [Verbose] >

00:00:37 #2902 [Verbose] > ╭─[ 253.45ms - stdout ]────────────────────────────────────────────────────────╮

00:00:37 #2903 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:37 #2904 [Verbose] > │     let v0 : string = $"__expect / actual: %A{struct (2.0, 6.0, 6.0)} /      │

00:00:37 #2905 [Verbose] > │ expected: %A{struct (2.0, 6.0, 6.0)}"                                        │

00:00:37 #2906 [Verbose] > │     ()                                                                       │

00:00:37 #2907 [Verbose] > │ method0()                                                                    │

00:00:37 #2908 [Verbose] > │                                                                              │

00:00:37 #2909 [Verbose] > │                                                                              │

00:00:37 #2910 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:37 #2911 [Verbose] >

00:00:37 #2912 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:37 #2913 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:37 #2914 [Verbose] > │ ### vec_derivative                                                           │

00:00:37 #2915 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:37 #2916 [Verbose] >

00:00:37 #2917 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:37 #2918 [Verbose] > type vec_derivative = (f64 -> vec) -> f64 -> vec

00:00:37 #2919 [Verbose] >

00:00:37 #2920 [Verbose] > inl vec_derivative dt : vec_derivative =

00:00:37 #2921 [Verbose] >     fun v t =>

00:00:37 #2922 [Verbose] >         (v (t + dt / 2) ^-^ v (t - dt / 2)) ^/ dt

00:00:37 #2923 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0554-5443-57078a5c2922\main.spi

00:00:37 #2924 [Verbose] >

00:00:37 #2925 [Verbose] > ╭─[ 260.76ms - stdout ]────────────────────────────────────────────────────────╮

00:00:37 #2926 [Verbose] > │ ()                                                                           │

00:00:37 #2927 [Verbose] > │                                                                              │

00:00:37 #2928 [Verbose] > │                                                                              │

00:00:37 #2929 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:37 #2930 [Verbose] >

00:00:37 #2931 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:37 #2932 [Verbose] > // // test

00:00:37 #2933 [Verbose] >

00:00:37 #2934 [Verbose] > vec_derivative 0.01 v1 3 .x

00:00:37 #2935 [Verbose] > |> _almost_equal (derivative 0.01 (v1 >> fun v => v.x) 3)

00:00:38 #2936 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0580-8063-89e7b85a8599\main.spi

00:00:38 #2937 [Verbose] >

00:00:38 #2938 [Verbose] > ╭─[ 240.48ms - stdout ]────────────────────────────────────────────────────────╮

00:00:38 #2939 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:38 #2940 [Verbose] > │     let v0 : string = $"__expect / actual: %A{11.999999999999744} /          │

00:00:38 #2941 [Verbose] > │ expected: %A{11.999999999999744}"                                            │

00:00:38 #2942 [Verbose] > │     ()                                                                       │

00:00:38 #2943 [Verbose] > │ method0()                                                                    │

00:00:38 #2944 [Verbose] > │                                                                              │

00:00:38 #2945 [Verbose] > │                                                                              │

00:00:38 #2946 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:38 #2947 [Verbose] >

00:00:38 #2948 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:38 #2949 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:38 #2950 [Verbose] > │ ## states_ps                                                                 │

00:00:38 #2951 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:38 #2952 [Verbose] >

00:00:38 #2953 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:38 #2954 [Verbose] > nominal particle_state =

00:00:38 #2955 [Verbose] >     {

00:00:38 #2956 [Verbose] >         mass : f64

00:00:38 #2957 [Verbose] >         charge : f64

00:00:38 #2958 [Verbose] >         time : f64

00:00:38 #2959 [Verbose] >         pos_vec : vec

00:00:38 #2960 [Verbose] >         velocity : vec

00:00:38 #2961 [Verbose] >     }

00:00:38 #2962 [Verbose] >

00:00:38 #2963 [Verbose] > inl default_particle_state () : particle_state =

00:00:38 #2964 [Verbose] >     particle_state {

00:00:38 #2965 [Verbose] >         mass = 1

00:00:38 #2966 [Verbose] >         charge = 0

00:00:38 #2967 [Verbose] >         time = 0

00:00:38 #2968 [Verbose] >         pos_vec = zero_vec ()

00:00:38 #2969 [Verbose] >         velocity = zero_vec ()

00:00:38 #2970 [Verbose] >     }

00:00:38 #2971 [Verbose] >

00:00:38 #2972 [Verbose] > type one_body_force = particle_state -> vec

00:00:38 #2973 [Verbose] >

00:00:38 #2974 [Verbose] > nominal d_particle_state =

00:00:38 #2975 [Verbose] >     {

00:00:38 #2976 [Verbose] >         dmdt : f64

00:00:38 #2977 [Verbose] >         dqdt : f64

00:00:38 #2978 [Verbose] >         dtdt : f64

00:00:38 #2979 [Verbose] >         drdt : vec

00:00:38 #2980 [Verbose] >         dvdt : vec

00:00:38 #2981 [Verbose] >     }

00:00:38 #2982 [Verbose] >

00:00:38 #2983 [Verbose] > inl newton_second_ps (fs : list one_body_force) (st : particle_state) :

00:00:38 #2984 [Verbose] > d_particle_state =

00:00:38 #2985 [Verbose] >     inl f_net = fs |> listm.map (fun f => f st) |> sum_vec

00:00:38 #2986 [Verbose] >     d_particle_state {

00:00:38 #2987 [Verbose] >         dmdt = 0

00:00:38 #2988 [Verbose] >         dqdt = 0

00:00:38 #2989 [Verbose] >         dtdt = 1

00:00:38 #2990 [Verbose] >         drdt = st.velocity

00:00:38 #2991 [Verbose] >         dvdt = f_net ^/ st.mass

00:00:38 #2992 [Verbose] >     }

00:00:38 #2993 [Verbose] >

00:00:38 #2994 [Verbose] > inl earth_surface_gravity (st : particle_state) =

00:00:38 #2995 [Verbose] >     inl g = 9.80665

00:00:38 #2996 [Verbose] >     -st.mass * g *^ k_hat ()

00:00:38 #2997 [Verbose] >

00:00:38 #2998 [Verbose] > inl air_resistance drag rho area (st : particle_state) =

00:00:38 #2999 [Verbose] >     -0.5 * drag * rho * area * magnitude st.velocity *^ st.velocity

00:00:38 #3000 [Verbose] >

00:00:38 #3001 [Verbose] > inl euler_cromer_ps dt (deriv : particle_state -> d_particle_state)

00:00:38 #3002 [Verbose] > (particle_state st) =

00:00:38 #3003 [Verbose] >     inl dst : d_particle_state = deriv (particle_state st)

00:00:38 #3004 [Verbose] >     inl v' = st.velocity ^+^ dst.dvdt ^* dt

00:00:38 #3005 [Verbose] >     particle_state { st with

00:00:38 #3006 [Verbose] >         time = st.time + dt

00:00:38 #3007 [Verbose] >         pos_vec = st.pos_vec ^+^ v' ^* dt

00:00:38 #3008 [Verbose] >         velocity = st.velocity ^+^ dst.dvdt ^* dt

00:00:38 #3009 [Verbose] >     }

00:00:38 #3010 [Verbose] >

00:00:38 #3011 [Verbose] > instance (+++) d_particle_state = fun (dps : d_particle_state) (dps' :

00:00:38 #3012 [Verbose] > d_particle_state) =>

00:00:38 #3013 [Verbose] >     d_particle_state {

00:00:38 #3014 [Verbose] >         dmdt = dps.dmdt + dps'.dmdt

00:00:38 #3015 [Verbose] >         dqdt = dps.dqdt + dps'.dqdt

00:00:38 #3016 [Verbose] >         dtdt = dps.dtdt + dps'.dtdt

00:00:38 #3017 [Verbose] >         drdt = dps.drdt ^+^ dps'.drdt

00:00:38 #3018 [Verbose] >         dvdt = dps.dvdt ^+^ dps'.dvdt

00:00:38 #3019 [Verbose] >     }

00:00:38 #3020 [Verbose] >

00:00:38 #3021 [Verbose] > instance scale d_particle_state = fun w (dps : d_particle_state) =>

00:00:38 #3022 [Verbose] >     d_particle_state {

00:00:38 #3023 [Verbose] >         dmdt = w * dps.dmdt

00:00:38 #3024 [Verbose] >         dqdt = w * dps.dqdt

00:00:38 #3025 [Verbose] >         dtdt = w * dps.dtdt

00:00:38 #3026 [Verbose] >         drdt = w *^ dps.drdt

00:00:38 #3027 [Verbose] >         dvdt = w *^ dps.dvdt

00:00:38 #3028 [Verbose] >     }

00:00:38 #3029 [Verbose] >

00:00:38 #3030 [Verbose] > instance shift particle_state = fun dt dps (particle_state st) =>

00:00:38 #3031 [Verbose] >     inl (d_particle_state dps) =

00:00:38 #3032 [Verbose] >         real

00:00:38 #3033 [Verbose] >             match dps with

00:00:38 #3034 [Verbose] >             | d_particle_state _ => dps

00:00:38 #3035 [Verbose] >     particle_state { st with

00:00:38 #3036 [Verbose] >         time = st.time + dps.dtdt * dt

00:00:38 #3037 [Verbose] >         pos_vec = st.pos_vec ^+^ dps.drdt ^* dt

00:00:38 #3038 [Verbose] >         velocity = st.velocity ^+^ dps.dvdt ^* dt

00:00:38 #3039 [Verbose] >     }

00:00:38 #3040 [Verbose] >

00:00:38 #3041 [Verbose] > inl states_ps (method : numerical_method particle_state d_particle_state) : _ ->

00:00:38 #3042 [Verbose] > _ -> i32 -> particle_state =

00:00:38 #3043 [Verbose] >     newton_second_ps >> method >> seq.iterate_

00:00:38 #3044 [Verbose] >

00:00:38 #3045 [Verbose] > inl z_ge0 sts =

00:00:38 #3046 [Verbose] >     sts

00:00:38 #3047 [Verbose] >     |> seq.take_while_ (fun (particle_state st) _ => st.pos_vec.z >= 0)

00:00:38 #3048 [Verbose] >

00:00:38 #3049 [Verbose] > inl trajectory sts =

00:00:38 #3050 [Verbose] >     sts |> listm.map (fun (particle_state st) => st.pos_vec.y, st.pos_vec.z)

00:00:38 #3051 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0605-0566-03132e3d2a82\main.spi

00:00:38 #3052 [Verbose] >

00:00:38 #3053 [Verbose] > ╭─[ 252.70ms - stdout ]────────────────────────────────────────────────────────╮

00:00:38 #3054 [Verbose] > │ ()                                                                           │

00:00:38 #3055 [Verbose] > │                                                                              │

00:00:38 #3056 [Verbose] > │                                                                              │

00:00:38 #3057 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:38 #3058 [Verbose] >

00:00:38 #3059 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:38 #3060 [Verbose] > // // test

00:00:38 #3061 [Verbose] >

00:00:38 #3062 [Verbose] > inl update_ps (method : numerical_method particle_state d_particle_state) =

00:00:38 #3063 [Verbose] >     newton_second_ps >> method

00:00:38 #3064 [Verbose] >

00:00:38 #3065 [Verbose] > inl position_ps (method : numerical_method particle_state d_particle_state) fs

00:00:38 #3066 [Verbose] > st t =

00:00:38 #3067 [Verbose] >     inl states : i32 -> particle_state = states_ps method fs st

00:00:38 #3068 [Verbose] >     inl dt = (states 1).time - (states 0).time

00:00:38 #3069 [Verbose] >     inl num_steps = t / dt |> math.round |> abs

00:00:38 #3070 [Verbose] >     inl st1 = solver' method (newton_second_ps fs) st num_steps

00:00:38 #3071 [Verbose] >     st1.pos_vec

00:00:38 #3072 [Verbose] >

00:00:38 #3073 [Verbose] > inl sun_gravity (st : particle_state) : vec =

00:00:38 #3074 [Verbose] >     inl big_g = 0.0000000000667408

00:00:38 #3075 [Verbose] >     inl sun_mass = 1988480000000000000000000000000

00:00:38 #3076 [Verbose] >     -big_g * sun_mass * st.mass *^ st.pos_vec ^/ magnitude st.pos_vec ** 3

00:00:38 #3077 [Verbose] >

00:00:38 #3078 [Verbose] > inl wind_force v_wind drag rho area (st : particle_state) =

00:00:38 #3079 [Verbose] >     inl v_rel = st.velocity ^-^ v_wind

00:00:38 #3080 [Verbose] >     -0.5 * drag * rho * area * magnitude v_rel *^ v_rel

00:00:38 #3081 [Verbose] >

00:00:38 #3082 [Verbose] > inl rock_state () =

00:00:38 #3083 [Verbose] >     inl (particle_state default_particle_state') = default_particle_state ()

00:00:38 #3084 [Verbose] >     particle_state { default_particle_state' with

00:00:38 #3085 [Verbose] >         mass = 2

00:00:38 #3086 [Verbose] >         velocity = vec 3 0 4

00:00:38 #3087 [Verbose] >     }

00:00:38 #3088 [Verbose] >

00:00:38 #3089 [Verbose] > inl halley_update dt =

00:00:38 #3090 [Verbose] >     update_ps (euler_cromer_ps dt) [[ sun_gravity ]]

00:00:38 #3091 [Verbose] >

00:00:38 #3092 [Verbose] > inl halley_initial () =

00:00:38 #3093 [Verbose] >     inl (particle_state default_particle_state') = default_particle_state ()

00:00:38 #3094 [Verbose] >     particle_state { default_particle_state' with

00:00:38 #3095 [Verbose] >         mass = 220000000000000

00:00:38 #3096 [Verbose] >         pos_vec = 87660000000 *^ i_hat ()

00:00:38 #3097 [Verbose] >         velocity = 54569 *^ j_hat ()

00:00:38 #3098 [Verbose] >     }

00:00:38 #3099 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0631-3144-3fe19e7cf3be\main.spi

00:00:38 #3100 [Verbose] >

00:00:38 #3101 [Verbose] > ╭─[ 235.57ms - stdout ]────────────────────────────────────────────────────────╮

00:00:38 #3102 [Verbose] > │ ()                                                                           │

00:00:38 #3103 [Verbose] > │                                                                              │

00:00:38 #3104 [Verbose] > │                                                                              │

00:00:38 #3105 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:38 #3106 [Verbose] >

00:00:38 #3107 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:38 #3108 [Verbose] > // // test

00:00:38 #3109 [Verbose] >

00:00:38 #3110 [Verbose] > inl baseball_forces () =

00:00:38 #3111 [Verbose] >     inl area = pi * (0.074 / 2) ** 2

00:00:38 #3112 [Verbose] >     [[

00:00:38 #3113 [Verbose] >         earth_surface_gravity

00:00:38 #3114 [Verbose] >         air_resistance 0.3 1.225 area

00:00:38 #3115 [Verbose] >     ]]

00:00:38 #3116 [Verbose] >

00:00:38 #3117 [Verbose] > inl baseball_trajectory dt v0 theta_deg =

00:00:38 #3118 [Verbose] >     inl theta_rad = theta_deg * pi / 180

00:00:38 #3119 [Verbose] >     inl vy0 = v0 * cos theta_rad

00:00:38 #3120 [Verbose] >     inl vz0 = v0 * sin theta_rad

00:00:38 #3121 [Verbose] >     inl initial_state =

00:00:38 #3122 [Verbose] >         particle_state {

00:00:38 #3123 [Verbose] >             mass = 0.145

00:00:38 #3124 [Verbose] >             charge = 0

00:00:38 #3125 [Verbose] >             time = 0

00:00:38 #3126 [Verbose] >             pos_vec = zero_vec ()

00:00:38 #3127 [Verbose] >             velocity = vec 0 vy0 vz0

00:00:38 #3128 [Verbose] >         }

00:00:38 #3129 [Verbose] >     states_ps (euler_cromer_ps dt) (baseball_forces ()) initial_state

00:00:38 #3130 [Verbose] >     >> Some

00:00:38 #3131 [Verbose] >     |> z_ge0

00:00:38 #3132 [Verbose] >     |> trajectory

00:00:38 #3133 [Verbose] >

00:00:38 #3134 [Verbose] > inl baseball_range dt v0 theta_deg =

00:00:38 #3135 [Verbose] >     baseball_trajectory dt v0 theta_deg

00:00:38 #3136 [Verbose] >     |> listm.fold (fun _ (y, _) => y) 0

00:00:38 #3137 [Verbose] >

00:00:38 #3138 [Verbose] > inl x : a _ f64 = am'.init_series 10 80 1

00:00:38 #3139 [Verbose] > inl y = x |> am.map (baseball_range 0.01 45)

00:00:38 #3140 [Verbose] > "range for a baseball hit at 45 m/s",

00:00:38 #3141 [Verbose] > "angle above horizontal (degrees)",

00:00:38 #3142 [Verbose] > "",

00:00:38 #3143 [Verbose] > ;[[ "horizontal range (m)", x, y ]]

00:00:38 #3144 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0655-5507-57d7ad05a99f\main.spi

00:00:39 #3145 [Verbose] >

00:00:39 #3146 [Verbose] > ╭─[ 1.22s - return value ]─────────────────────────────────────────────────────╮

00:00:39 #3147 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:39 #3148 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:39 #3149 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:39 #3150 [Verbose] > │ stroke="none"/>                                                              │

00:00:39 #3151 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:39 #3152 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:39 #3153 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:39 #3154 [Verbose] > │ range for a baseball hit at 45 m/s                                           │

00:00:39 #3155 [Verbose] > │ </text>                                                                      │

00:00:39 #3156 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="55" y1="424" x2="55" │

00:00:39 #3157 [Verbose] > │ y2="75"/>                                                                    │

00:00:39 #3158 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

00:00:39 #3159 [Verbose] > │ y2="75"/>                                                                    │

00:00:39 #3160 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:39 #3161 [Verbose] > │ y2="75"/>                                                                    │

00:00:39 #3162 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

00:00:39 #3163 [Verbose] > │ y2="75"/>                                                                    │

00:00:39 #3164 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="...                         │

00:00:39 #3165 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:39 #3166 [Verbose] >

00:00:39 #3167 [Verbose] > ╭─[ 1.24s - stdout ]───────────────────────────────────────────────────────────╮

00:00:39 #3168 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:00:39 #3169 [Verbose] > │ and UH0 =                                                                    │

00:00:39 #3170 [Verbose] > │     | UH0_0 of float * float * float * float * float * float * float * float │

00:00:39 #3171 [Verbose] > │ * float * UH0                                                                │

00:00:39 #3172 [Verbose] > │     | UH0_1                                                                  │

00:00:39 #3173 [Verbose] > │ and UH1 =                                                                    │

00:00:39 #3174 [Verbose] > │     | UH1_0 of float * float * UH1                                           │

00:00:39 #3175 [Verbose] > │     | UH1_1                                                                  │

00:00:39 #3176 [Verbose] > │ let rec method1 (v0 : Mut0) : bool =                                         │

00:00:39 #3177 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:39 #3178 [Verbose] > │     let v2 : bool = v1 < 71                                                  │

00:00:39 #3179 [Verbose] > │     v2                                                                       │

00:00:39 #3180 [Verbose] > │ and method2 (v0 : int32, v1 : Mut0) : bool =                                 │

00:00:39 #3181 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:00:39 #3182 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:39 #3183 [Verbose] > │     v3                                                                       │

00:00:39 #3184 [Verbose] > │ and method4 (v0 : float, v1 : float, v2 : float, v3 : float, v4 : float, v5  │

00:00:39 #3185 [Verbose] > │ : float, v6 : float, v7 : float, v8 : float, v9 : int32) : struct (float *   │

00:00:39 #3186 [Verbose] > │ float * float * float * float * float * float * float * float) =             │

00:00:39 #3187 [Verbose] > │     let v10 : bool = v9 <= 0                                                 │

00:00:39 #3188 [Verbose] > │     if v10 then                                                              │

00:00:39 #3189 [Verbose] > │         struct (v0, v1, v2, v3, v4, v5, v6, v7, v8)                          │

00:00:39 #3190 [Verbose] > │     else                                                                     │

00:00:39 #3191 [Verbose] > │         let v11 : float = v6 * v6                                            │

00:00:39 #3192 [Verbose] > │         let v12 : float = v7 * v7                                            │

00:00:39 #3193 [Verbose] > │         let v13 : float = v11 + v12                                          │

00:00:39 #3194 [Verbose] > │         let v14 : float = v8 * v8                                            │

00:00:39 #3195 [Verbose] > │         let v15 : float = v13 + v14                                          │

00:00:39 #3196 [Verbose] > │         let v16 : float = sqrt v15                                           │

00:00:39 #3197 [Verbose] > │         let v17 : float = -0.0007902794129829633 * v16                       │

00:00:39 #3198 [Verbose] > │         let v18 : float = v17 * v6                                           │

00:00:39 #3199 [Verbose] > │         let v19 : float = v17 * v7                                           │

00:00:39 #3200 [Verbose] > │         let v20 : float = v17 * v8                                           │

00:00:39 #3201 [Verbose] > │         let v21 : float =  -v1                                               │

00:00:39 #3202 [Verbose] > │         let v22 : float = v21 * 9.80665                                      │

00:00:39 #3203 [Verbose] > │         let v23 : float = v22 * 0.0                                          │

00:00:39 #3204 [Verbose] > │         let v24 : float = v23 + v18                                          │

00:00:39 #3205 [Verbose] > │         let v25 : float = v23 + v19                                          │

00:00:39 #3206 [Verbose] > │         let v26 : float = v22 + v20                                          │

00:00:39 #3207 [Verbose] > │         let v27 : float = v24 / v1                                           │

00:00:39 #3208 [Verbose] > │         let v28 : float = v25 / v1                                           │

00:00:39 #3209 [Verbose] > │         let v29 : float = v26 / v1                                           │

00:00:39 #3210 [Verbose] > │         let v30 : float = 0.01 * v27                                         │

00:00:39 #3211 [Verbose] > │         let v31 : float = 0.01 * v28                                         │

00:00:39 #3212 [Verbose] > │         let v32 : float = 0.01 * v29                                         │

00:00:39 #3213 [Verbose] > │         let v33 : float = v6 + v30                                           │

00:00:39 #3214 [Verbose] > │         let v34 : float = v7 + v31                                           │

00:00:39 #3215 [Verbose] > │         let v35 : float = v8 + v32                                           │

00:00:39 #3216 [Verbose] > │         let v36 : float = v5 + 0.01                                          │

00:00:39 #3217 [Verbose] > │         let v37 : float = 0.01 * v33                                         │

00:00:39 #3218 [Verbose] > │         let v38 : float = 0.01 * v34                                         │

00:00:39 #3219 [Verbose] > │         let v39 : float = 0.01 * v35                                         │

00:00:39 #3220 [Verbose] > │         let v40 : float = v2 + v37                                           │

00:00:39 #3221 [Verbose] > │         let v41 : float = v3 + v38                                           │

00:00:39 #3222 [Verbose] > │         let v42 : float = v4 + v39                                           │

00:00:39 #3223 [Verbose] > │         let v43 : int32 = v9 - 1                                             │

00:00:39 #3224 [Verbose] > │         method4(v0, v1, v40, v41, v42, v36, v33, v34, v35, v43)              │

00:00:39 #3225 [Verbose] > │ and method5 (v0 : UH0, v1 : UH0) : UH0 =                                     │

00:00:39 #3226 [Verbose] > │     match v0 with                                                            │

00:00:39 #3227 [Verbose] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

00:00:39 #3228 [Verbose] > │         let v12 : UH0 = UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

00:00:39 #3229 [Verbose] > │         method5(v11, v12)                                                    │

00:00:39 #3230 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:39 #3231 [Verbose] > │         v1                                                                   │

00:00:39 #3232 [Verbose] > │ and method3 (v0 : float, v1 : float, v2 : UH0, v3 : int32) : UH0 =           │

00:00:39 #3233 [Verbose] > │     let v4 : float = 0.0                                                     │

00:00:39 #3234 [Verbose] > │     let v5 : float = 0.145                                                   │

00:00:39 #3235 [Verbose] > │     let v6 : float = 0.0                                                     │

00:00:39 #3236 [Verbose] > │     let v7 : float = 0.0                                                     │

00:00:39 #3237 [Verbose] > │     let v8 : float = 0.0                                                     │

00:00:39 #3238 [Verbose] > │     let v9 : float = 0.0                                                     │

00:00:39 #3239 [Verbose] > │     let v10 : float = 0.0                                                    │

00:00:39 #3240 [Verbose] > │     let struct (v11 : float, v12 : float, v13 : float, v14 : float, v15 :    │

00:00:39 #3241 [Verbose] > │ float, v16 : float, v17 : float, v18 : float, v19 : float) = method4(v4, v5, │

00:00:39 #3242 [Verbose] > │ v6, v7, v8, v9, v10, v0, v1, v3)                                             │

00:00:39 #3243 [Verbose] > │     let v20 : bool = v15 >= 0.0                                              │

00:00:39 #3244 [Verbose] > │     if v20 then                                                              │

00:00:39 #3245 [Verbose] > │         let v21 : UH0 = UH0_0(v11, v12, v13, v14, v15, v16, v17, v18, v19,   │

00:00:39 #3246 [Verbose] > │ v2)                                                                          │

00:00:39 #3247 [Verbose] > │         let v22 : int32 = v3 + 1                                             │

00:00:39 #3248 [Verbose] > │         method3(v0, v1, v21, v22)                                            │

00:00:39 #3249 [Verbose] > │     else                                                                     │

00:00:39 #3250 [Verbose] > │         let v24 : UH0 = UH0_1                                                │

00:00:39 #3251 [Verbose] > │         method5(v2, v24)                                                     │

00:00:39 #3252 [Verbose] > │ and method6 (v0 : UH0, v1 : UH1) : UH1 =                                     │

00:00:39 #3253 [Verbose] > │     match v0 with                                                            │

00:00:39 #3254 [Verbose] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

00:00:39 #3255 [Verbose] > │         let v12 : UH1 = method6(v11, v1)                                     │

00:00:39 #3256 [Verbose] > │         UH1_0(v5, v6, v12)                                                   │

00:00:39 #3257 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:39 #3258 [Verbose] > │         v1                                                                   │

00:00:39 #3259 [Verbose] > │ and method7 (v0 : UH1, v1 : float) : float =                                 │

00:00:39 #3260 [Verbose] > │     match v0 with                                                            │

00:00:39 #3261 [Verbose] > │     | UH1_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:39 #3262 [Verbose] > │         method7(v4, v2)                                                      │

00:00:39 #3263 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:39 #3264 [Verbose] > │         v1                                                                   │

00:00:39 #3265 [Verbose] > │ and method8 (v0 : (struct (string * (float []) * (float [])) [])) : (struct  │

00:00:39 #3266 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:39 #3267 [Verbose] > │     v0                                                                       │

00:00:39 #3268 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:39 #3269 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:39 #3270 [Verbose] > │     let v0 : (float []) = Array.zeroCreate<float> (71)                       │

00:00:39 #3271 [Verbose] > │     let v1 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:39 #3272 [Verbose] > │     while method1(v1) do                                                     │

00:00:39 #3273 [Verbose] > │         let v3 : int32 = v1.l0                                               │

00:00:39 #3274 [Verbose] > │         let v4 : float = float v3                                            │

00:00:39 #3275 [Verbose] > │         let v5 : float = 10.0 + v4                                           │

00:00:39 #3276 [Verbose] > │         v0.[int v3] <- v5                                                    │

00:00:40 #3277 [Verbose] > │         let v6 : int32 = v3 + 1                                              │

00:00:40 #3278 [Verbose] > │         v1.l0 <- v6                                                          │

00:00:40 #3279 [Verbose] > │         ()                                                                   │

00:00:40 #3280 [Verbose] > │     let v7 : int32 = v0.Length                                               │

00:00:40 #3281 [Verbose] > │     let v8 : (float []) = Array.zeroCreate<float> (v7)                       │

00:00:40 #3282 [Verbose] > │     let v9 : Mut0 = {l0 = 0} : Mut0                                          │

00:00:40 #3283 [Verbose] > │     while method2(v7, v9) do                                                 │

00:00:40 #3284 [Verbose] > │         let v11 : int32 = v9.l0                                              │

00:00:40 #3285 [Verbose] > │         let v12 : float = v0.[int v11]                                       │

00:00:40 #3286 [Verbose] > │         let v13 : float = v12 * 3.141592653589793                            │

00:00:40 #3287 [Verbose] > │         let v14 : float = v13 / 180.0                                        │

00:00:40 #3288 [Verbose] > │         let v15 : float = cos v14                                            │

00:00:40 #3289 [Verbose] > │         let v16 : float = 45.0 * v15                                         │

00:00:40 #3290 [Verbose] > │         let v17 : float = sin v14                                            │

00:00:40 #3291 [Verbose] > │         let v18 : float = 45.0 * v17                                         │

00:00:40 #3292 [Verbose] > │         let v19 : UH0 = UH0_1                                                │

00:00:40 #3293 [Verbose] > │         let v20 : int32 = 0                                                  │

00:00:40 #3294 [Verbose] > │         let v21 : UH0 = method3(v16, v18, v19, v20)                          │

00:00:40 #3295 [Verbose] > │         let v22 : UH1 = UH1_1                                                │

00:00:40 #3296 [Verbose] > │         let v23 : UH1 = method6(v21, v22)                                    │

00:00:40 #3297 [Verbose] > │         let v24 : float = 0.0                                                │

00:00:40 #3298 [Verbose] > │         let v25 : float = method7(v23, v24)                                  │

00:00:40 #3299 [Verbose] > │         v8.[int v11] <- v25                                                  │

00:00:40 #3300 [Verbose] > │         let v26 : int32 = v11 + 1                                            │

00:00:40 #3301 [Verbose] > │         v9.l0 <- v26                                                         │

00:00:40 #3302 [Verbose] > │         ()                                                                   │

00:00:40 #3303 [Verbose] > │     let v27 : string = "horizontal range (m)"                                │

00:00:40 #3304 [Verbose] > │     let v28 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:40 #3305 [Verbose] > │ (v27, v0, v8)|]                                                              │

00:00:40 #3306 [Verbose] > │     let v29 : (struct (string * (float []) * (float [])) []) = method8(v28)  │

00:00:40 #3307 [Verbose] > │     let v30 : string = "range for a baseball hit at 45 m/s"                  │

00:00:40 #3308 [Verbose] > │     let v31 : string = "angle above horizontal (degrees)"                    │

00:00:40 #3309 [Verbose] > │     let v32 : string = ""                                                    │

00:00:40 #3310 [Verbose] > │     struct (v30, v31, v32, v29)                                              │

00:00:40 #3311 [Verbose] > │ method0()                                                                    │

00:00:40 #3312 [Verbose] > │                                                                              │

00:00:40 #3313 [Verbose] > │                                                                              │

00:00:40 #3314 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:40 #3315 [Verbose] >

00:00:40 #3316 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:40 #3317 [Verbose] > // // test

00:00:40 #3318 [Verbose] >

00:00:40 #3319 [Verbose] > inl best_angle (min, max) =

00:00:40 #3320 [Verbose] >     let rec loop theta_deg (best_range, best_theta_deg) =

00:00:40 #3321 [Verbose] >         if theta_deg > max

00:00:40 #3322 [Verbose] >         then best_range, best_theta_deg

00:00:40 #3323 [Verbose] >         else

00:00:40 #3324 [Verbose] >             inl range = baseball_range 0.01 45 theta_deg

00:00:40 #3325 [Verbose] >             loop

00:00:40 #3326 [Verbose] >                 (theta_deg + 1)

00:00:40 #3327 [Verbose] >                 (if range > best_range

00:00:40 #3328 [Verbose] >                     then range, theta_deg

00:00:40 #3329 [Verbose] >                     else best_range, best_theta_deg)

00:00:40 #3330 [Verbose] >     loop min (0f64, min)

00:00:40 #3331 [Verbose] >

00:00:40 #3332 [Verbose] > best_angle (30f64, 60f64)

00:00:40 #3333 [Verbose] > |> _equal (116.77499158246208, 41)

00:00:40 #3334 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0786-8693-8760dcdd8afe\main.spi

00:00:40 #3335 [Verbose] >

00:00:40 #3336 [Verbose] > ╭─[ 882.95ms - stdout ]────────────────────────────────────────────────────────╮

00:00:40 #3337 [Verbose] > │ type UH0 =                                                                   │

00:00:40 #3338 [Verbose] > │     | UH0_0 of float * float * float * float * float * float * float * float │

00:00:40 #3339 [Verbose] > │ * float * UH0                                                                │

00:00:40 #3340 [Verbose] > │     | UH0_1                                                                  │

00:00:40 #3341 [Verbose] > │ and UH1 =                                                                    │

00:00:40 #3342 [Verbose] > │     | UH1_0 of float * float * UH1                                           │

00:00:40 #3343 [Verbose] > │     | UH1_1                                                                  │

00:00:40 #3344 [Verbose] > │ let rec method3 (v0 : float, v1 : float, v2 : float, v3 : float, v4 : float, │

00:00:40 #3345 [Verbose] > │ v5 : float, v6 : float, v7 : float, v8 : float, v9 : int32) : struct (float  │

00:00:40 #3346 [Verbose] > │ * float * float * float * float * float * float * float * float) =           │

00:00:40 #3347 [Verbose] > │     let v10 : bool = v9 <= 0                                                 │

00:00:40 #3348 [Verbose] > │     if v10 then                                                              │

00:00:40 #3349 [Verbose] > │         struct (v0, v1, v2, v3, v4, v5, v6, v7, v8)                          │

00:00:40 #3350 [Verbose] > │     else                                                                     │

00:00:40 #3351 [Verbose] > │         let v11 : float = v6 * v6                                            │

00:00:40 #3352 [Verbose] > │         let v12 : float = v7 * v7                                            │

00:00:40 #3353 [Verbose] > │         let v13 : float = v11 + v12                                          │

00:00:40 #3354 [Verbose] > │         let v14 : float = v8 * v8                                            │

00:00:40 #3355 [Verbose] > │         let v15 : float = v13 + v14                                          │

00:00:40 #3356 [Verbose] > │         let v16 : float = sqrt v15                                           │

00:00:40 #3357 [Verbose] > │         let v17 : float = -0.0007902794129829633 * v16                       │

00:00:40 #3358 [Verbose] > │         let v18 : float = v17 * v6                                           │

00:00:40 #3359 [Verbose] > │         let v19 : float = v17 * v7                                           │

00:00:40 #3360 [Verbose] > │         let v20 : float = v17 * v8                                           │

00:00:40 #3361 [Verbose] > │         let v21 : float =  -v1                                               │

00:00:40 #3362 [Verbose] > │         let v22 : float = v21 * 9.80665                                      │

00:00:40 #3363 [Verbose] > │         let v23 : float = v22 * 0.0                                          │

00:00:40 #3364 [Verbose] > │         let v24 : float = v23 + v18                                          │

00:00:40 #3365 [Verbose] > │         let v25 : float = v23 + v19                                          │

00:00:40 #3366 [Verbose] > │         let v26 : float = v22 + v20                                          │

00:00:40 #3367 [Verbose] > │         let v27 : float = v24 / v1                                           │

00:00:40 #3368 [Verbose] > │         let v28 : float = v25 / v1                                           │

00:00:40 #3369 [Verbose] > │         let v29 : float = v26 / v1                                           │

00:00:40 #3370 [Verbose] > │         let v30 : float = 0.01 * v27                                         │

00:00:40 #3371 [Verbose] > │         let v31 : float = 0.01 * v28                                         │

00:00:40 #3372 [Verbose] > │         let v32 : float = 0.01 * v29                                         │

00:00:40 #3373 [Verbose] > │         let v33 : float = v6 + v30                                           │

00:00:40 #3374 [Verbose] > │         let v34 : float = v7 + v31                                           │

00:00:40 #3375 [Verbose] > │         let v35 : float = v8 + v32                                           │

00:00:40 #3376 [Verbose] > │         let v36 : float = v5 + 0.01                                          │

00:00:40 #3377 [Verbose] > │         let v37 : float = 0.01 * v33                                         │

00:00:40 #3378 [Verbose] > │         let v38 : float = 0.01 * v34                                         │

00:00:40 #3379 [Verbose] > │         let v39 : float = 0.01 * v35                                         │

00:00:40 #3380 [Verbose] > │         let v40 : float = v2 + v37                                           │

00:00:40 #3381 [Verbose] > │         let v41 : float = v3 + v38                                           │

00:00:40 #3382 [Verbose] > │         let v42 : float = v4 + v39                                           │

00:00:40 #3383 [Verbose] > │         let v43 : int32 = v9 - 1                                             │

00:00:40 #3384 [Verbose] > │         method3(v0, v1, v40, v41, v42, v36, v33, v34, v35, v43)              │

00:00:40 #3385 [Verbose] > │ and method4 (v0 : UH0, v1 : UH0) : UH0 =                                     │

00:00:40 #3386 [Verbose] > │     match v0 with                                                            │

00:00:40 #3387 [Verbose] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

00:00:40 #3388 [Verbose] > │         let v12 : UH0 = UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

00:00:40 #3389 [Verbose] > │         method4(v11, v12)                                                    │

00:00:40 #3390 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:40 #3391 [Verbose] > │         v1                                                                   │

00:00:40 #3392 [Verbose] > │ and method2 (v0 : float, v1 : float, v2 : UH0, v3 : int32) : UH0 =           │

00:00:40 #3393 [Verbose] > │     let v4 : float = 0.0                                                     │

00:00:40 #3394 [Verbose] > │     let v5 : float = 0.145                                                   │

00:00:40 #3395 [Verbose] > │     let v6 : float = 0.0                                                     │

00:00:40 #3396 [Verbose] > │     let v7 : float = 0.0                                                     │

00:00:40 #3397 [Verbose] > │     let v8 : float = 0.0                                                     │

00:00:40 #3398 [Verbose] > │     let v9 : float = 0.0                                                     │

00:00:40 #3399 [Verbose] > │     let v10 : float = 0.0                                                    │

00:00:40 #3400 [Verbose] > │     let struct (v11 : float, v12 : float, v13 : float, v14 : float, v15 :    │

00:00:40 #3401 [Verbose] > │ float, v16 : float, v17 : float, v18 : float, v19 : float) = method3(v4, v5, │

00:00:40 #3402 [Verbose] > │ v6, v7, v8, v9, v10, v0, v1, v3)                                             │

00:00:40 #3403 [Verbose] > │     let v20 : bool = v15 >= 0.0                                              │

00:00:40 #3404 [Verbose] > │     if v20 then                                                              │

00:00:40 #3405 [Verbose] > │         let v21 : UH0 = UH0_0(v11, v12, v13, v14, v15, v16, v17, v18, v19,   │

00:00:40 #3406 [Verbose] > │ v2)                                                                          │

00:00:40 #3407 [Verbose] > │         let v22 : int32 = v3 + 1                                             │

00:00:40 #3408 [Verbose] > │         method2(v0, v1, v21, v22)                                            │

00:00:40 #3409 [Verbose] > │     else                                                                     │

00:00:40 #3410 [Verbose] > │         let v24 : UH0 = UH0_1                                                │

00:00:40 #3411 [Verbose] > │         method4(v2, v24)                                                     │

00:00:40 #3412 [Verbose] > │ and method5 (v0 : UH0, v1 : UH1) : UH1 =                                     │

00:00:40 #3413 [Verbose] > │     match v0 with                                                            │

00:00:40 #3414 [Verbose] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

00:00:40 #3415 [Verbose] > │         let v12 : UH1 = method5(v11, v1)                                     │

00:00:40 #3416 [Verbose] > │         UH1_0(v5, v6, v12)                                                   │

00:00:40 #3417 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:40 #3418 [Verbose] > │         v1                                                                   │

00:00:40 #3419 [Verbose] > │ and method6 (v0 : UH1, v1 : float) : float =                                 │

00:00:40 #3420 [Verbose] > │     match v0 with                                                            │

00:00:40 #3421 [Verbose] > │     | UH1_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:40 #3422 [Verbose] > │         method6(v4, v2)                                                      │

00:00:40 #3423 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:40 #3424 [Verbose] > │         v1                                                                   │

00:00:40 #3425 [Verbose] > │ and method1 (v0 : float, v1 : float, v2 : float) : struct (float * float) =  │

00:00:40 #3426 [Verbose] > │     let v3 : bool = v0 > 60.0                                                │

00:00:40 #3427 [Verbose] > │     if v3 then                                                               │

00:00:40 #3428 [Verbose] > │         struct (v2, v1)                                                      │

00:00:40 #3429 [Verbose] > │     else                                                                     │

00:00:40 #3430 [Verbose] > │         let v4 : float = v0 * 3.141592653589793                              │

00:00:40 #3431 [Verbose] > │         let v5 : float = v4 / 180.0                                          │

00:00:40 #3432 [Verbose] > │         let v6 : float = cos v5                                              │

00:00:40 #3433 [Verbose] > │         let v7 : float = 45.0 * v6                                           │

00:00:40 #3434 [Verbose] > │         let v8 : float = sin v5                                              │

00:00:40 #3435 [Verbose] > │         let v9 : float = 45.0 * v8                                           │

00:00:40 #3436 [Verbose] > │         let v10 : UH0 = UH0_1                                                │

00:00:40 #3437 [Verbose] > │         let v11 : int32 = 0                                                  │

00:00:40 #3438 [Verbose] > │         let v12 : UH0 = method2(v7, v9, v10, v11)                            │

00:00:40 #3439 [Verbose] > │         let v13 : UH1 = UH1_1                                                │

00:00:40 #3440 [Verbose] > │         let v14 : UH1 = method5(v12, v13)                                    │

00:00:40 #3441 [Verbose] > │         let v15 : float = 0.0                                                │

00:00:40 #3442 [Verbose] > │         let v16 : float = method6(v14, v15)                                  │

00:00:40 #3443 [Verbose] > │         let v17 : float = v0 + 1.0                                           │

00:00:40 #3444 [Verbose] > │         let v18 : bool = v16 > v2                                            │

00:00:40 #3445 [Verbose] > │         let struct (v19 : float, v20 : float) =                              │

00:00:40 #3446 [Verbose] > │             if v18 then                                                      │

00:00:40 #3447 [Verbose] > │                 struct (v16, v0)                                             │

00:00:40 #3448 [Verbose] > │             else                                                             │

00:00:40 #3449 [Verbose] > │                 struct (v2, v1)                                              │

00:00:40 #3450 [Verbose] > │         method1(v17, v20, v19)                                               │

00:00:40 #3451 [Verbose] > │ and method0 () : unit =                                                      │

00:00:40 #3452 [Verbose] > │     let v0 : float = 30.0                                                    │

00:00:40 #3453 [Verbose] > │     let v1 : float = 0.0                                                     │

00:00:40 #3454 [Verbose] > │     let v2 : float = 30.0                                                    │

00:00:40 #3455 [Verbose] > │     let struct (v3 : float, v4 : float) = method1(v0, v2, v1)                │

00:00:40 #3456 [Verbose] > │     let v5 : string = $"__expect / actual: %A{struct (v3, v4)} / expected:   │

00:00:40 #3457 [Verbose] > │ %A{struct (116.77499158246208, 41.0)}"                                       │

00:00:40 #3458 [Verbose] > │     let v6 : bool = v3 = 116.77499158246208                                  │

00:00:40 #3459 [Verbose] > │     let v8 : bool =                                                          │

00:00:40 #3460 [Verbose] > │         if v6 then                                                           │

00:00:40 #3461 [Verbose] > │             let v7 : bool = v4 = 41.0                                        │

00:00:40 #3462 [Verbose] > │             v7                                                               │

00:00:40 #3463 [Verbose] > │         else                                                                 │

00:00:40 #3464 [Verbose] > │             false                                                            │

00:00:40 #3465 [Verbose] > │     let v9 : bool = v8 = false                                               │

00:00:40 #3466 [Verbose] > │     if v9 then                                                               │

00:00:40 #3467 [Verbose] > │         failwith<unit> v5                                                    │

00:00:40 #3468 [Verbose] > │ method0()                                                                    │

00:00:40 #3469 [Verbose] > │                                                                              │

00:00:40 #3470 [Verbose] > │                                                                              │

00:00:40 #3471 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:40 #3472 [Verbose] >

00:00:40 #3473 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:40 #3474 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:40 #3475 [Verbose] > │ ## relativity_ps                                                             │

00:00:40 #3476 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:40 #3477 [Verbose] >

00:00:40 #3478 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:40 #3479 [Verbose] > inl relativity_ps fs (st : particle_state) =

00:00:40 #3480 [Verbose] >     inl f_net = fs |> listm.map (fun f => f st) |> sum_vec

00:00:40 #3481 [Verbose] >     inl c = 299792458

00:00:40 #3482 [Verbose] >     inl u = st.velocity ^/ c

00:00:40 #3483 [Verbose] >     inl acc = sqrt (1 - (u <.> u)) *^ (f_net ^-^ (f_net <.> u) *^ u) ^/ st.mass

00:00:40 #3484 [Verbose] >     d_particle_state {

00:00:40 #3485 [Verbose] >         dmdt = 0

00:00:40 #3486 [Verbose] >         dqdt = 0

00:00:40 #3487 [Verbose] >         dtdt = 1

00:00:40 #3488 [Verbose] >         drdt = st.velocity

00:00:40 #3489 [Verbose] >         dvdt = acc

00:00:40 #3490 [Verbose] >     }

00:00:41 #3491 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0881-8131-89450a90ec93\main.spi

00:00:41 #3492 [Verbose] >

00:00:41 #3493 [Verbose] > ╭─[ 390.92ms - stdout ]────────────────────────────────────────────────────────╮

00:00:41 #3494 [Verbose] > │ ()                                                                           │

00:00:41 #3495 [Verbose] > │                                                                              │

00:00:41 #3496 [Verbose] > │                                                                              │

00:00:41 #3497 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:41 #3498 [Verbose] >

00:00:41 #3499 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:41 #3500 [Verbose] > // // test

00:00:41 #3501 [Verbose] >

00:00:41 #3502 [Verbose] > inl year = 365.25 * 24 * 60 * 60

00:00:41 #3503 [Verbose] > inl c = 299792458

00:00:41 #3504 [Verbose] > inl ~method = runge_kutta_4 100000

00:00:41 #3505 [Verbose] > inl forces = [[ fun _ => 10 *^ i_hat () ]]

00:00:41 #3506 [Verbose] > inl (particle_state default_particle_state') = default_particle_state ()

00:00:41 #3507 [Verbose] > inl initial_state =

00:00:41 #3508 [Verbose] >     particle_state { default_particle_state' with

00:00:41 #3509 [Verbose] >         mass = 1

00:00:41 #3510 [Verbose] >     }

00:00:41 #3511 [Verbose] >

00:00:41 #3512 [Verbose] > inl newton_states = solver_ method (newton_second_ps forces) initial_state

00:00:41 #3513 [Verbose] > inl relativity_states = solver_ method (relativity_ps forces) initial_state

00:00:41 #3514 [Verbose] >

00:00:41 #3515 [Verbose] > inl newton_x, newton_y =

00:00:41 #3516 [Verbose] >     newton_states

00:00:41 #3517 [Verbose] >     >> Some

00:00:41 #3518 [Verbose] >     |> seq.take_while_ (fun (particle_state st) (_ : i32) => st.time <= year)

00:00:41 #3519 [Verbose] >     |> listm.map (fun (particle_state st) => st.time / year, st.velocity.x / c)

00:00:41 #3520 [Verbose] >     |> listm'.unzip

00:00:41 #3521 [Verbose] >

00:00:41 #3522 [Verbose] > inl _, relativity_y =

00:00:41 #3523 [Verbose] >     relativity_states

00:00:41 #3524 [Verbose] >     >> Some

00:00:41 #3525 [Verbose] >     |> seq.take_while_ (fun (particle_state st) (_ : i32) => st.time <= year)

00:00:41 #3526 [Verbose] >     |> listm.map (fun (particle_state st) => st.time / year, st.velocity.x / c)

00:00:41 #3527 [Verbose] >     |> listm'.unzip

00:00:41 #3528 [Verbose] >

00:00:41 #3529 [Verbose] > inl newton_x : a i32 _ = newton_x |> listm.toArray

00:00:41 #3530 [Verbose] > inl newton_y : a i32 _ = newton_y |> listm.toArray

00:00:41 #3531 [Verbose] > inl relativity_y : a i32 _ = relativity_y |> listm.toArray

00:00:41 #3532 [Verbose] >

00:00:41 #3533 [Verbose] > "response to a constant force",

00:00:41 #3534 [Verbose] > "time (years)",

00:00:41 #3535 [Verbose] > "velocity (multiples of c)",

00:00:41 #3536 [Verbose] > ;[[

00:00:41 #3537 [Verbose] >     "newtonian", newton_x, newton_y

00:00:41 #3538 [Verbose] >     "relativistic", newton_x, relativity_y

00:00:41 #3539 [Verbose] > ]]

00:00:41 #3540 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-0920-2062-2a47b53ed285\main.spi

00:00:42 #3541 [Verbose] >

00:00:42 #3542 [Verbose] > ╭─[ 718.83ms - return value ]──────────────────────────────────────────────────╮

00:00:42 #3543 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:42 #3544 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:42 #3545 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:42 #3546 [Verbose] > │ stroke="none"/>                                                              │

00:00:42 #3547 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:42 #3548 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:42 #3549 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:42 #3550 [Verbose] > │ response to a constant force                                                 │

00:00:42 #3551 [Verbose] > │ </text>                                                                      │

00:00:42 #3552 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

00:00:42 #3553 [Verbose] > │ y2="75"/>                                                                    │

00:00:42 #3554 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:42 #3555 [Verbose] > │ y2="75"/>                                                                    │

00:00:42 #3556 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

00:00:42 #3557 [Verbose] > │ y2="75"/>                                                                    │

00:00:42 #3558 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

00:00:42 #3559 [Verbose] > │ y2="75"/>                                                                    │

00:00:42 #3560 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1=...                   │

00:00:42 #3561 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:42 #3562 [Verbose] >

00:00:42 #3563 [Verbose] > ╭─[ 734.96ms - stdout ]────────────────────────────────────────────────────────╮

00:00:42 #3564 [Verbose] > │ type UH0 =                                                                   │

00:00:42 #3565 [Verbose] > │     | UH0_0 of float * float * float * float * float * float * float * float │

00:00:42 #3566 [Verbose] > │ * float * UH0                                                                │

00:00:42 #3567 [Verbose] > │     | UH0_1                                                                  │

00:00:42 #3568 [Verbose] > │ and UH1 =                                                                    │

00:00:42 #3569 [Verbose] > │     | UH1_0 of float * float * UH1                                           │

00:00:42 #3570 [Verbose] > │     | UH1_1                                                                  │

00:00:42 #3571 [Verbose] > │ and UH2 =                                                                    │

00:00:42 #3572 [Verbose] > │     | UH2_0 of float * UH2                                                   │

00:00:42 #3573 [Verbose] > │     | UH2_1                                                                  │

00:00:42 #3574 [Verbose] > │ let rec closure1 (v0 : (struct (float * float * float * float * float *      │

00:00:42 #3575 [Verbose] > │ float * float * float * float) -> struct (float * float * float * float *    │

00:00:42 #3576 [Verbose] > │ float * float * float * float * float))) struct (v1 : float, v2 : float, v3  │

00:00:42 #3577 [Verbose] > │ : float, v4 : float, v5 : float, v6 : float, v7 : float, v8 : float, v9 :    │

00:00:42 #3578 [Verbose] > │ float) : struct (float * float * float * float * float * float * float *     │

00:00:42 #3579 [Verbose] > │ float * float) =                                                             │

00:00:42 #3580 [Verbose] > │     let struct (v10 : float, v11 : float, v12 : float, v13 : float, v14 :    │

00:00:42 #3581 [Verbose] > │ float, v15 : float, v16 : float, v17 : float, v18 : float) = v0 struct (v1,  │

00:00:42 #3582 [Verbose] > │ v2, v3, v4, v5, v6, v7, v8, v9)                                              │

00:00:42 #3583 [Verbose] > │     let v19 : float = v15 * 50000.0                                          │

00:00:42 #3584 [Verbose] > │     let v20 : float = v6 + v19                                               │

00:00:42 #3585 [Verbose] > │     let v21 : float = 50000.0 * v12                                          │

00:00:42 #3586 [Verbose] > │     let v22 : float = 50000.0 * v13                                          │

00:00:42 #3587 [Verbose] > │     let v23 : float = 50000.0 * v14                                          │

00:00:42 #3588 [Verbose] > │     let v24 : float = v3 + v21                                               │

00:00:42 #3589 [Verbose] > │     let v25 : float = v4 + v22                                               │

00:00:42 #3590 [Verbose] > │     let v26 : float = v5 + v23                                               │

00:00:42 #3591 [Verbose] > │     let v27 : float = 50000.0 * v16                                          │

00:00:42 #3592 [Verbose] > │     let v28 : float = 50000.0 * v17                                          │

00:00:42 #3593 [Verbose] > │     let v29 : float = 50000.0 * v18                                          │

00:00:42 #3594 [Verbose] > │     let v30 : float = v7 + v27                                               │

00:00:42 #3595 [Verbose] > │     let v31 : float = v8 + v28                                               │

00:00:42 #3596 [Verbose] > │     let v32 : float = v9 + v29                                               │

00:00:42 #3597 [Verbose] > │     let struct (v33 : float, v34 : float, v35 : float, v36 : float, v37 :    │

00:00:42 #3598 [Verbose] > │ float, v38 : float, v39 : float, v40 : float, v41 : float) = v0 struct (v1,  │

00:00:42 #3599 [Verbose] > │ v2, v24, v25, v26, v20, v30, v31, v32)                                       │

00:00:42 #3600 [Verbose] > │     let v42 : float = v38 * 50000.0                                          │

00:00:42 #3601 [Verbose] > │     let v43 : float = v6 + v42                                               │

00:00:42 #3602 [Verbose] > │     let v44 : float = 50000.0 * v35                                          │

00:00:42 #3603 [Verbose] > │     let v45 : float = 50000.0 * v36                                          │

00:00:42 #3604 [Verbose] > │     let v46 : float = 50000.0 * v37                                          │

00:00:42 #3605 [Verbose] > │     let v47 : float = v3 + v44                                               │

00:00:42 #3606 [Verbose] > │     let v48 : float = v4 + v45                                               │

00:00:42 #3607 [Verbose] > │     let v49 : float = v5 + v46                                               │

00:00:42 #3608 [Verbose] > │     let v50 : float = 50000.0 * v39                                          │

00:00:42 #3609 [Verbose] > │     let v51 : float = 50000.0 * v40                                          │

00:00:42 #3610 [Verbose] > │     let v52 : float = 50000.0 * v41                                          │

00:00:42 #3611 [Verbose] > │     let v53 : float = v7 + v50                                               │

00:00:42 #3612 [Verbose] > │     let v54 : float = v8 + v51                                               │

00:00:42 #3613 [Verbose] > │     let v55 : float = v9 + v52                                               │

00:00:42 #3614 [Verbose] > │     let struct (v56 : float, v57 : float, v58 : float, v59 : float, v60 :    │

00:00:42 #3615 [Verbose] > │ float, v61 : float, v62 : float, v63 : float, v64 : float) = v0 struct (v1,  │

00:00:42 #3616 [Verbose] > │ v2, v47, v48, v49, v43, v53, v54, v55)                                       │

00:00:42 #3617 [Verbose] > │     let v65 : float = v61 * 100000.0                                         │

00:00:42 #3618 [Verbose] > │     let v66 : float = v6 + v65                                               │

00:00:42 #3619 [Verbose] > │     let v67 : float = 100000.0 * v58                                         │

00:00:42 #3620 [Verbose] > │     let v68 : float = 100000.0 * v59                                         │

00:00:42 #3621 [Verbose] > │     let v69 : float = 100000.0 * v60                                         │

00:00:42 #3622 [Verbose] > │     let v70 : float = v3 + v67                                               │

00:00:42 #3623 [Verbose] > │     let v71 : float = v4 + v68                                               │

00:00:42 #3624 [Verbose] > │     let v72 : float = v5 + v69                                               │

00:00:42 #3625 [Verbose] > │     let v73 : float = 100000.0 * v62                                         │

00:00:42 #3626 [Verbose] > │     let v74 : float = 100000.0 * v63                                         │

00:00:42 #3627 [Verbose] > │     let v75 : float = 100000.0 * v64                                         │

00:00:42 #3628 [Verbose] > │     let v76 : float = v7 + v73                                               │

00:00:42 #3629 [Verbose] > │     let v77 : float = v8 + v74                                               │

00:00:42 #3630 [Verbose] > │     let v78 : float = v9 + v75                                               │

00:00:42 #3631 [Verbose] > │     let struct (v79 : float, v80 : float, v81 : float, v82 : float, v83 :    │

00:00:42 #3632 [Verbose] > │ float, v84 : float, v85 : float, v86 : float, v87 : float) = v0 struct (v1,  │

00:00:42 #3633 [Verbose] > │ v2, v70, v71, v72, v66, v76, v77, v78)                                       │

00:00:42 #3634 [Verbose] > │     let v88 : float = v10 + v33                                              │

00:00:42 #3635 [Verbose] > │     let v89 : float = v11 + v34                                              │

00:00:42 #3636 [Verbose] > │     let v90 : float = v15 + v38                                              │

00:00:42 #3637 [Verbose] > │     let v91 : float = v12 + v35                                              │

00:00:42 #3638 [Verbose] > │     let v92 : float = v13 + v36                                              │

00:00:42 #3639 [Verbose] > │     let v93 : float = v14 + v37                                              │

00:00:42 #3640 [Verbose] > │     let v94 : float = v16 + v39                                              │

00:00:42 #3641 [Verbose] > │     let v95 : float = v17 + v40                                              │

00:00:42 #3642 [Verbose] > │     let v96 : float = v18 + v41                                              │

00:00:42 #3643 [Verbose] > │     let v97 : float = v88 + v33                                              │

00:00:42 #3644 [Verbose] > │     let v98 : float = v89 + v34                                              │

00:00:42 #3645 [Verbose] > │     let v99 : float = v90 + v38                                              │

00:00:42 #3646 [Verbose] > │     let v100 : float = v91 + v35                                             │

00:00:42 #3647 [Verbose] > │     let v101 : float = v92 + v36                                             │

00:00:42 #3648 [Verbose] > │     let v102 : float = v93 + v37                                             │

00:00:42 #3649 [Verbose] > │     let v103 : float = v94 + v39                                             │

00:00:42 #3650 [Verbose] > │     let v104 : float = v95 + v40                                             │

00:00:42 #3651 [Verbose] > │     let v105 : float = v96 + v41                                             │

00:00:42 #3652 [Verbose] > │     let v106 : float = v97 + v56                                             │

00:00:42 #3653 [Verbose] > │     let v107 : float = v98 + v57                                             │

00:00:42 #3654 [Verbose] > │     let v108 : float = v99 + v61                                             │

00:00:42 #3655 [Verbose] > │     let v109 : float = v100 + v58                                            │

00:00:42 #3656 [Verbose] > │     let v110 : float = v101 + v59                                            │

00:00:42 #3657 [Verbose] > │     let v111 : float = v102 + v60                                            │

00:00:42 #3658 [Verbose] > │     let v112 : float = v103 + v62                                            │

00:00:42 #3659 [Verbose] > │     let v113 : float = v104 + v63                                            │

00:00:42 #3660 [Verbose] > │     let v114 : float = v105 + v64                                            │

00:00:42 #3661 [Verbose] > │     let v115 : float = v106 + v56                                            │

00:00:42 #3662 [Verbose] > │     let v116 : float = v107 + v57                                            │

00:00:42 #3663 [Verbose] > │     let v117 : float = v108 + v61                                            │

00:00:42 #3664 [Verbose] > │     let v118 : float = v109 + v58                                            │

00:00:42 #3665 [Verbose] > │     let v119 : float = v110 + v59                                            │

00:00:42 #3666 [Verbose] > │     let v120 : float = v111 + v60                                            │

00:00:42 #3667 [Verbose] > │     let v121 : float = v112 + v62                                            │

00:00:42 #3668 [Verbose] > │     let v122 : float = v113 + v63                                            │

00:00:42 #3669 [Verbose] > │     let v123 : float = v114 + v64                                            │

00:00:42 #3670 [Verbose] > │     let v124 : float = v115 + v79                                            │

00:00:42 #3671 [Verbose] > │     let v125 : float = v116 + v80                                            │

00:00:42 #3672 [Verbose] > │     let v126 : float = v117 + v84                                            │

00:00:42 #3673 [Verbose] > │     let v127 : float = v118 + v81                                            │

00:00:42 #3674 [Verbose] > │     let v128 : float = v119 + v82                                            │

00:00:42 #3675 [Verbose] > │     let v129 : float = v120 + v83                                            │

00:00:42 #3676 [Verbose] > │     let v130 : float = v121 + v85                                            │

00:00:42 #3677 [Verbose] > │     let v131 : float = v122 + v86                                            │

00:00:42 #3678 [Verbose] > │     let v132 : float = v123 + v87                                            │

00:00:42 #3679 [Verbose] > │     let v133 : float = v126 * 16666.666666666668                             │

00:00:42 #3680 [Verbose] > │     let v134 : float = v6 + v133                                             │

00:00:42 #3681 [Verbose] > │     let v135 : float = 16666.666666666668 * v127                             │

00:00:42 #3682 [Verbose] > │     let v136 : float = 16666.666666666668 * v128                             │

00:00:42 #3683 [Verbose] > │     let v137 : float = 16666.666666666668 * v129                             │

00:00:42 #3684 [Verbose] > │     let v138 : float = v3 + v135                                             │

00:00:42 #3685 [Verbose] > │     let v139 : float = v4 + v136                                             │

00:00:42 #3686 [Verbose] > │     let v140 : float = v5 + v137                                             │

00:00:42 #3687 [Verbose] > │     let v141 : float = 16666.666666666668 * v130                             │

00:00:42 #3688 [Verbose] > │     let v142 : float = 16666.666666666668 * v131                             │

00:00:42 #3689 [Verbose] > │     let v143 : float = 16666.666666666668 * v132                             │

00:00:42 #3690 [Verbose] > │     let v144 : float = v7 + v141                                             │

00:00:42 #3691 [Verbose] > │     let v145 : float = v8 + v142                                             │

00:00:42 #3692 [Verbose] > │     let v146 : float = v9 + v143                                             │

00:00:42 #3693 [Verbose] > │     struct (v1, v2, v138, v139, v140, v134, v144, v145, v146)                │

00:00:42 #3694 [Verbose] > │ and closure0 () (v0 : (struct (float * float * float * float * float * float │

00:00:42 #3695 [Verbose] > │ * float * float * float) -> struct (float * float * float * float * float *  │

00:00:42 #3696 [Verbose] > │ float * float * float * float))) : (struct (float * float * float * float *  │

00:00:42 #3697 [Verbose] > │ float * float * float * float * float) -> struct (float * float * float *    │

00:00:42 #3698 [Verbose] > │ float * float * float * float * float * float)) =                            │

00:00:42 #3699 [Verbose] > │     closure1(v0)                                                             │

00:00:42 #3700 [Verbose] > │ and closure2 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 : │

00:00:42 #3701 [Verbose] > │ float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *     │

00:00:42 #3702 [Verbose] > │ float * float * float * float * float * float * float * float) =             │

00:00:42 #3703 [Verbose] > │     let v9 : float = 10.0 / v1                                               │

00:00:42 #3704 [Verbose] > │     let v10 : float = 0.0 / v1                                               │

00:00:42 #3705 [Verbose] > │     struct (0.0, 0.0, v6, v7, v8, 1.0, v9, v10, v10)                         │

00:00:42 #3706 [Verbose] > │ and closure3 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 : │

00:00:42 #3707 [Verbose] > │ float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *     │

00:00:42 #3708 [Verbose] > │ float * float * float * float * float * float * float * float) =             │

00:00:42 #3709 [Verbose] > │     let v9 : float = v6 / 299792458.0                                        │

00:00:42 #3710 [Verbose] > │     let v10 : float = v7 / 299792458.0                                       │

00:00:42 #3711 [Verbose] > │     let v11 : float = v8 / 299792458.0                                       │

00:00:42 #3712 [Verbose] > │     let v12 : float = v9 * v9                                                │

00:00:42 #3713 [Verbose] > │     let v13 : float = v10 * v10                                              │

00:00:42 #3714 [Verbose] > │     let v14 : float = v12 + v13                                              │

00:00:42 #3715 [Verbose] > │     let v15 : float = v11 * v11                                              │

00:00:42 #3716 [Verbose] > │     let v16 : float = v14 + v15                                              │

00:00:42 #3717 [Verbose] > │     let v17 : float = 1.0 - v16                                              │

00:00:42 #3718 [Verbose] > │     let v18 : float = sqrt v17                                               │

00:00:42 #3719 [Verbose] > │     let v19 : float = 10.0 * v9                                              │

00:00:42 #3720 [Verbose] > │     let v20 : float = 0.0 * v10                                              │

00:00:42 #3721 [Verbose] > │     let v21 : float = v19 + v20                                              │

00:00:42 #3722 [Verbose] > │     let v22 : float = 0.0 * v11                                              │

00:00:42 #3723 [Verbose] > │     let v23 : float = v21 + v22                                              │

00:00:42 #3724 [Verbose] > │     let v24 : float = v23 * v9                                               │

00:00:42 #3725 [Verbose] > │     let v25 : float = v23 * v10                                              │

00:00:42 #3726 [Verbose] > │     let v26 : float = v23 * v11                                              │

00:00:42 #3727 [Verbose] > │     let v27 : float = -1.0 * v24                                             │

00:00:42 #3728 [Verbose] > │     let v28 : float = -1.0 * v25                                             │

00:00:42 #3729 [Verbose] > │     let v29 : float = -1.0 * v26                                             │

00:00:42 #3730 [Verbose] > │     let v30 : float = 10.0 + v27                                             │

00:00:42 #3731 [Verbose] > │     let v31 : float = v18 * v30                                              │

00:00:42 #3732 [Verbose] > │     let v32 : float = v18 * v28                                              │

00:00:42 #3733 [Verbose] > │     let v33 : float = v18 * v29                                              │

00:00:42 #3734 [Verbose] > │     let v34 : float = v31 / v1                                               │

00:00:42 #3735 [Verbose] > │     let v35 : float = v32 / v1                                               │

00:00:42 #3736 [Verbose] > │     let v36 : float = v33 / v1                                               │

00:00:42 #3737 [Verbose] > │     struct (0.0, 0.0, v6, v7, v8, 1.0, v34, v35, v36)                        │

00:00:42 #3738 [Verbose] > │ and method2 (v0 : (struct (float * float * float * float * float * float *   │

00:00:42 #3739 [Verbose] > │ float * float * float) -> struct (float * float * float * float * float *    │

00:00:42 #3740 [Verbose] > │ float * float * float * float)), v1 : float, v2 : float, v3 : float, v4 :    │

00:00:42 #3741 [Verbose] > │ float, v5 : float, v6 : float, v7 : float, v8 : float, v9 : float, v10 :     │

00:00:42 #3742 [Verbose] > │ int32) : struct (float * float * float * float * float * float * float *     │

00:00:42 #3743 [Verbose] > │ float * float) =                                                             │

00:00:42 #3744 [Verbose] > │     let v11 : bool = v10 <= 0                                                │

00:00:42 #3745 [Verbose] > │     if v11 then                                                              │

00:00:42 #3746 [Verbose] > │         struct (v1, v2, v3, v4, v5, v6, v7, v8, v9)                          │

00:00:42 #3747 [Verbose] > │     else                                                                     │

00:00:42 #3748 [Verbose] > │         let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16  │

00:00:42 #3749 [Verbose] > │ : float, v17 : float, v18 : float, v19 : float, v20 : float) = v0 struct     │

00:00:42 #3750 [Verbose] > │ (v1, v2, v3, v4, v5, v6, v7, v8, v9)                                         │

00:00:42 #3751 [Verbose] > │         let v21 : int32 = v10 - 1                                            │

00:00:42 #3752 [Verbose] > │         method2(v0, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21)        │

00:00:42 #3753 [Verbose] > │ and method3 (v0 : UH0, v1 : UH0) : UH0 =                                     │

00:00:42 #3754 [Verbose] > │     match v0 with                                                            │

00:00:42 #3755 [Verbose] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

00:00:42 #3756 [Verbose] > │         let v12 : UH0 = UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

00:00:42 #3757 [Verbose] > │         method3(v11, v12)                                                    │

00:00:42 #3758 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:42 #3759 [Verbose] > │         v1                                                                   │

00:00:42 #3760 [Verbose] > │ and method1 (v0 : (struct (float * float * float * float * float * float *   │

00:00:42 #3761 [Verbose] > │ float * float * float) -> struct (float * float * float * float * float *    │

00:00:42 #3762 [Verbose] > │ float * float * float * float)), v1 : UH0, v2 : int32) : UH0 =               │

00:00:42 #3763 [Verbose] > │     let v3 : float = 0.0                                                     │

00:00:42 #3764 [Verbose] > │     let v4 : float = 1.0                                                     │

00:00:42 #3765 [Verbose] > │     let v5 : float = 0.0                                                     │

00:00:42 #3766 [Verbose] > │     let v6 : float = 0.0                                                     │

00:00:42 #3767 [Verbose] > │     let v7 : float = 0.0                                                     │

00:00:42 #3768 [Verbose] > │     let v8 : float = 0.0                                                     │

00:00:42 #3769 [Verbose] > │     let v9 : float = 0.0                                                     │

00:00:42 #3770 [Verbose] > │     let v10 : float = 0.0                                                    │

00:00:42 #3771 [Verbose] > │     let v11 : float = 0.0                                                    │

00:00:42 #3772 [Verbose] > │     let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16 :    │

00:00:42 #3773 [Verbose] > │ float, v17 : float, v18 : float, v19 : float, v20 : float) = method2(v0, v3, │

00:00:42 #3774 [Verbose] > │ v4, v5, v6, v7, v8, v9, v10, v11, v2)                                        │

00:00:42 #3775 [Verbose] > │     let v21 : bool = v17 <= 31557600.0                                       │

00:00:42 #3776 [Verbose] > │     if v21 then                                                              │

00:00:42 #3777 [Verbose] > │         let v22 : UH0 = UH0_0(v12, v13, v14, v15, v16, v17, v18, v19, v20,   │

00:00:42 #3778 [Verbose] > │ v1)                                                                          │

00:00:42 #3779 [Verbose] > │         let v23 : int32 = v2 + 1                                             │

00:00:42 #3780 [Verbose] > │         method1(v0, v22, v23)                                                │

00:00:42 #3781 [Verbose] > │     else                                                                     │

00:00:42 #3782 [Verbose] > │         let v25 : UH0 = UH0_1                                                │

00:00:42 #3783 [Verbose] > │         method3(v1, v25)                                                     │

00:00:42 #3784 [Verbose] > │ and method4 (v0 : UH0, v1 : UH1) : UH1 =                                     │

00:00:42 #3785 [Verbose] > │     match v0 with                                                            │

00:00:42 #3786 [Verbose] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

00:00:42 #3787 [Verbose] > │         let v12 : UH1 = method4(v11, v1)                                     │

00:00:42 #3788 [Verbose] > │         let v13 : float = v7 / 31557600.0                                    │

00:00:42 #3789 [Verbose] > │         let v14 : float = v8 / 299792458.0                                   │

00:00:42 #3790 [Verbose] > │         UH1_0(v13, v14, v12)                                                 │

00:00:42 #3791 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:42 #3792 [Verbose] > │         v1                                                                   │

00:00:42 #3793 [Verbose] > │ and method5 (v0 : UH1, v1 : UH2, v2 : UH2) : struct (UH2 * UH2) =            │

00:00:42 #3794 [Verbose] > │     match v0 with                                                            │

00:00:42 #3795 [Verbose] > │     | UH1_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:42 #3796 [Verbose] > │         let v6 : UH2 = UH2_0(v3, v1)                                         │

00:00:42 #3797 [Verbose] > │         let v7 : UH2 = UH2_0(v4, v2)                                         │

00:00:42 #3798 [Verbose] > │         method5(v5, v6, v7)                                                  │

00:00:42 #3799 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:42 #3800 [Verbose] > │         struct (v1, v2)                                                      │

00:00:42 #3801 [Verbose] > │ and method6 (v0 : UH2, v1 : UH2) : UH2 =                                     │

00:00:42 #3802 [Verbose] > │     match v0 with                                                            │

00:00:42 #3803 [Verbose] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

00:00:42 #3804 [Verbose] > │         let v4 : UH2 = UH2_0(v2, v1)                                         │

00:00:42 #3805 [Verbose] > │         method6(v3, v4)                                                      │

00:00:42 #3806 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:42 #3807 [Verbose] > │         v1                                                                   │

00:00:42 #3808 [Verbose] > │ and method7 (v0 : (struct (float * float * float * float * float * float *   │

00:00:42 #3809 [Verbose] > │ float * float * float) -> struct (float * float * float * float * float *    │

00:00:42 #3810 [Verbose] > │ float * float * float * float)), v1 : UH0, v2 : int32) : UH0 =               │

00:00:42 #3811 [Verbose] > │     let v3 : float = 0.0                                                     │

00:00:42 #3812 [Verbose] > │     let v4 : float = 1.0                                                     │

00:00:42 #3813 [Verbose] > │     let v5 : float = 0.0                                                     │

00:00:42 #3814 [Verbose] > │     let v6 : float = 0.0                                                     │

00:00:42 #3815 [Verbose] > │     let v7 : float = 0.0                                                     │

00:00:42 #3816 [Verbose] > │     let v8 : float = 0.0                                                     │

00:00:42 #3817 [Verbose] > │     let v9 : float = 0.0                                                     │

00:00:42 #3818 [Verbose] > │     let v10 : float = 0.0                                                    │

00:00:42 #3819 [Verbose] > │     let v11 : float = 0.0                                                    │

00:00:42 #3820 [Verbose] > │     let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16 :    │

00:00:42 #3821 [Verbose] > │ float, v17 : float, v18 : float, v19 : float, v20 : float) = method2(v0, v3, │

00:00:42 #3822 [Verbose] > │ v4, v5, v6, v7, v8, v9, v10, v11, v2)                                        │

00:00:42 #3823 [Verbose] > │     let v21 : bool = v17 <= 31557600.0                                       │

00:00:42 #3824 [Verbose] > │     if v21 then                                                              │

00:00:42 #3825 [Verbose] > │         let v22 : UH0 = UH0_0(v12, v13, v14, v15, v16, v17, v18, v19, v20,   │

00:00:42 #3826 [Verbose] > │ v1)                                                                          │

00:00:42 #3827 [Verbose] > │         let v23 : int32 = v2 + 1                                             │

00:00:42 #3828 [Verbose] > │         method7(v0, v22, v23)                                                │

00:00:42 #3829 [Verbose] > │     else                                                                     │

00:00:42 #3830 [Verbose] > │         let v25 : UH0 = UH0_1                                                │

00:00:42 #3831 [Verbose] > │         method3(v1, v25)                                                     │

00:00:42 #3832 [Verbose] > │ and method8 (v0 : UH0, v1 : UH1) : UH1 =                                     │

00:00:42 #3833 [Verbose] > │     match v0 with                                                            │

00:00:42 #3834 [Verbose] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

00:00:42 #3835 [Verbose] > │         let v12 : UH1 = method8(v11, v1)                                     │

00:00:42 #3836 [Verbose] > │         let v13 : float = v7 / 31557600.0                                    │

00:00:42 #3837 [Verbose] > │         let v14 : float = v8 / 299792458.0                                   │

00:00:42 #3838 [Verbose] > │         UH1_0(v13, v14, v12)                                                 │

00:00:42 #3839 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:42 #3840 [Verbose] > │         v1                                                                   │

00:00:42 #3841 [Verbose] > │ and method10 (v0 : UH2, v1 : int32) : int32 =                                │

00:00:42 #3842 [Verbose] > │     match v0 with                                                            │

00:00:42 #3843 [Verbose] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

00:00:42 #3844 [Verbose] > │         let v4 : int32 = v1 + 1                                              │

00:00:42 #3845 [Verbose] > │         method10(v3, v4)                                                     │

00:00:42 #3846 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:42 #3847 [Verbose] > │         v1                                                                   │

00:00:42 #3848 [Verbose] > │ and method11 (v0 : (float []), v1 : UH2, v2 : int32) : int32 =               │

00:00:42 #3849 [Verbose] > │     match v1 with                                                            │

00:00:42 #3850 [Verbose] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

00:00:42 #3851 [Verbose] > │         v0.[int v2] <- v3                                                    │

00:00:42 #3852 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:00:42 #3853 [Verbose] > │         method11(v0, v4, v5)                                                 │

00:00:42 #3854 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:42 #3855 [Verbose] > │         v2                                                                   │

00:00:42 #3856 [Verbose] > │ and method9 (v0 : UH2) : (float []) =                                        │

00:00:42 #3857 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:42 #3858 [Verbose] > │     let v2 : int32 = method10(v0, v1)                                        │

00:00:42 #3859 [Verbose] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

00:00:42 #3860 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:42 #3861 [Verbose] > │     let v5 : int32 = method11(v3, v0, v4)                                    │

00:00:42 #3862 [Verbose] > │     v3                                                                       │

00:00:42 #3863 [Verbose] > │ and method12 (v0 : (struct (string * (float []) * (float [])) [])) : (struct │

00:00:42 #3864 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:42 #3865 [Verbose] > │     v0                                                                       │

00:00:42 #3866 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:42 #3867 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:42 #3868 [Verbose] > │     let v0 : ((struct (float * float * float * float * float * float * float │

00:00:42 #3869 [Verbose] > │ * float * float) -> struct (float * float * float * float * float * float *  │

00:00:42 #3870 [Verbose] > │ float * float * float)) -> (struct (float * float * float * float * float *  │

00:00:42 #3871 [Verbose] > │ float * float * float * float) -> struct (float * float * float * float *    │

00:00:42 #3872 [Verbose] > │ float * float * float * float * float))) = closure0()                        │

00:00:42 #3873 [Verbose] > │     let v1 : (struct (float * float * float * float * float * float * float  │

00:00:42 #3874 [Verbose] > │ * float * float) -> struct (float * float * float * float * float * float *  │

00:00:42 #3875 [Verbose] > │ float * float * float)) = closure2()                                         │

00:00:42 #3876 [Verbose] > │     let v2 : (struct (float * float * float * float * float * float * float  │

00:00:42 #3877 [Verbose] > │ * float * float) -> struct (float * float * float * float * float * float *  │

00:00:42 #3878 [Verbose] > │ float * float * float)) = v0 v1                                              │

00:00:42 #3879 [Verbose] > │     let v3 : (struct (float * float * float * float * float * float * float  │

00:00:42 #3880 [Verbose] > │ * float * float) -> struct (float * float * float * float * float * float *  │

00:00:42 #3881 [Verbose] > │ float * float * float)) = closure3()                                         │

00:00:42 #3882 [Verbose] > │     let v4 : (struct (float * float * float * float * float * float * float  │

00:00:42 #3883 [Verbose] > │ * float * float) -> struct (float * float * float * float * float * float *  │

00:00:42 #3884 [Verbose] > │ float * float * float)) = v0 v3                                              │

00:00:42 #3885 [Verbose] > │     let v5 : UH0 = UH0_1                                                     │

00:00:42 #3886 [Verbose] > │     let v6 : int32 = 0                                                       │

00:00:42 #3887 [Verbose] > │     let v7 : UH0 = method1(v2, v5, v6)                                       │

00:00:42 #3888 [Verbose] > │     let v8 : UH1 = UH1_1                                                     │

00:00:42 #3889 [Verbose] > │     let v9 : UH1 = method4(v7, v8)                                           │

00:00:42 #3890 [Verbose] > │     let v10 : UH2 = UH2_1                                                    │

00:00:42 #3891 [Verbose] > │     let v11 : UH2 = UH2_1                                                    │

00:00:42 #3892 [Verbose] > │     let struct (v12 : UH2, v13 : UH2) = method5(v9, v10, v11)                │

00:00:42 #3893 [Verbose] > │     let v14 : UH2 = UH2_1                                                    │

00:00:42 #3894 [Verbose] > │     let v15 : UH2 = method6(v12, v14)                                        │

00:00:42 #3895 [Verbose] > │     let v16 : UH2 = UH2_1                                                    │

00:00:42 #3896 [Verbose] > │     let v17 : UH2 = method6(v13, v16)                                        │

00:00:42 #3897 [Verbose] > │     let v18 : UH0 = UH0_1                                                    │

00:00:42 #3898 [Verbose] > │     let v19 : int32 = 0                                                      │

00:00:42 #3899 [Verbose] > │     let v20 : UH0 = method7(v4, v18, v19)                                    │

00:00:42 #3900 [Verbose] > │     let v21 : UH1 = UH1_1                                                    │

00:00:42 #3901 [Verbose] > │     let v22 : UH1 = method8(v20, v21)                                        │

00:00:42 #3902 [Verbose] > │     let v23 : UH2 = UH2_1                                                    │

00:00:42 #3903 [Verbose] > │     let v24 : UH2 = UH2_1                                                    │

00:00:42 #3904 [Verbose] > │     let struct (v25 : UH2, v26 : UH2) = method5(v22, v23, v24)               │

00:00:42 #3905 [Verbose] > │     let v27 : UH2 = UH2_1                                                    │

00:00:42 #3906 [Verbose] > │     let v28 : UH2 = method6(v25, v27)                                        │

00:00:42 #3907 [Verbose] > │     let v29 : UH2 = UH2_1                                                    │

00:00:42 #3908 [Verbose] > │     let v30 : UH2 = method6(v26, v29)                                        │

00:00:42 #3909 [Verbose] > │     let v31 : (float []) = method9(v15)                                      │

00:00:42 #3910 [Verbose] > │     let v32 : (float []) = method9(v17)                                      │

00:00:42 #3911 [Verbose] > │     let v33 : (float []) = method9(v30)                                      │

00:00:42 #3912 [Verbose] > │     let v34 : string = "newtonian"                                           │

00:00:42 #3913 [Verbose] > │     let v35 : string = "relativistic"                                        │

00:00:42 #3914 [Verbose] > │     let v36 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:42 #3915 [Verbose] > │ (v34, v31, v32); struct (v35, v31, v33)|]                                    │

00:00:42 #3916 [Verbose] > │     let v37 : (struct (string * (float []) * (float [])) []) = method12(v36) │

00:00:42 #3917 [Verbose] > │     let v38 : string = "response to a constant force"                        │

00:00:42 #3918 [Verbose] > │     let v39 : string = "time (years)"                                        │

00:00:42 #3919 [Verbose] > │     let v40 : string = "velocity (multiples of c)"                           │

00:00:42 #3920 [Verbose] > │     struct (v38, v39, v40, v37)                                              │

00:00:42 #3921 [Verbose] > │ method0()                                                                    │

00:00:42 #3922 [Verbose] > │                                                                              │

00:00:42 #3923 [Verbose] > │                                                                              │

00:00:42 #3924 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:42 #3925 [Verbose] >

00:00:42 #3926 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:42 #3927 [Verbose] > inl uniform_lorentz_force v_e v_b (st : particle_state) =

00:00:42 #3928 [Verbose] >     st.charge *^ (v_e ^+^ st.velocity >< v_b)

00:00:42 #3929 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-1015-1576-128e739eba9d\main.spi

00:00:42 #3930 [Verbose] >

00:00:42 #3931 [Verbose] > ╭─[ 366.61ms - stdout ]────────────────────────────────────────────────────────╮

00:00:42 #3932 [Verbose] > │ ()                                                                           │

00:00:42 #3933 [Verbose] > │                                                                              │

00:00:42 #3934 [Verbose] > │                                                                              │

00:00:42 #3935 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:42 #3936 [Verbose] >

00:00:42 #3937 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:42 #3938 [Verbose] > // // test

00:00:42 #3939 [Verbose] >

00:00:42 #3940 [Verbose] > inl c : f64 = 299792458

00:00:42 #3941 [Verbose] > inl ~method = runge_kutta_4 0.000000001

00:00:42 #3942 [Verbose] > inl forces = [[ uniform_lorentz_force (zero_vec ()) (k_hat ()) ]]

00:00:42 #3943 [Verbose] > inl (particle_state default_particle_state') = default_particle_state ()

00:00:42 #3944 [Verbose] > inl initial_state =

00:00:42 #3945 [Verbose] >     particle_state { default_particle_state' with

00:00:42 #3946 [Verbose] >         mass = 0.000000000000000000000000001672621898

00:00:42 #3947 [Verbose] >         charge = 0.0000000000000000001602176621

00:00:42 #3948 [Verbose] >         velocity = 0.8 *^ (c *^ j_hat ())

00:00:42 #3949 [Verbose] >     }

00:00:42 #3950 [Verbose] >

00:00:42 #3951 [Verbose] > inl newton_states = solver_ method (newton_second_ps forces) initial_state

00:00:42 #3952 [Verbose] > inl relativity_states = solver_ method (relativity_ps forces) initial_state

00:00:42 #3953 [Verbose] >

00:00:42 #3954 [Verbose] > inl newton_x, newton_y =

00:00:42 #3955 [Verbose] >     newton_states

00:00:42 #3956 [Verbose] >     >> Some

00:00:42 #3957 [Verbose] >     |> seq.take_while_ (fun (particle_state st) i => i < 100i32)

00:00:42 #3958 [Verbose] >     |> listm.map (fun (particle_state st) => st.pos_vec.x, st.pos_vec.y)

00:00:42 #3959 [Verbose] >     |> listm'.unzip

00:00:42 #3960 [Verbose] >

00:00:42 #3961 [Verbose] > inl relativity_x, relativity_y =

00:00:42 #3962 [Verbose] >     relativity_states

00:00:42 #3963 [Verbose] >     >> Some

00:00:42 #3964 [Verbose] >     |> seq.take_while_ (fun (particle_state st) i => i < 165i32)

00:00:42 #3965 [Verbose] >     |> listm.map (fun (particle_state st) => st.pos_vec.x, st.pos_vec.y)

00:00:42 #3966 [Verbose] >     |> listm'.unzip

00:00:42 #3967 [Verbose] >

00:00:42 #3968 [Verbose] > inl newton_x : a i32 _ = newton_x |> listm.toArray

00:00:42 #3969 [Verbose] > inl newton_y : a i32 _ = newton_y |> listm.toArray

00:00:42 #3970 [Verbose] >

00:00:42 #3971 [Verbose] > inl relativity_x : a i32 _ = relativity_x |> listm.toArray

00:00:42 #3972 [Verbose] > inl relativity_y : a i32 _ = relativity_y |> listm.toArray

00:00:42 #3973 [Verbose] >

00:00:42 #3974 [Verbose] > "proton in a 1-t magnetic field",

00:00:42 #3975 [Verbose] > "x (m)",

00:00:42 #3976 [Verbose] > "y (m)",

00:00:42 #3977 [Verbose] > ;[[

00:00:42 #3978 [Verbose] >     "newtonian", newton_x, newton_y

00:00:42 #3979 [Verbose] >     "relativistic", relativity_x, relativity_y

00:00:42 #3980 [Verbose] > ]]

00:00:42 #3981 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-1052-5255-58bd8d643479\main.spi

00:00:43 #3982 [Verbose] >

00:00:43 #3983 [Verbose] > ╭─[ 659.75ms - return value ]──────────────────────────────────────────────────╮

00:00:43 #3984 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:43 #3985 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:43 #3986 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:43 #3987 [Verbose] > │ stroke="none"/>                                                              │

00:00:43 #3988 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:43 #3989 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:43 #3990 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:43 #3991 [Verbose] > │ proton in a 1-t magnetic field                                               │

00:00:43 #3992 [Verbose] > │ </text>                                                                      │

00:00:43 #3993 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="58" y1="424" x2="58" │

00:00:43 #3994 [Verbose] > │ y2="75"/>                                                                    │

00:00:43 #3995 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:43 #3996 [Verbose] > │ y2="75"/>                                                                    │

00:00:43 #3997 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="81" y1="424" x2="81" │

00:00:43 #3998 [Verbose] > │ y2="75"/>                                                                    │

00:00:43 #3999 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

00:00:43 #4000 [Verbose] > │ y2="75"/>                                                                    │

00:00:43 #4001 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x...                     │

00:00:43 #4002 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:43 #4003 [Verbose] >

00:00:43 #4004 [Verbose] > ╭─[ 680.59ms - stdout ]────────────────────────────────────────────────────────╮

00:00:43 #4005 [Verbose] > │ type UH0 =                                                                   │

00:00:43 #4006 [Verbose] > │     | UH0_0 of float * float * float * float * float * float * float * float │

00:00:43 #4007 [Verbose] > │ * float * UH0                                                                │

00:00:43 #4008 [Verbose] > │     | UH0_1                                                                  │

00:00:43 #4009 [Verbose] > │ and UH1 =                                                                    │

00:00:43 #4010 [Verbose] > │     | UH1_0 of float * float * UH1                                           │

00:00:43 #4011 [Verbose] > │     | UH1_1                                                                  │

00:00:43 #4012 [Verbose] > │ and UH2 =                                                                    │

00:00:43 #4013 [Verbose] > │     | UH2_0 of float * UH2                                                   │

00:00:43 #4014 [Verbose] > │     | UH2_1                                                                  │

00:00:43 #4015 [Verbose] > │ let rec closure1 (v0 : (struct (float * float * float * float * float *      │

00:00:43 #4016 [Verbose] > │ float * float * float * float) -> struct (float * float * float * float *    │

00:00:43 #4017 [Verbose] > │ float * float * float * float * float))) struct (v1 : float, v2 : float, v3  │

00:00:43 #4018 [Verbose] > │ : float, v4 : float, v5 : float, v6 : float, v7 : float, v8 : float, v9 :    │

00:00:43 #4019 [Verbose] > │ float) : struct (float * float * float * float * float * float * float *     │

00:00:43 #4020 [Verbose] > │ float * float) =                                                             │

00:00:43 #4021 [Verbose] > │     let struct (v10 : float, v11 : float, v12 : float, v13 : float, v14 :    │

00:00:43 #4022 [Verbose] > │ float, v15 : float, v16 : float, v17 : float, v18 : float) = v0 struct (v1,  │

00:00:43 #4023 [Verbose] > │ v2, v3, v4, v5, v6, v7, v8, v9)                                              │

00:00:43 #4024 [Verbose] > │     let v19 : float = v15 * 5E-10                                            │

00:00:43 #4025 [Verbose] > │     let v20 : float = v6 + v19                                               │

00:00:43 #4026 [Verbose] > │     let v21 : float = 5E-10 * v12                                            │

00:00:43 #4027 [Verbose] > │     let v22 : float = 5E-10 * v13                                            │

00:00:43 #4028 [Verbose] > │     let v23 : float = 5E-10 * v14                                            │

00:00:43 #4029 [Verbose] > │     let v24 : float = v3 + v21                                               │

00:00:43 #4030 [Verbose] > │     let v25 : float = v4 + v22                                               │

00:00:43 #4031 [Verbose] > │     let v26 : float = v5 + v23                                               │

00:00:43 #4032 [Verbose] > │     let v27 : float = 5E-10 * v16                                            │

00:00:43 #4033 [Verbose] > │     let v28 : float = 5E-10 * v17                                            │

00:00:43 #4034 [Verbose] > │     let v29 : float = 5E-10 * v18                                            │

00:00:43 #4035 [Verbose] > │     let v30 : float = v7 + v27                                               │

00:00:43 #4036 [Verbose] > │     let v31 : float = v8 + v28                                               │

00:00:43 #4037 [Verbose] > │     let v32 : float = v9 + v29                                               │

00:00:43 #4038 [Verbose] > │     let struct (v33 : float, v34 : float, v35 : float, v36 : float, v37 :    │

00:00:43 #4039 [Verbose] > │ float, v38 : float, v39 : float, v40 : float, v41 : float) = v0 struct (v1,  │

00:00:43 #4040 [Verbose] > │ v2, v24, v25, v26, v20, v30, v31, v32)                                       │

00:00:43 #4041 [Verbose] > │     let v42 : float = v38 * 5E-10                                            │

00:00:43 #4042 [Verbose] > │     let v43 : float = v6 + v42                                               │

00:00:43 #4043 [Verbose] > │     let v44 : float = 5E-10 * v35                                            │

00:00:43 #4044 [Verbose] > │     let v45 : float = 5E-10 * v36                                            │

00:00:43 #4045 [Verbose] > │     let v46 : float = 5E-10 * v37                                            │

00:00:43 #4046 [Verbose] > │     let v47 : float = v3 + v44                                               │

00:00:43 #4047 [Verbose] > │     let v48 : float = v4 + v45                                               │

00:00:43 #4048 [Verbose] > │     let v49 : float = v5 + v46                                               │

00:00:43 #4049 [Verbose] > │     let v50 : float = 5E-10 * v39                                            │

00:00:43 #4050 [Verbose] > │     let v51 : float = 5E-10 * v40                                            │

00:00:43 #4051 [Verbose] > │     let v52 : float = 5E-10 * v41                                            │

00:00:43 #4052 [Verbose] > │     let v53 : float = v7 + v50                                               │

00:00:43 #4053 [Verbose] > │     let v54 : float = v8 + v51                                               │

00:00:43 #4054 [Verbose] > │     let v55 : float = v9 + v52                                               │

00:00:43 #4055 [Verbose] > │     let struct (v56 : float, v57 : float, v58 : float, v59 : float, v60 :    │

00:00:43 #4056 [Verbose] > │ float, v61 : float, v62 : float, v63 : float, v64 : float) = v0 struct (v1,  │

00:00:43 #4057 [Verbose] > │ v2, v47, v48, v49, v43, v53, v54, v55)                                       │

00:00:43 #4058 [Verbose] > │     let v65 : float = v61 * 1E-09                                            │

00:00:43 #4059 [Verbose] > │     let v66 : float = v6 + v65                                               │

00:00:43 #4060 [Verbose] > │     let v67 : float = 1E-09 * v58                                            │

00:00:43 #4061 [Verbose] > │     let v68 : float = 1E-09 * v59                                            │

00:00:43 #4062 [Verbose] > │     let v69 : float = 1E-09 * v60                                            │

00:00:43 #4063 [Verbose] > │     let v70 : float = v3 + v67                                               │

00:00:43 #4064 [Verbose] > │     let v71 : float = v4 + v68                                               │

00:00:43 #4065 [Verbose] > │     let v72 : float = v5 + v69                                               │

00:00:43 #4066 [Verbose] > │     let v73 : float = 1E-09 * v62                                            │

00:00:43 #4067 [Verbose] > │     let v74 : float = 1E-09 * v63                                            │

00:00:43 #4068 [Verbose] > │     let v75 : float = 1E-09 * v64                                            │

00:00:43 #4069 [Verbose] > │     let v76 : float = v7 + v73                                               │

00:00:43 #4070 [Verbose] > │     let v77 : float = v8 + v74                                               │

00:00:43 #4071 [Verbose] > │     let v78 : float = v9 + v75                                               │

00:00:43 #4072 [Verbose] > │     let struct (v79 : float, v80 : float, v81 : float, v82 : float, v83 :    │

00:00:43 #4073 [Verbose] > │ float, v84 : float, v85 : float, v86 : float, v87 : float) = v0 struct (v1,  │

00:00:43 #4074 [Verbose] > │ v2, v70, v71, v72, v66, v76, v77, v78)                                       │

00:00:43 #4075 [Verbose] > │     let v88 : float = v10 + v33                                              │

00:00:43 #4076 [Verbose] > │     let v89 : float = v11 + v34                                              │

00:00:43 #4077 [Verbose] > │     let v90 : float = v15 + v38                                              │

00:00:43 #4078 [Verbose] > │     let v91 : float = v12 + v35                                              │

00:00:43 #4079 [Verbose] > │     let v92 : float = v13 + v36                                              │

00:00:43 #4080 [Verbose] > │     let v93 : float = v14 + v37                                              │

00:00:43 #4081 [Verbose] > │     let v94 : float = v16 + v39                                              │

00:00:43 #4082 [Verbose] > │     let v95 : float = v17 + v40                                              │

00:00:43 #4083 [Verbose] > │     let v96 : float = v18 + v41                                              │

00:00:43 #4084 [Verbose] > │     let v97 : float = v88 + v33                                              │

00:00:43 #4085 [Verbose] > │     let v98 : float = v89 + v34                                              │

00:00:43 #4086 [Verbose] > │     let v99 : float = v90 + v38                                              │

00:00:43 #4087 [Verbose] > │     let v100 : float = v91 + v35                                             │

00:00:43 #4088 [Verbose] > │     let v101 : float = v92 + v36                                             │

00:00:43 #4089 [Verbose] > │     let v102 : float = v93 + v37                                             │

00:00:43 #4090 [Verbose] > │     let v103 : float = v94 + v39                                             │

00:00:43 #4091 [Verbose] > │     let v104 : float = v95 + v40                                             │

00:00:43 #4092 [Verbose] > │     let v105 : float = v96 + v41                                             │

00:00:43 #4093 [Verbose] > │     let v106 : float = v97 + v56                                             │

00:00:43 #4094 [Verbose] > │     let v107 : float = v98 + v57                                             │

00:00:43 #4095 [Verbose] > │     let v108 : float = v99 + v61                                             │

00:00:43 #4096 [Verbose] > │     let v109 : float = v100 + v58                                            │

00:00:43 #4097 [Verbose] > │     let v110 : float = v101 + v59                                            │

00:00:43 #4098 [Verbose] > │     let v111 : float = v102 + v60                                            │

00:00:43 #4099 [Verbose] > │     let v112 : float = v103 + v62                                            │

00:00:43 #4100 [Verbose] > │     let v113 : float = v104 + v63                                            │

00:00:43 #4101 [Verbose] > │     let v114 : float = v105 + v64                                            │

00:00:43 #4102 [Verbose] > │     let v115 : float = v106 + v56                                            │

00:00:43 #4103 [Verbose] > │     let v116 : float = v107 + v57                                            │

00:00:43 #4104 [Verbose] > │     let v117 : float = v108 + v61                                            │

00:00:43 #4105 [Verbose] > │     let v118 : float = v109 + v58                                            │

00:00:43 #4106 [Verbose] > │     let v119 : float = v110 + v59                                            │

00:00:43 #4107 [Verbose] > │     let v120 : float = v111 + v60                                            │

00:00:43 #4108 [Verbose] > │     let v121 : float = v112 + v62                                            │

00:00:43 #4109 [Verbose] > │     let v122 : float = v113 + v63                                            │

00:00:43 #4110 [Verbose] > │     let v123 : float = v114 + v64                                            │

00:00:43 #4111 [Verbose] > │     let v124 : float = v115 + v79                                            │

00:00:43 #4112 [Verbose] > │     let v125 : float = v116 + v80                                            │

00:00:43 #4113 [Verbose] > │     let v126 : float = v117 + v84                                            │

00:00:43 #4114 [Verbose] > │     let v127 : float = v118 + v81                                            │

00:00:43 #4115 [Verbose] > │     let v128 : float = v119 + v82                                            │

00:00:43 #4116 [Verbose] > │     let v129 : float = v120 + v83                                            │

00:00:43 #4117 [Verbose] > │     let v130 : float = v121 + v85                                            │

00:00:43 #4118 [Verbose] > │     let v131 : float = v122 + v86                                            │

00:00:43 #4119 [Verbose] > │     let v132 : float = v123 + v87                                            │

00:00:43 #4120 [Verbose] > │     let v133 : float = v126 * 1.6666666666666669E-10                         │

00:00:43 #4121 [Verbose] > │     let v134 : float = v6 + v133                                             │

00:00:43 #4122 [Verbose] > │     let v135 : float = 1.6666666666666669E-10 * v127                         │

00:00:43 #4123 [Verbose] > │     let v136 : float = 1.6666666666666669E-10 * v128                         │

00:00:43 #4124 [Verbose] > │     let v137 : float = 1.6666666666666669E-10 * v129                         │

00:00:43 #4125 [Verbose] > │     let v138 : float = v3 + v135                                             │

00:00:43 #4126 [Verbose] > │     let v139 : float = v4 + v136                                             │

00:00:43 #4127 [Verbose] > │     let v140 : float = v5 + v137                                             │

00:00:43 #4128 [Verbose] > │     let v141 : float = 1.6666666666666669E-10 * v130                         │

00:00:43 #4129 [Verbose] > │     let v142 : float = 1.6666666666666669E-10 * v131                         │

00:00:43 #4130 [Verbose] > │     let v143 : float = 1.6666666666666669E-10 * v132                         │

00:00:43 #4131 [Verbose] > │     let v144 : float = v7 + v141                                             │

00:00:43 #4132 [Verbose] > │     let v145 : float = v8 + v142                                             │

00:00:43 #4133 [Verbose] > │     let v146 : float = v9 + v143                                             │

00:00:43 #4134 [Verbose] > │     struct (v1, v2, v138, v139, v140, v134, v144, v145, v146)                │

00:00:43 #4135 [Verbose] > │ and closure0 () (v0 : (struct (float * float * float * float * float * float │

00:00:43 #4136 [Verbose] > │ * float * float * float) -> struct (float * float * float * float * float *  │

00:00:43 #4137 [Verbose] > │ float * float * float * float))) : (struct (float * float * float * float *  │

00:00:43 #4138 [Verbose] > │ float * float * float * float * float) -> struct (float * float * float *    │

00:00:43 #4139 [Verbose] > │ float * float * float * float * float * float)) =                            │

00:00:43 #4140 [Verbose] > │     closure1(v0)                                                             │

00:00:43 #4141 [Verbose] > │ and closure2 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 : │

00:00:43 #4142 [Verbose] > │ float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *     │

00:00:43 #4143 [Verbose] > │ float * float * float * float * float * float * float * float) =             │

00:00:43 #4144 [Verbose] > │     let v9 : float = v8 * 0.0                                                │

00:00:43 #4145 [Verbose] > │     let v10 : float = v7 - v9                                                │

00:00:43 #4146 [Verbose] > │     let v11 : float = v9 - v6                                                │

00:00:43 #4147 [Verbose] > │     let v12 : float = v6 * 0.0                                               │

00:00:43 #4148 [Verbose] > │     let v13 : float = v7 * 0.0                                               │

00:00:43 #4149 [Verbose] > │     let v14 : float = v12 - v13                                              │

00:00:43 #4150 [Verbose] > │     let v15 : float = v0 * v10                                               │

00:00:43 #4151 [Verbose] > │     let v16 : float = v0 * v11                                               │

00:00:43 #4152 [Verbose] > │     let v17 : float = v0 * v14                                               │

00:00:43 #4153 [Verbose] > │     let v18 : float = v15 / v1                                               │

00:00:43 #4154 [Verbose] > │     let v19 : float = v16 / v1                                               │

00:00:43 #4155 [Verbose] > │     let v20 : float = v17 / v1                                               │

00:00:43 #4156 [Verbose] > │     struct (0.0, 0.0, v6, v7, v8, 1.0, v18, v19, v20)                        │

00:00:43 #4157 [Verbose] > │ and closure3 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 : │

00:00:43 #4158 [Verbose] > │ float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *     │

00:00:43 #4159 [Verbose] > │ float * float * float * float * float * float * float * float) =             │

00:00:43 #4160 [Verbose] > │     let v9 : float = v8 * 0.0                                                │

00:00:43 #4161 [Verbose] > │     let v10 : float = v7 - v9                                                │

00:00:43 #4162 [Verbose] > │     let v11 : float = v9 - v6                                                │

00:00:43 #4163 [Verbose] > │     let v12 : float = v6 * 0.0                                               │

00:00:43 #4164 [Verbose] > │     let v13 : float = v7 * 0.0                                               │

00:00:43 #4165 [Verbose] > │     let v14 : float = v12 - v13                                              │

00:00:43 #4166 [Verbose] > │     let v15 : float = v0 * v10                                               │

00:00:43 #4167 [Verbose] > │     let v16 : float = v0 * v11                                               │

00:00:43 #4168 [Verbose] > │     let v17 : float = v0 * v14                                               │

00:00:43 #4169 [Verbose] > │     let v18 : float = v6 / 299792458.0                                       │

00:00:43 #4170 [Verbose] > │     let v19 : float = v7 / 299792458.0                                       │

00:00:43 #4171 [Verbose] > │     let v20 : float = v8 / 299792458.0                                       │

00:00:43 #4172 [Verbose] > │     let v21 : float = v18 * v18                                              │

00:00:43 #4173 [Verbose] > │     let v22 : float = v19 * v19                                              │

00:00:43 #4174 [Verbose] > │     let v23 : float = v21 + v22                                              │

00:00:43 #4175 [Verbose] > │     let v24 : float = v20 * v20                                              │

00:00:43 #4176 [Verbose] > │     let v25 : float = v23 + v24                                              │

00:00:43 #4177 [Verbose] > │     let v26 : float = 1.0 - v25                                              │

00:00:43 #4178 [Verbose] > │     let v27 : float = sqrt v26                                               │

00:00:43 #4179 [Verbose] > │     let v28 : float = v15 * v18                                              │

00:00:43 #4180 [Verbose] > │     let v29 : float = v16 * v19                                              │

00:00:43 #4181 [Verbose] > │     let v30 : float = v28 + v29                                              │

00:00:43 #4182 [Verbose] > │     let v31 : float = v17 * v20                                              │

00:00:43 #4183 [Verbose] > │     let v32 : float = v30 + v31                                              │

00:00:43 #4184 [Verbose] > │     let v33 : float = v32 * v18                                              │

00:00:43 #4185 [Verbose] > │     let v34 : float = v32 * v19                                              │

00:00:43 #4186 [Verbose] > │     let v35 : float = v32 * v20                                              │

00:00:43 #4187 [Verbose] > │     let v36 : float = -1.0 * v33                                             │

00:00:43 #4188 [Verbose] > │     let v37 : float = -1.0 * v34                                             │

00:00:43 #4189 [Verbose] > │     let v38 : float = -1.0 * v35                                             │

00:00:43 #4190 [Verbose] > │     let v39 : float = v15 + v36                                              │

00:00:43 #4191 [Verbose] > │     let v40 : float = v16 + v37                                              │

00:00:43 #4192 [Verbose] > │     let v41 : float = v17 + v38                                              │

00:00:43 #4193 [Verbose] > │     let v42 : float = v27 * v39                                              │

00:00:43 #4194 [Verbose] > │     let v43 : float = v27 * v40                                              │

00:00:43 #4195 [Verbose] > │     let v44 : float = v27 * v41                                              │

00:00:43 #4196 [Verbose] > │     let v45 : float = v42 / v1                                               │

00:00:43 #4197 [Verbose] > │     let v46 : float = v43 / v1                                               │

00:00:43 #4198 [Verbose] > │     let v47 : float = v44 / v1                                               │

00:00:43 #4199 [Verbose] > │     struct (0.0, 0.0, v6, v7, v8, 1.0, v45, v46, v47)                        │

00:00:43 #4200 [Verbose] > │ and method2 (v0 : (struct (float * float * float * float * float * float *   │

00:00:43 #4201 [Verbose] > │ float * float * float) -> struct (float * float * float * float * float *    │

00:00:43 #4202 [Verbose] > │ float * float * float * float)), v1 : float, v2 : float, v3 : float, v4 :    │

00:00:43 #4203 [Verbose] > │ float, v5 : float, v6 : float, v7 : float, v8 : float, v9 : float, v10 :     │

00:00:43 #4204 [Verbose] > │ int32) : struct (float * float * float * float * float * float * float *     │

00:00:43 #4205 [Verbose] > │ float * float) =                                                             │

00:00:43 #4206 [Verbose] > │     let v11 : bool = v10 <= 0                                                │

00:00:43 #4207 [Verbose] > │     if v11 then                                                              │

00:00:43 #4208 [Verbose] > │         struct (v1, v2, v3, v4, v5, v6, v7, v8, v9)                          │

00:00:43 #4209 [Verbose] > │     else                                                                     │

00:00:43 #4210 [Verbose] > │         let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16  │

00:00:43 #4211 [Verbose] > │ : float, v17 : float, v18 : float, v19 : float, v20 : float) = v0 struct     │

00:00:43 #4212 [Verbose] > │ (v1, v2, v3, v4, v5, v6, v7, v8, v9)                                         │

00:00:43 #4213 [Verbose] > │         let v21 : int32 = v10 - 1                                            │

00:00:43 #4214 [Verbose] > │         method2(v0, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21)        │

00:00:43 #4215 [Verbose] > │ and method3 (v0 : UH0, v1 : UH0) : UH0 =                                     │

00:00:43 #4216 [Verbose] > │     match v0 with                                                            │

00:00:43 #4217 [Verbose] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

00:00:43 #4218 [Verbose] > │         let v12 : UH0 = UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

00:00:43 #4219 [Verbose] > │         method3(v11, v12)                                                    │

00:00:43 #4220 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:43 #4221 [Verbose] > │         v1                                                                   │

00:00:43 #4222 [Verbose] > │ and method1 (v0 : (struct (float * float * float * float * float * float *   │

00:00:43 #4223 [Verbose] > │ float * float * float) -> struct (float * float * float * float * float *    │

00:00:43 #4224 [Verbose] > │ float * float * float * float)), v1 : UH0, v2 : int32) : UH0 =               │

00:00:43 #4225 [Verbose] > │     let v3 : float = 1.602176621E-19                                         │

00:00:43 #4226 [Verbose] > │     let v4 : float = 1.672621898E-27                                         │

00:00:43 #4227 [Verbose] > │     let v5 : float = 0.0                                                     │

00:00:43 #4228 [Verbose] > │     let v6 : float = 0.0                                                     │

00:00:43 #4229 [Verbose] > │     let v7 : float = 0.0                                                     │

00:00:43 #4230 [Verbose] > │     let v8 : float = 0.0                                                     │

00:00:43 #4231 [Verbose] > │     let v9 : float = 0.0                                                     │

00:00:43 #4232 [Verbose] > │     let v10 : float = 239833966.4                                            │

00:00:43 #4233 [Verbose] > │     let v11 : float = 0.0                                                    │

00:00:43 #4234 [Verbose] > │     let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16 :    │

00:00:43 #4235 [Verbose] > │ float, v17 : float, v18 : float, v19 : float, v20 : float) = method2(v0, v3, │

00:00:43 #4236 [Verbose] > │ v4, v5, v6, v7, v8, v9, v10, v11, v2)                                        │

00:00:43 #4237 [Verbose] > │     let v21 : bool = v2 < 100                                                │

00:00:43 #4238 [Verbose] > │     if v21 then                                                              │

00:00:43 #4239 [Verbose] > │         let v22 : UH0 = UH0_0(v12, v13, v14, v15, v16, v17, v18, v19, v20,   │

00:00:43 #4240 [Verbose] > │ v1)                                                                          │

00:00:43 #4241 [Verbose] > │         let v23 : int32 = v2 + 1                                             │

00:00:43 #4242 [Verbose] > │         method1(v0, v22, v23)                                                │

00:00:43 #4243 [Verbose] > │     else                                                                     │

00:00:43 #4244 [Verbose] > │         let v25 : UH0 = UH0_1                                                │

00:00:43 #4245 [Verbose] > │         method3(v1, v25)                                                     │

00:00:43 #4246 [Verbose] > │ and method4 (v0 : UH0, v1 : UH1) : UH1 =                                     │

00:00:43 #4247 [Verbose] > │     match v0 with                                                            │

00:00:43 #4248 [Verbose] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

00:00:43 #4249 [Verbose] > │         let v12 : UH1 = method4(v11, v1)                                     │

00:00:43 #4250 [Verbose] > │         UH1_0(v4, v5, v12)                                                   │

00:00:43 #4251 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:43 #4252 [Verbose] > │         v1                                                                   │

00:00:43 #4253 [Verbose] > │ and method5 (v0 : UH1, v1 : UH2, v2 : UH2) : struct (UH2 * UH2) =            │

00:00:43 #4254 [Verbose] > │     match v0 with                                                            │

00:00:43 #4255 [Verbose] > │     | UH1_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:43 #4256 [Verbose] > │         let v6 : UH2 = UH2_0(v3, v1)                                         │

00:00:43 #4257 [Verbose] > │         let v7 : UH2 = UH2_0(v4, v2)                                         │

00:00:43 #4258 [Verbose] > │         method5(v5, v6, v7)                                                  │

00:00:43 #4259 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:43 #4260 [Verbose] > │         struct (v1, v2)                                                      │

00:00:43 #4261 [Verbose] > │ and method6 (v0 : UH2, v1 : UH2) : UH2 =                                     │

00:00:43 #4262 [Verbose] > │     match v0 with                                                            │

00:00:43 #4263 [Verbose] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

00:00:43 #4264 [Verbose] > │         let v4 : UH2 = UH2_0(v2, v1)                                         │

00:00:43 #4265 [Verbose] > │         method6(v3, v4)                                                      │

00:00:43 #4266 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:43 #4267 [Verbose] > │         v1                                                                   │

00:00:43 #4268 [Verbose] > │ and method7 (v0 : (struct (float * float * float * float * float * float *   │

00:00:43 #4269 [Verbose] > │ float * float * float) -> struct (float * float * float * float * float *    │

00:00:43 #4270 [Verbose] > │ float * float * float * float)), v1 : UH0, v2 : int32) : UH0 =               │

00:00:43 #4271 [Verbose] > │     let v3 : float = 1.602176621E-19                                         │

00:00:43 #4272 [Verbose] > │     let v4 : float = 1.672621898E-27                                         │

00:00:43 #4273 [Verbose] > │     let v5 : float = 0.0                                                     │

00:00:43 #4274 [Verbose] > │     let v6 : float = 0.0                                                     │

00:00:43 #4275 [Verbose] > │     let v7 : float = 0.0                                                     │

00:00:43 #4276 [Verbose] > │     let v8 : float = 0.0                                                     │

00:00:43 #4277 [Verbose] > │     let v9 : float = 0.0                                                     │

00:00:43 #4278 [Verbose] > │     let v10 : float = 239833966.4                                            │

00:00:43 #4279 [Verbose] > │     let v11 : float = 0.0                                                    │

00:00:43 #4280 [Verbose] > │     let struct (v12 : float, v13 : float, v14 : float, v15 : float, v16 :    │

00:00:43 #4281 [Verbose] > │ float, v17 : float, v18 : float, v19 : float, v20 : float) = method2(v0, v3, │

00:00:43 #4282 [Verbose] > │ v4, v5, v6, v7, v8, v9, v10, v11, v2)                                        │

00:00:43 #4283 [Verbose] > │     let v21 : bool = v2 < 165                                                │

00:00:43 #4284 [Verbose] > │     if v21 then                                                              │

00:00:43 #4285 [Verbose] > │         let v22 : UH0 = UH0_0(v12, v13, v14, v15, v16, v17, v18, v19, v20,   │

00:00:43 #4286 [Verbose] > │ v1)                                                                          │

00:00:43 #4287 [Verbose] > │         let v23 : int32 = v2 + 1                                             │

00:00:43 #4288 [Verbose] > │         method7(v0, v22, v23)                                                │

00:00:43 #4289 [Verbose] > │     else                                                                     │

00:00:43 #4290 [Verbose] > │         let v25 : UH0 = UH0_1                                                │

00:00:43 #4291 [Verbose] > │         method3(v1, v25)                                                     │

00:00:43 #4292 [Verbose] > │ and method8 (v0 : UH0, v1 : UH1) : UH1 =                                     │

00:00:43 #4293 [Verbose] > │     match v0 with                                                            │

00:00:43 #4294 [Verbose] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

00:00:43 #4295 [Verbose] > │         let v12 : UH1 = method8(v11, v1)                                     │

00:00:43 #4296 [Verbose] > │         UH1_0(v4, v5, v12)                                                   │

00:00:43 #4297 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:43 #4298 [Verbose] > │         v1                                                                   │

00:00:43 #4299 [Verbose] > │ and method10 (v0 : UH2, v1 : int32) : int32 =                                │

00:00:43 #4300 [Verbose] > │     match v0 with                                                            │

00:00:43 #4301 [Verbose] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

00:00:43 #4302 [Verbose] > │         let v4 : int32 = v1 + 1                                              │

00:00:43 #4303 [Verbose] > │         method10(v3, v4)                                                     │

00:00:43 #4304 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:43 #4305 [Verbose] > │         v1                                                                   │

00:00:43 #4306 [Verbose] > │ and method11 (v0 : (float []), v1 : UH2, v2 : int32) : int32 =               │

00:00:43 #4307 [Verbose] > │     match v1 with                                                            │

00:00:43 #4308 [Verbose] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

00:00:43 #4309 [Verbose] > │         v0.[int v2] <- v3                                                    │

00:00:43 #4310 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:00:43 #4311 [Verbose] > │         method11(v0, v4, v5)                                                 │

00:00:43 #4312 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:43 #4313 [Verbose] > │         v2                                                                   │

00:00:43 #4314 [Verbose] > │ and method9 (v0 : UH2) : (float []) =                                        │

00:00:43 #4315 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:43 #4316 [Verbose] > │     let v2 : int32 = method10(v0, v1)                                        │

00:00:43 #4317 [Verbose] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

00:00:43 #4318 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:43 #4319 [Verbose] > │     let v5 : int32 = method11(v3, v0, v4)                                    │

00:00:43 #4320 [Verbose] > │     v3                                                                       │

00:00:43 #4321 [Verbose] > │ and method12 (v0 : (struct (string * (float []) * (float [])) [])) : (struct │

00:00:43 #4322 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:43 #4323 [Verbose] > │     v0                                                                       │

00:00:43 #4324 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:43 #4325 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:43 #4326 [Verbose] > │     let v0 : ((struct (float * float * float * float * float * float * float │

00:00:43 #4327 [Verbose] > │ * float * float) -> struct (float * float * float * float * float * float *  │

00:00:43 #4328 [Verbose] > │ float * float * float)) -> (struct (float * float * float * float * float *  │

00:00:43 #4329 [Verbose] > │ float * float * float * float) -> struct (float * float * float * float *    │

00:00:43 #4330 [Verbose] > │ float * float * float * float * float))) = closure0()                        │

00:00:43 #4331 [Verbose] > │     let v1 : (struct (float * float * float * float * float * float * float  │

00:00:43 #4332 [Verbose] > │ * float * float) -> struct (float * float * float * float * float * float *  │

00:00:43 #4333 [Verbose] > │ float * float * float)) = closure2()                                         │

00:00:43 #4334 [Verbose] > │     let v2 : (struct (float * float * float * float * float * float * float  │

00:00:43 #4335 [Verbose] > │ * float * float) -> struct (float * float * float * float * float * float *  │

00:00:43 #4336 [Verbose] > │ float * float * float)) = v0 v1                                              │

00:00:43 #4337 [Verbose] > │     let v3 : (struct (float * float * float * float * float * float * float  │

00:00:43 #4338 [Verbose] > │ * float * float) -> struct (float * float * float * float * float * float *  │

00:00:43 #4339 [Verbose] > │ float * float * float)) = closure3()                                         │

00:00:43 #4340 [Verbose] > │     let v4 : (struct (float * float * float * float * float * float * float  │

00:00:43 #4341 [Verbose] > │ * float * float) -> struct (float * float * float * float * float * float *  │

00:00:43 #4342 [Verbose] > │ float * float * float)) = v0 v3                                              │

00:00:43 #4343 [Verbose] > │     let v5 : UH0 = UH0_1                                                     │

00:00:43 #4344 [Verbose] > │     let v6 : int32 = 0                                                       │

00:00:43 #4345 [Verbose] > │     let v7 : UH0 = method1(v2, v5, v6)                                       │

00:00:43 #4346 [Verbose] > │     let v8 : UH1 = UH1_1                                                     │

00:00:43 #4347 [Verbose] > │     let v9 : UH1 = method4(v7, v8)                                           │

00:00:43 #4348 [Verbose] > │     let v10 : UH2 = UH2_1                                                    │

00:00:43 #4349 [Verbose] > │     let v11 : UH2 = UH2_1                                                    │

00:00:43 #4350 [Verbose] > │     let struct (v12 : UH2, v13 : UH2) = method5(v9, v10, v11)                │

00:00:43 #4351 [Verbose] > │     let v14 : UH2 = UH2_1                                                    │

00:00:43 #4352 [Verbose] > │     let v15 : UH2 = method6(v12, v14)                                        │

00:00:43 #4353 [Verbose] > │     let v16 : UH2 = UH2_1                                                    │

00:00:43 #4354 [Verbose] > │     let v17 : UH2 = method6(v13, v16)                                        │

00:00:43 #4355 [Verbose] > │     let v18 : UH0 = UH0_1                                                    │

00:00:43 #4356 [Verbose] > │     let v19 : int32 = 0                                                      │

00:00:43 #4357 [Verbose] > │     let v20 : UH0 = method7(v4, v18, v19)                                    │

00:00:43 #4358 [Verbose] > │     let v21 : UH1 = UH1_1                                                    │

00:00:43 #4359 [Verbose] > │     let v22 : UH1 = method8(v20, v21)                                        │

00:00:43 #4360 [Verbose] > │     let v23 : UH2 = UH2_1                                                    │

00:00:43 #4361 [Verbose] > │     let v24 : UH2 = UH2_1                                                    │

00:00:43 #4362 [Verbose] > │     let struct (v25 : UH2, v26 : UH2) = method5(v22, v23, v24)               │

00:00:43 #4363 [Verbose] > │     let v27 : UH2 = UH2_1                                                    │

00:00:43 #4364 [Verbose] > │     let v28 : UH2 = method6(v25, v27)                                        │

00:00:43 #4365 [Verbose] > │     let v29 : UH2 = UH2_1                                                    │

00:00:43 #4366 [Verbose] > │     let v30 : UH2 = method6(v26, v29)                                        │

00:00:43 #4367 [Verbose] > │     let v31 : (float []) = method9(v15)                                      │

00:00:43 #4368 [Verbose] > │     let v32 : (float []) = method9(v17)                                      │

00:00:43 #4369 [Verbose] > │     let v33 : (float []) = method9(v28)                                      │

00:00:43 #4370 [Verbose] > │     let v34 : (float []) = method9(v30)                                      │

00:00:43 #4371 [Verbose] > │     let v35 : string = "newtonian"                                           │

00:00:43 #4372 [Verbose] > │     let v36 : string = "relativistic"                                        │

00:00:43 #4373 [Verbose] > │     let v37 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:43 #4374 [Verbose] > │ (v35, v31, v32); struct (v36, v33, v34)|]                                    │

00:00:43 #4375 [Verbose] > │     let v38 : (struct (string * (float []) * (float [])) []) = method12(v37) │

00:00:43 #4376 [Verbose] > │     let v39 : string = "proton in a 1-t magnetic field"                      │

00:00:43 #4377 [Verbose] > │     let v40 : string = "x (m)"                                               │

00:00:43 #4378 [Verbose] > │     let v41 : string = "y (m)"                                               │

00:00:43 #4379 [Verbose] > │     struct (v39, v40, v41, v38)                                              │

00:00:43 #4380 [Verbose] > │ method0()                                                                    │

00:00:43 #4381 [Verbose] > │                                                                              │

00:00:43 #4382 [Verbose] > │                                                                              │

00:00:43 #4383 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:43 #4384 [Verbose] >

00:00:43 #4385 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:43 #4386 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:43 #4387 [Verbose] > │ ### system kinetic energy versus time 1                                      │

00:00:43 #4388 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:43 #4389 [Verbose] >

00:00:43 #4390 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:43 #4391 [Verbose] > // // test

00:00:43 #4392 [Verbose] >

00:00:43 #4393 [Verbose] > inl central_force f (particle_state st1) (particle_state st2) =

00:00:43 #4394 [Verbose] >     inl r1 = st1.pos_vec

00:00:43 #4395 [Verbose] >     inl r2 = st2.pos_vec

00:00:43 #4396 [Verbose] >     inl r21 = r2 ^-^ r1

00:00:43 #4397 [Verbose] >     inl r21mag = magnitude r21

00:00:43 #4398 [Verbose] >     f r21mag *^ r21 ^/ r21mag

00:00:43 #4399 [Verbose] >

00:00:43 #4400 [Verbose] > inl billiard_force k re =

00:00:43 #4401 [Verbose] >     inl f r =

00:00:43 #4402 [Verbose] >         if r >= re

00:00:43 #4403 [Verbose] >         then 0

00:00:43 #4404 [Verbose] >         else -k * (r - re)

00:00:43 #4405 [Verbose] >     central_force f

00:00:43 #4406 [Verbose] >

00:00:43 #4407 [Verbose] > type force_vector = vec

00:00:43 #4408 [Verbose] > type two_body_force = particle_state -> particle_state -> force_vector

00:00:43 #4409 [Verbose] >

00:00:43 #4410 [Verbose] > union force =

00:00:43 #4411 [Verbose] >     | ExternalForce : i32 * one_body_force

00:00:43 #4412 [Verbose] >     | InternalForce : i32 * i32 * two_body_force

00:00:43 #4413 [Verbose] >

00:00:43 #4414 [Verbose] > nominal multi_particle_state = list particle_state

00:00:43 #4415 [Verbose] >

00:00:43 #4416 [Verbose] > nominal d_multi_particle_state = list d_particle_state

00:00:43 #4417 [Verbose] >

00:00:43 #4418 [Verbose] > inl force_on n sts force =

00:00:43 #4419 [Verbose] >     match force with

00:00:43 #4420 [Verbose] >     | ExternalForce (n0, f_one_body) =>

00:00:43 #4421 [Verbose] >         if n = n0

00:00:43 #4422 [Verbose] >         then f_one_body

00:00:43 #4423 [Verbose] >         else fun _ => zero_vec ()

00:00:43 #4424 [Verbose] >     | InternalForce (n0, n1, f_two_body) =>

00:00:43 #4425 [Verbose] >         if n = n0

00:00:43 #4426 [Verbose] >         then f_two_body (sts |> listm'.item n1)

00:00:43 #4427 [Verbose] >         elif n = n1

00:00:43 #4428 [Verbose] >         then f_two_body (sts |> listm'.item n0)

00:00:43 #4429 [Verbose] >         else fun _ => zero_vec ()

00:00:43 #4430 [Verbose] >

00:00:43 #4431 [Verbose] > inl forces_on n (multi_particle_state sts) fs =

00:00:43 #4432 [Verbose] >     fs |> listm.map (force_on n sts)

00:00:43 #4433 [Verbose] >

00:00:43 #4434 [Verbose] > inl newton_second_mps fs (multi_particle_state sts) : d_multi_particle_state =

00:00:43 #4435 [Verbose] >     inl deriv (n, st) =

00:00:43 #4436 [Verbose] >         newton_second_ps (forces_on n (multi_particle_state sts) fs) st

00:00:43 #4437 [Verbose] >     sts |> listm'.indexed |> listm.map deriv |> d_multi_particle_state

00:00:43 #4438 [Verbose] >

00:00:43 #4439 [Verbose] > instance (+++) d_multi_particle_state = fun (d_multi_particle_state dsts1)

00:00:43 #4440 [Verbose] > (d_multi_particle_state dsts2) =>

00:00:43 #4441 [Verbose] >     d_multi_particle_state (listm'.zip_with_ (+++) dsts1 dsts2)

00:00:43 #4442 [Verbose] >

00:00:43 #4443 [Verbose] > instance scale d_multi_particle_state = fun w (d_multi_particle_state dsts) =>

00:00:43 #4444 [Verbose] >     d_multi_particle_state (dsts |> listm.map (scale w))

00:00:43 #4445 [Verbose] >

00:00:43 #4446 [Verbose] > instance shift multi_particle_state = fun dt dsts (multi_particle_state sts) =>

00:00:43 #4447 [Verbose] >     inl (d_multi_particle_state dsts) =

00:00:43 #4448 [Verbose] >         real

00:00:43 #4449 [Verbose] >             match dsts with

00:00:43 #4450 [Verbose] >             | d_multi_particle_state _ => dsts

00:00:43 #4451 [Verbose] >     listm'.zip_with_ (shift dt) dsts sts |> multi_particle_state

00:00:43 #4452 [Verbose] >

00:00:43 #4453 [Verbose] > inl euler_cromer_mps dt : numerical_method multi_particle_state

00:00:43 #4454 [Verbose] > d_multi_particle_state =

00:00:43 #4455 [Verbose] >     fun deriv mpst0 =>

00:00:43 #4456 [Verbose] >         inl mpst1 = euler dt deriv mpst0

00:00:43 #4457 [Verbose] >         inl (multi_particle_state sts0) = mpst0

00:00:43 #4458 [Verbose] >         inl (multi_particle_state sts1) = mpst1

00:00:43 #4459 [Verbose] >         sts1

00:00:43 #4460 [Verbose] >         |> listm'.zip_ sts0

00:00:43 #4461 [Verbose] >         |> listm.map (fun ((particle_state st0), (particle_state st1)) =>

00:00:43 #4462 [Verbose] >             particle_state {

00:00:43 #4463 [Verbose] >                 st1 with

00:00:43 #4464 [Verbose] >                     pos_vec = st0.pos_vec ^+^ st1.velocity ^* dt

00:00:43 #4465 [Verbose] >             }

00:00:43 #4466 [Verbose] >         )

00:00:43 #4467 [Verbose] >         |> multi_particle_state

00:00:43 #4468 [Verbose] >

00:00:43 #4469 [Verbose] > inl update_mps (method : numerical_method multi_particle_state

00:00:43 #4470 [Verbose] > d_multi_particle_state) =

00:00:43 #4471 [Verbose] >     newton_second_mps >> method

00:00:43 #4472 [Verbose] >

00:00:43 #4473 [Verbose] > inl states_mps (method : numerical_method multi_particle_state

00:00:43 #4474 [Verbose] > d_multi_particle_state) =

00:00:43 #4475 [Verbose] >     newton_second_mps >> method >> seq.iterate_

00:00:43 #4476 [Verbose] >

00:00:43 #4477 [Verbose] >

00:00:43 #4478 [Verbose] > inl kinetic_energy (particle_state st) =

00:00:43 #4479 [Verbose] >     inl m = st.mass

00:00:43 #4480 [Verbose] >     inl v = magnitude st.velocity

00:00:43 #4481 [Verbose] >     0.5 * m * v ** 2

00:00:43 #4482 [Verbose] >

00:00:43 #4483 [Verbose] > inl system_ke (multi_particle_state sts) =

00:00:43 #4484 [Verbose] >     sts |> listm.map kinetic_energy |> listm'.sum

00:00:43 #4485 [Verbose] >

00:00:43 #4486 [Verbose] > inl linear_spring_pe k re (particle_state st1) (particle_state st2) =

00:00:43 #4487 [Verbose] >     inl r1 = st1.pos_vec

00:00:43 #4488 [Verbose] >     inl r2 = st2.pos_vec

00:00:43 #4489 [Verbose] >     inl r21 = r2 ^-^ r1

00:00:43 #4490 [Verbose] >     inl r21mag = magnitude r21

00:00:43 #4491 [Verbose] >     k * (r21mag - re) ** 2 / 2

00:00:43 #4492 [Verbose] >

00:00:43 #4493 [Verbose] > inl earth_surface_gravity_pe (particle_state st) =

00:00:43 #4494 [Verbose] >     inl g = 9.80665

00:00:43 #4495 [Verbose] >     inl m = st.mass

00:00:43 #4496 [Verbose] >     inl z = st.pos_vec.z

00:00:43 #4497 [Verbose] >     m * g * z

00:00:43 #4498 [Verbose] >

00:00:43 #4499 [Verbose] > inl two_springs_pe (multi_particle_state sts) =

00:00:43 #4500 [Verbose] >     inl st0 = sts |> listm'.item 0i32

00:00:43 #4501 [Verbose] >     inl st1 = sts |> listm'.item 1i32

00:00:43 #4502 [Verbose] >     linear_spring_pe 100 0.5 (default_particle_state ()) st0

00:00:43 #4503 [Verbose] >     + linear_spring_pe 100 0.5 st0 st1

00:00:43 #4504 [Verbose] >     + earth_surface_gravity_pe st0

00:00:43 #4505 [Verbose] >     + earth_surface_gravity_pe st1

00:00:43 #4506 [Verbose] >

00:00:43 #4507 [Verbose] > inl two_springs_me mpst =

00:00:43 #4508 [Verbose] >     system_ke mpst + two_springs_pe mpst

00:00:43 #4509 [Verbose] >

00:00:43 #4510 [Verbose] > inl ball_radius () = 0.03

00:00:43 #4511 [Verbose] >

00:00:43 #4512 [Verbose] > inl billiard_forces k =

00:00:43 #4513 [Verbose] >     [[ InternalForce (0, 1, billiard_force k (2 * ball_radius ())) ]]

00:00:43 #4514 [Verbose] >

00:00:43 #4515 [Verbose] > inl billiard_update n_method k dt =

00:00:43 #4516 [Verbose] >     update_mps (n_method dt) (billiard_forces k)

00:00:43 #4517 [Verbose] >

00:00:43 #4518 [Verbose] > inl billiard_initial () =

00:00:43 #4519 [Verbose] >     inl ball_mass = 0.160

00:00:43 #4520 [Verbose] >     inl (particle_state default_particle_state') = default_particle_state ()

00:00:43 #4521 [Verbose] >     multi_particle_state [[

00:00:43 #4522 [Verbose] >         particle_state {

00:00:43 #4523 [Verbose] >             default_particle_state' with

00:00:43 #4524 [Verbose] >                 mass = ball_mass

00:00:43 #4525 [Verbose] >                 pos_vec = zero_vec ()

00:00:43 #4526 [Verbose] >                 velocity = 0.2 *^ i_hat ()

00:00:43 #4527 [Verbose] >         }

00:00:43 #4528 [Verbose] >         particle_state {

00:00:43 #4529 [Verbose] >             default_particle_state' with

00:00:43 #4530 [Verbose] >                 mass = ball_mass

00:00:43 #4531 [Verbose] >                 pos_vec = i_hat () ^+^ 0.02 *^ j_hat ()

00:00:43 #4532 [Verbose] >                 velocity = zero_vec ()

00:00:43 #4533 [Verbose] >         }

00:00:43 #4534 [Verbose] >     ]]

00:00:43 #4535 [Verbose] >

00:00:43 #4536 [Verbose] > inl billiard_states ~n_method k dt =

00:00:43 #4537 [Verbose] >     states_mps (n_method dt) (billiard_forces k) (billiard_initial ())

00:00:43 #4538 [Verbose] >

00:00:43 #4539 [Verbose] > inl billiard_states_finite n_method k dt =

00:00:43 #4540 [Verbose] >     billiard_states n_method k dt

00:00:43 #4541 [Verbose] >     >> Some

00:00:43 #4542 [Verbose] >     |> seq.take_while_ (fun (multi_particle_state mpst) (_ : i32) =>

00:00:43 #4543 [Verbose] >         (mpst |> listm'.item 0i32).time <= 10

00:00:43 #4544 [Verbose] >     )

00:00:43 #4545 [Verbose] >

00:00:43 #4546 [Verbose] > inl momentum (particle_state st) =

00:00:43 #4547 [Verbose] >     inl m = st.mass

00:00:43 #4548 [Verbose] >     inl v = st.velocity

00:00:43 #4549 [Verbose] >     m *^ v

00:00:43 #4550 [Verbose] >

00:00:43 #4551 [Verbose] > inl system_p (multi_particle_state sts) =

00:00:43 #4552 [Verbose] >     sts |> listm.map momentum |> sum_vec

00:00:43 #4553 [Verbose] >

00:00:43 #4554 [Verbose] >

00:00:43 #4555 [Verbose] > inl time_ke_ec_x, time_ke_ec_y =

00:00:43 #4556 [Verbose] >     billiard_states_finite euler_cromer_mps 30 0.03

00:00:43 #4557 [Verbose] >     |> listm.map (fun (multi_particle_state mpst) =>

00:00:43 #4558 [Verbose] >         (mpst |> listm'.item 0i32).time, system_ke (multi_particle_state mpst)

00:00:43 #4559 [Verbose] >     )

00:00:43 #4560 [Verbose] >     |> listm'.unzip

00:00:43 #4561 [Verbose] >

00:00:43 #4562 [Verbose] > inl time_ke_rk4_x, time_ke_rk4_y =

00:00:43 #4563 [Verbose] >     billiard_states_finite runge_kutta_4 30 0.03

00:00:43 #4564 [Verbose] >     |> listm.map (fun (multi_particle_state mpst) =>

00:00:43 #4565 [Verbose] >         (mpst |> listm'.item 0i32).time, system_ke (multi_particle_state mpst)

00:00:43 #4566 [Verbose] >     )

00:00:43 #4567 [Verbose] >     |> listm'.unzip

00:00:43 #4568 [Verbose] >

00:00:43 #4569 [Verbose] > inl time_ke_ec_x : a i32 _ = time_ke_ec_x |> listm.toArray

00:00:43 #4570 [Verbose] > inl time_ke_ec_y : a i32 _ = time_ke_ec_y |> listm.toArray

00:00:43 #4571 [Verbose] >

00:00:43 #4572 [Verbose] > inl time_ke_rk4_x : a i32 _ = time_ke_rk4_x |> listm.toArray

00:00:43 #4573 [Verbose] > inl time_ke_rk4_y : a i32 _ = time_ke_rk4_y |> listm.toArray

00:00:43 #4574 [Verbose] >

00:00:43 #4575 [Verbose] > "system kinetic energy versus time",

00:00:43 #4576 [Verbose] > "time (s)",

00:00:43 #4577 [Verbose] > "system kinetic energy (j)",

00:00:43 #4578 [Verbose] > ;[[

00:00:43 #4579 [Verbose] >     "euler-cromer", time_ke_ec_x, time_ke_ec_y

00:00:43 #4580 [Verbose] >     "runge-kutta 4", time_ke_rk4_x, time_ke_rk4_y

00:00:43 #4581 [Verbose] > ]]

00:00:43 #4582 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-1144-4442-4a5f6472bfc1\main.spi

00:00:45 #4583 [Verbose] >

00:00:45 #4584 [Verbose] > ╭─[ 2.00s - return value ]─────────────────────────────────────────────────────╮

00:00:45 #4585 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:45 #4586 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:45 #4587 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:45 #4588 [Verbose] > │ stroke="none"/>                                                              │

00:00:45 #4589 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:45 #4590 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:45 #4591 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:45 #4592 [Verbose] > │ system kinetic energy versus time                                            │

00:00:45 #4593 [Verbose] > │ </text>                                                                      │

00:00:45 #4594 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

00:00:45 #4595 [Verbose] > │ y2="75"/>                                                                    │

00:00:45 #4596 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:45 #4597 [Verbose] > │ y2="75"/>                                                                    │

00:00:45 #4598 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

00:00:45 #4599 [Verbose] > │ y2="75"/>                                                                    │

00:00:45 #4600 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

00:00:45 #4601 [Verbose] > │ y2="75"/>                                                                    │

00:00:45 #4602 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1...                        │

00:00:45 #4603 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:45 #4604 [Verbose] >

00:00:45 #4605 [Verbose] > ╭─[ 2.02s - stdout ]───────────────────────────────────────────────────────────╮

00:00:45 #4606 [Verbose] > │ type UH0 =                                                                   │

00:00:45 #4607 [Verbose] > │     | UH0_0 of float * float * float * float * float * float * float * float │

00:00:45 #4608 [Verbose] > │ * float * UH0                                                                │

00:00:45 #4609 [Verbose] > │     | UH0_1                                                                  │

00:00:45 #4610 [Verbose] > │ and UH1 =                                                                    │

00:00:45 #4611 [Verbose] > │     | UH1_0 of float * float * float * float * float * float * float * float │

00:00:45 #4612 [Verbose] > │ * float * UH1                                                                │

00:00:45 #4613 [Verbose] > │     | UH1_1                                                                  │

00:00:45 #4614 [Verbose] > │ and UH2 =                                                                    │

00:00:45 #4615 [Verbose] > │     | UH2_0 of float * float * float * float * float * float * float * float │

00:00:45 #4616 [Verbose] > │ * float * float * float * float * float * float * float * float * float *    │

00:00:45 #4617 [Verbose] > │ float * UH2                                                                  │

00:00:45 #4618 [Verbose] > │     | UH2_1                                                                  │

00:00:45 #4619 [Verbose] > │ and UH3 =                                                                    │

00:00:45 #4620 [Verbose] > │     | UH3_0 of int32 * float * float * float * float * float * float * float │

00:00:45 #4621 [Verbose] > │ * float * float * UH3                                                        │

00:00:45 #4622 [Verbose] > │     | UH3_1                                                                  │

00:00:45 #4623 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:45 #4624 [Verbose] > │     | US0_0                                                                  │

00:00:45 #4625 [Verbose] > │     | US0_1 of f1_0 : float * f1_1 : float * f1_2 : float * f1_3 : float *   │

00:00:45 #4626 [Verbose] > │ f1_4 : float * f1_5 : float * f1_6 : float * f1_7 : float * f1_8 : float     │

00:00:45 #4627 [Verbose] > │ and UH4 =                                                                    │

00:00:45 #4628 [Verbose] > │     | UH4_0 of UH0 * UH4                                                     │

00:00:45 #4629 [Verbose] > │     | UH4_1                                                                  │

00:00:45 #4630 [Verbose] > │ and UH5 =                                                                    │

00:00:45 #4631 [Verbose] > │     | UH5_0 of float * float * UH5                                           │

00:00:45 #4632 [Verbose] > │     | UH5_1                                                                  │

00:00:45 #4633 [Verbose] > │ and UH6 =                                                                    │

00:00:45 #4634 [Verbose] > │     | UH6_0 of float * UH6                                                   │

00:00:45 #4635 [Verbose] > │     | UH6_1                                                                  │

00:00:45 #4636 [Verbose] > │ let rec method2 (v0 : UH0, v1 : UH0) : UH0 =                                 │

00:00:45 #4637 [Verbose] > │     match v0 with                                                            │

00:00:45 #4638 [Verbose] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

00:00:45 #4639 [Verbose] > │         let v12 : UH0 = UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

00:00:45 #4640 [Verbose] > │         method2(v11, v12)                                                    │

00:00:45 #4641 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:45 #4642 [Verbose] > │         v1                                                                   │

00:00:45 #4643 [Verbose] > │ and method1 (v0 : float, v1 : UH0, v2 : UH1, v3 : UH0) : UH0 =               │

00:00:45 #4644 [Verbose] > │     match v2 with                                                            │

00:00:45 #4645 [Verbose] > │     | UH1_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* Cons *)        │

00:00:45 #4646 [Verbose] > │         match v3 with                                                        │

00:00:45 #4647 [Verbose] > │         | UH0_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (* Cons │

00:00:45 #4648 [Verbose] > │ *)                                                                           │

00:00:45 #4649 [Verbose] > │             let v24 : float = v9 * v0                                        │

00:00:45 #4650 [Verbose] > │             let v25 : float = v19 + v24                                      │

00:00:45 #4651 [Verbose] > │             let v26 : float = v0 * v6                                        │

00:00:45 #4652 [Verbose] > │             let v27 : float = v0 * v7                                        │

00:00:45 #4653 [Verbose] > │             let v28 : float = v0 * v8                                        │

00:00:45 #4654 [Verbose] > │             let v29 : float = v16 + v26                                      │

00:00:45 #4655 [Verbose] > │             let v30 : float = v17 + v27                                      │

00:00:45 #4656 [Verbose] > │             let v31 : float = v18 + v28                                      │

00:00:45 #4657 [Verbose] > │             let v32 : float = v0 * v10                                       │

00:00:45 #4658 [Verbose] > │             let v33 : float = v0 * v11                                       │

00:00:45 #4659 [Verbose] > │             let v34 : float = v0 * v12                                       │

00:00:45 #4660 [Verbose] > │             let v35 : float = v20 + v32                                      │

00:00:45 #4661 [Verbose] > │             let v36 : float = v21 + v33                                      │

00:00:45 #4662 [Verbose] > │             let v37 : float = v22 + v34                                      │

00:00:45 #4663 [Verbose] > │             let v38 : UH0 = UH0_0(v14, v15, v29, v30, v31, v25, v35, v36,    │

00:00:45 #4664 [Verbose] > │ v37, v1)                                                                     │

00:00:45 #4665 [Verbose] > │             method1(v0, v38, v13, v23)                                       │

00:00:45 #4666 [Verbose] > │         | _ ->                                                               │

00:00:45 #4667 [Verbose] > │             let v40 : UH0 = UH0_1                                            │

00:00:45 #4668 [Verbose] > │             method2(v1, v40)                                                 │

00:00:45 #4669 [Verbose] > │     | _ ->                                                                   │

00:00:45 #4670 [Verbose] > │         let v43 : UH0 = UH0_1                                                │

00:00:45 #4671 [Verbose] > │         method2(v1, v43)                                                     │

00:00:45 #4672 [Verbose] > │ and method4 (v0 : UH2, v1 : UH2) : UH2 =                                     │

00:00:45 #4673 [Verbose] > │     match v0 with                                                            │

00:00:45 #4674 [Verbose] > │     | UH2_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15,    │

00:00:45 #4675 [Verbose] > │ v16, v17, v18, v19, v20) -> (* Cons *)                                       │

00:00:45 #4676 [Verbose] > │         let v21 : UH2 = UH2_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, │

00:00:45 #4677 [Verbose] > │ v13, v14, v15, v16, v17, v18, v19, v1)                                       │

00:00:45 #4678 [Verbose] > │         method4(v20, v21)                                                    │

00:00:45 #4679 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:45 #4680 [Verbose] > │         v1                                                                   │

00:00:45 #4681 [Verbose] > │ and method3 (v0 : UH2, v1 : UH0, v2 : UH0) : UH2 =                           │

00:00:45 #4682 [Verbose] > │     match v1 with                                                            │

00:00:45 #4683 [Verbose] > │     | UH0_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* Cons *)         │

00:00:45 #4684 [Verbose] > │         match v2 with                                                        │

00:00:45 #4685 [Verbose] > │         | UH0_0(v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) -> (* Cons │

00:00:45 #4686 [Verbose] > │ *)                                                                           │

00:00:45 #4687 [Verbose] > │             let v23 : UH2 = UH2_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v13, │

00:00:45 #4688 [Verbose] > │ v14, v15, v16, v17, v18, v19, v20, v21, v0)                                  │

00:00:45 #4689 [Verbose] > │             method3(v23, v12, v22)                                           │

00:00:45 #4690 [Verbose] > │         | _ ->                                                               │

00:00:45 #4691 [Verbose] > │             let v25 : UH2 = UH2_1                                            │

00:00:45 #4692 [Verbose] > │             method4(v0, v25)                                                 │

00:00:45 #4693 [Verbose] > │     | _ ->                                                                   │

00:00:45 #4694 [Verbose] > │         let v28 : UH2 = UH2_1                                                │

00:00:45 #4695 [Verbose] > │         method4(v0, v28)                                                     │

00:00:45 #4696 [Verbose] > │ and method5 (v0 : float, v1 : UH2, v2 : UH0) : UH0 =                         │

00:00:45 #4697 [Verbose] > │     match v1 with                                                            │

00:00:45 #4698 [Verbose] > │     | UH2_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16,   │

00:00:45 #4699 [Verbose] > │ v17, v18, v19, v20, v21) -> (* Cons *)                                       │

00:00:45 #4700 [Verbose] > │         let v22 : UH0 = method5(v0, v21, v2)                                 │

00:00:45 #4701 [Verbose] > │         let v23 : float = v0 * v18                                           │

00:00:45 #4702 [Verbose] > │         let v24 : float = v0 * v19                                           │

00:00:45 #4703 [Verbose] > │         let v25 : float = v0 * v20                                           │

00:00:45 #4704 [Verbose] > │         let v26 : float = v5 + v23                                           │

00:00:45 #4705 [Verbose] > │         let v27 : float = v6 + v24                                           │

00:00:45 #4706 [Verbose] > │         let v28 : float = v7 + v25                                           │

00:00:45 #4707 [Verbose] > │         UH0_0(v12, v13, v26, v27, v28, v17, v18, v19, v20, v22)              │

00:00:45 #4708 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:45 #4709 [Verbose] > │         v2                                                                   │

00:00:45 #4710 [Verbose] > │ and closure2 (v0 : float, v1 : (UH0 -> UH1)) (v2 : UH0) : UH0 =              │

00:00:45 #4711 [Verbose] > │     let v3 : UH1 = v1 v2                                                     │

00:00:45 #4712 [Verbose] > │     let v4 : UH0 = UH0_1                                                     │

00:00:45 #4713 [Verbose] > │     let v5 : UH0 = method1(v0, v4, v3, v2)                                   │

00:00:45 #4714 [Verbose] > │     let v6 : UH2 = UH2_1                                                     │

00:00:45 #4715 [Verbose] > │     let v7 : UH2 = method3(v6, v2, v5)                                       │

00:00:45 #4716 [Verbose] > │     let v8 : UH0 = UH0_1                                                     │

00:00:45 #4717 [Verbose] > │     let v9 : UH0 = method5(v0, v7, v8)                                       │

00:00:45 #4718 [Verbose] > │     v9                                                                       │

00:00:45 #4719 [Verbose] > │ and closure1 (v0 : float) (v1 : (UH0 -> UH1)) : (UH0 -> UH0) =               │

00:00:45 #4720 [Verbose] > │     closure2(v0, v1)                                                         │

00:00:45 #4721 [Verbose] > │ and closure0 () (v0 : float) : ((UH0 -> UH1) -> (UH0 -> UH0)) =              │

00:00:45 #4722 [Verbose] > │     closure1(v0)                                                             │

00:00:45 #4723 [Verbose] > │ and method6 (v0 : UH0, v1 : UH3, v2 : int32) : struct (UH3 * int32) =        │

00:00:45 #4724 [Verbose] > │     match v0 with                                                            │

00:00:45 #4725 [Verbose] > │     | UH0_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* Cons *)         │

00:00:45 #4726 [Verbose] > │         let v13 : int32 = v2 + 1                                             │

00:00:45 #4727 [Verbose] > │         let v14 : UH3 = UH3_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v1)  │

00:00:45 #4728 [Verbose] > │         method6(v12, v14, v13)                                               │

00:00:45 #4729 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:45 #4730 [Verbose] > │         struct (v1, v2)                                                      │

00:00:45 #4731 [Verbose] > │ and method7 (v0 : UH3, v1 : UH3) : UH3 =                                     │

00:00:45 #4732 [Verbose] > │     match v0 with                                                            │

00:00:45 #4733 [Verbose] > │     | UH3_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* Cons *)     │

00:00:45 #4734 [Verbose] > │         let v13 : UH3 = UH3_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v1)  │

00:00:45 #4735 [Verbose] > │         method7(v12, v13)                                                    │

00:00:45 #4736 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:00:45 #4737 [Verbose] > │         v1                                                                   │

00:00:45 #4738 [Verbose] > │ and closure4 (v0 : float, v1 : float, v2 : float, v3 : float, v4 : float, v5 │

00:00:45 #4739 [Verbose] > │ : float, v6 : float, v7 : float, v8 : float) struct (v9 : float, v10 :       │

00:00:45 #4740 [Verbose] > │ float, v11 : float, v12 : float, v13 : float, v14 : float, v15 : float, v16  │

00:00:45 #4741 [Verbose] > │ : float, v17 : float) : struct (float * float * float) =                     │

00:00:45 #4742 [Verbose] > │     let v18 : float = -1.0 * v2                                              │

00:00:45 #4743 [Verbose] > │     let v19 : float = -1.0 * v3                                              │

00:00:45 #4744 [Verbose] > │     let v20 : float = -1.0 * v4                                              │

00:00:45 #4745 [Verbose] > │     let v21 : float = v11 + v18                                              │

00:00:45 #4746 [Verbose] > │     let v22 : float = v12 + v19                                              │

00:00:45 #4747 [Verbose] > │     let v23 : float = v13 + v20                                              │

00:00:45 #4748 [Verbose] > │     let v24 : float = v21 * v21                                              │

00:00:45 #4749 [Verbose] > │     let v25 : float = v22 * v22                                              │

00:00:45 #4750 [Verbose] > │     let v26 : float = v24 + v25                                              │

00:00:45 #4751 [Verbose] > │     let v27 : float = v23 * v23                                              │

00:00:45 #4752 [Verbose] > │     let v28 : float = v26 + v27                                              │

00:00:45 #4753 [Verbose] > │     let v29 : float = sqrt v28                                               │

00:00:45 #4754 [Verbose] > │     let v30 : bool = v29 >= 0.06                                             │

00:00:45 #4755 [Verbose] > │     let v33 : float =                                                        │

00:00:45 #4756 [Verbose] > │         if v30 then                                                          │

00:00:45 #4757 [Verbose] > │             0.0                                                              │

00:00:45 #4758 [Verbose] > │         else                                                                 │

00:00:45 #4759 [Verbose] > │             let v31 : float = v29 - 0.06                                     │

00:00:45 #4760 [Verbose] > │             let v32 : float = -30.0 * v31                                    │

00:00:45 #4761 [Verbose] > │             v32                                                              │

00:00:45 #4762 [Verbose] > │     let v34 : float = v33 * v21                                              │

00:00:45 #4763 [Verbose] > │     let v35 : float = v33 * v22                                              │

00:00:45 #4764 [Verbose] > │     let v36 : float = v33 * v23                                              │

00:00:45 #4765 [Verbose] > │     let v37 : float = v34 / v29                                              │

00:00:45 #4766 [Verbose] > │     let v38 : float = v35 / v29                                              │

00:00:45 #4767 [Verbose] > │     let v39 : float = v36 / v29                                              │

00:00:45 #4768 [Verbose] > │     struct (v37, v38, v39)                                                   │

00:00:45 #4769 [Verbose] > │ and closure5 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 : │

00:00:45 #4770 [Verbose] > │ float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *     │

00:00:45 #4771 [Verbose] > │ float * float) =                                                             │

00:00:45 #4772 [Verbose] > │     struct (0.0, 0.0, 0.0)                                                   │

00:00:45 #4773 [Verbose] > │ and method8 (v0 : UH0, v1 : UH3, v2 : UH1) : UH1 =                           │

00:00:45 #4774 [Verbose] > │     match v1 with                                                            │

00:00:45 #4775 [Verbose] > │     | UH3_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* Cons *)    │

00:00:45 #4776 [Verbose] > │         let v14 : UH1 = method8(v0, v13, v2)                                 │

00:00:45 #4777 [Verbose] > │         let v15 : bool = v3 = 0                                              │

00:00:45 #4778 [Verbose] > │         let v134 : (struct (float * float * float * float * float * float *  │

00:00:45 #4779 [Verbose] > │ float * float * float) -> struct (float * float * float)) =                  │

00:00:45 #4780 [Verbose] > │             if v15 then                                                      │

00:00:45 #4781 [Verbose] > │                 let v42 : US0 =                                              │

00:00:45 #4782 [Verbose] > │                     match v0 with                                            │

00:00:45 #4783 [Verbose] > │                     | UH0_0(v16, v17, v18, v19, v20, v21, v22, v23, v24,     │

00:00:45 #4784 [Verbose] > │ v25) -> (* Cons *)                                                           │

00:00:45 #4785 [Verbose] > │                         match v25 with                                       │

00:00:45 #4786 [Verbose] > │                         | UH0_0(v26, v27, v28, v29, v30, v31, v32, v33, v34, │

00:00:45 #4787 [Verbose] > │ v35) -> (* Cons *)                                                           │

00:00:45 #4788 [Verbose] > │                             US0_1(v26, v27, v28, v29, v30, v31, v32, v33,    │

00:00:45 #4789 [Verbose] > │ v34)                                                                         │

00:00:45 #4790 [Verbose] > │                         | UH0_1 -> (* Nil *)                                 │

00:00:45 #4791 [Verbose] > │                             US0_0                                            │

00:00:45 #4792 [Verbose] > │                     | UH0_1 -> (* Nil *)                                     │

00:00:45 #4793 [Verbose] > │                         US0_0                                                │

00:00:45 #4794 [Verbose] > │                 let struct (v70 : float, v71 : float, v72 : float, v73 :     │

00:00:45 #4795 [Verbose] > │ float, v74 : float, v75 : float, v76 : float, v77 : float, v78 : float) =    │

00:00:45 #4796 [Verbose] > │                     match v42 with                                           │

00:00:45 #4797 [Verbose] > │                     | US0_0 -> (* None *)                                    │

00:00:45 #4798 [Verbose] > │                         failwith<struct (float * float * float * float *     │

00:00:45 #4799 [Verbose] > │ float * float * float * float * float)> "Option does not have a value."      │

00:00:45 #4800 [Verbose] > │                     | US0_1(v43, v44, v45, v46, v47, v48, v49, v50, v51) ->  │

00:00:45 #4801 [Verbose] > │ (* Some *)                                                                   │

00:00:45 #4802 [Verbose] > │                         struct (v43, v44, v45, v46, v47, v48, v49, v50, v51) │

00:00:45 #4803 [Verbose] > │                 closure4(v70, v71, v72, v73, v74, v75, v76, v77, v78)        │

00:00:45 #4804 [Verbose] > │             else                                                             │

00:00:45 #4805 [Verbose] > │                 let v80 : bool = v3 = 1                                      │

00:00:45 #4806 [Verbose] > │                 if v80 then                                                  │

00:00:45 #4807 [Verbose] > │                     let v94 : US0 =                                          │

00:00:45 #4808 [Verbose] > │                         match v0 with                                        │

00:00:45 #4809 [Verbose] > │                         | UH0_0(v81, v82, v83, v84, v85, v86, v87, v88, v89, │

00:00:45 #4810 [Verbose] > │ v90) -> (* Cons *)                                                           │

00:00:45 #4811 [Verbose] > │                             US0_1(v81, v82, v83, v84, v85, v86, v87, v88,    │

00:00:45 #4812 [Verbose] > │ v89)                                                                         │

00:00:45 #4813 [Verbose] > │                         | UH0_1 -> (* Nil *)                                 │

00:00:45 #4814 [Verbose] > │                             US0_0                                            │

00:00:45 #4815 [Verbose] > │                     let struct (v122 : float, v123 : float, v124 : float,    │

00:00:45 #4816 [Verbose] > │ v125 : float, v126 : float, v127 : float, v128 : float, v129 : float, v130 : │

00:00:45 #4817 [Verbose] > │ float) =                                                                     │

00:00:45 #4818 [Verbose] > │                         match v94 with                                       │

00:00:45 #4819 [Verbose] > │                         | US0_0 -> (* None *)                                │

00:00:45 #4820 [Verbose] > │                             failwith<struct (float * float * float * float * │

00:00:45 #4821 [Verbose] > │ float * float * float * float * float)> "Option does not have a value."      │

00:00:45 #4822 [Verbose] > │                         | US0_1(v95, v96, v97, v98, v99, v100, v101, v102,   │

00:00:45 #4823 [Verbose] > │ v103) -> (* Some *)                                                          │

00:00:45 #4824 [Verbose] > │                             struct (v95, v96, v97, v98, v99, v100, v101,     │

00:00:45 #4825 [Verbose] > │ v102, v103)                                                                  │

00:00:45 #4826 [Verbose] > │                     closure4(v122, v123, v124, v125, v126, v127, v128, v129, │

00:00:45 #4827 [Verbose] > │ v130)                                                                        │

00:00:45 #4828 [Verbose] > │                 else                                                         │

00:00:45 #4829 [Verbose] > │                     closure5()                                               │

00:00:45 #4830 [Verbose] > │         let struct (v135 : float, v136 : float, v137 : float) = v134 struct  │

00:00:45 #4831 [Verbose] > │ (v4, v5, v6, v7, v8, v9, v10, v11, v12)                                      │

00:00:45 #4832 [Verbose] > │         let v138 : float = v135 / v5                                         │

00:00:45 #4833 [Verbose] > │         let v139 : float = v136 / v5                                         │

00:00:45 #4834 [Verbose] > │         let v140 : float = v137 / v5                                         │

00:00:45 #4835 [Verbose] > │         UH1_0(0.0, 0.0, v10, v11, v12, 1.0, v138, v139, v140, v14)           │

00:00:45 #4836 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:00:45 #4837 [Verbose] > │         v2                                                                   │

00:00:45 #4838 [Verbose] > │ and closure3 () (v0 : UH0) : UH1 =                                           │

00:00:45 #4839 [Verbose] > │     let v1 : UH3 = UH3_1                                                     │

00:00:45 #4840 [Verbose] > │     let v2 : int32 = 0                                                       │

00:00:45 #4841 [Verbose] > │     let struct (v3 : UH3, v4 : int32) = method6(v0, v1, v2)                  │

00:00:45 #4842 [Verbose] > │     let v5 : UH3 = UH3_1                                                     │

00:00:45 #4843 [Verbose] > │     let v6 : UH3 = method7(v3, v5)                                           │

00:00:45 #4844 [Verbose] > │     let v7 : UH1 = UH1_1                                                     │

00:00:45 #4845 [Verbose] > │     let v8 : UH1 = method8(v0, v6, v7)                                       │

00:00:45 #4846 [Verbose] > │     v8                                                                       │

00:00:45 #4847 [Verbose] > │ and method10 (v0 : (UH0 -> UH0), v1 : UH0, v2 : int32) : UH0 =               │

00:00:45 #4848 [Verbose] > │     let v3 : bool = v2 <= 0                                                  │

00:00:45 #4849 [Verbose] > │     if v3 then                                                               │

00:00:45 #4850 [Verbose] > │         v1                                                                   │

00:00:45 #4851 [Verbose] > │     else                                                                     │

00:00:45 #4852 [Verbose] > │         let v4 : UH0 = v0 v1                                                 │

00:00:45 #4853 [Verbose] > │         let v5 : int32 = v2 - 1                                              │

00:00:45 #4854 [Verbose] > │         method10(v0, v4, v5)                                                 │

00:00:45 #4855 [Verbose] > │ and method11 (v0 : UH4, v1 : UH4) : UH4 =                                    │

00:00:45 #4856 [Verbose] > │     match v0 with                                                            │

00:00:45 #4857 [Verbose] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

00:00:45 #4858 [Verbose] > │         let v4 : UH4 = UH4_0(v2, v1)                                         │

00:00:45 #4859 [Verbose] > │         method11(v3, v4)                                                     │

00:00:45 #4860 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:00:45 #4861 [Verbose] > │         v1                                                                   │

00:00:45 #4862 [Verbose] > │ and method9 (v0 : (UH0 -> UH0), v1 : UH4, v2 : int32) : UH4 =                │

00:00:45 #4863 [Verbose] > │     let v3 : float = 0.0                                                     │

00:00:45 #4864 [Verbose] > │     let v4 : float = 0.16                                                    │

00:00:45 #4865 [Verbose] > │     let v5 : float = 0.0                                                     │

00:00:45 #4866 [Verbose] > │     let v6 : float = 0.0                                                     │

00:00:45 #4867 [Verbose] > │     let v7 : float = 0.0                                                     │

00:00:45 #4868 [Verbose] > │     let v8 : float = 0.0                                                     │

00:00:45 #4869 [Verbose] > │     let v9 : float = 0.2                                                     │

00:00:45 #4870 [Verbose] > │     let v10 : float = 0.0                                                    │

00:00:45 #4871 [Verbose] > │     let v11 : float = 0.0                                                    │

00:00:45 #4872 [Verbose] > │     let v12 : float = 1.0                                                    │

00:00:45 #4873 [Verbose] > │     let v13 : float = 0.02                                                   │

00:00:45 #4874 [Verbose] > │     let v14 : float = 0.0                                                    │

00:00:45 #4875 [Verbose] > │     let v15 : float = 0.0                                                    │

00:00:45 #4876 [Verbose] > │     let v16 : float = 0.0                                                    │

00:00:45 #4877 [Verbose] > │     let v17 : float = 0.0                                                    │

00:00:45 #4878 [Verbose] > │     let v18 : UH0 = UH0_1                                                    │

00:00:45 #4879 [Verbose] > │     let v19 : UH0 = UH0_0(v3, v4, v12, v13, v14, v8, v15, v16, v17, v18)     │

00:00:45 #4880 [Verbose] > │     let v20 : UH0 = UH0_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v19)         │

00:00:45 #4881 [Verbose] > │     let v21 : UH0 = method10(v0, v20, v2)                                    │

00:00:45 #4882 [Verbose] > │     let v35 : US0 =                                                          │

00:00:45 #4883 [Verbose] > │         match v21 with                                                       │

00:00:45 #4884 [Verbose] > │         | UH0_0(v22, v23, v24, v25, v26, v27, v28, v29, v30, v31) -> (* Cons │

00:00:45 #4885 [Verbose] > │ *)                                                                           │

00:00:45 #4886 [Verbose] > │             US0_1(v22, v23, v24, v25, v26, v27, v28, v29, v30)               │

00:00:45 #4887 [Verbose] > │         | UH0_1 -> (* Nil *)                                                 │

00:00:45 #4888 [Verbose] > │             US0_0                                                            │

00:00:45 #4889 [Verbose] > │     let struct (v63 : float, v64 : float, v65 : float, v66 : float, v67 :    │

00:00:45 #4890 [Verbose] > │ float, v68 : float, v69 : float, v70 : float, v71 : float) =                 │

00:00:45 #4891 [Verbose] > │         match v35 with                                                       │

00:00:45 #4892 [Verbose] > │         | US0_0 -> (* None *)                                                │

00:00:45 #4893 [Verbose] > │             failwith<struct (float * float * float * float * float * float * │

00:00:45 #4894 [Verbose] > │ float * float * float)> "Option does not have a value."                      │

00:00:45 #4895 [Verbose] > │         | US0_1(v36, v37, v38, v39, v40, v41, v42, v43, v44) -> (* Some *)   │

00:00:45 #4896 [Verbose] > │             struct (v36, v37, v38, v39, v40, v41, v42, v43, v44)             │

00:00:45 #4897 [Verbose] > │     let v72 : bool = v68 <= 10.0                                             │

00:00:45 #4898 [Verbose] > │     if v72 then                                                              │

00:00:45 #4899 [Verbose] > │         let v73 : UH4 = UH4_0(v21, v1)                                       │

00:00:45 #4900 [Verbose] > │         let v74 : int32 = v2 + 1                                             │

00:00:45 #4901 [Verbose] > │         method9(v0, v73, v74)                                                │

00:00:45 #4902 [Verbose] > │     else                                                                     │

00:00:45 #4903 [Verbose] > │         let v76 : UH4 = UH4_1                                                │

00:00:45 #4904 [Verbose] > │         method11(v1, v76)                                                    │

00:00:45 #4905 [Verbose] > │ and method13 (v0 : UH0, v1 : UH6) : UH6 =                                    │

00:00:45 #4906 [Verbose] > │     match v0 with                                                            │

00:00:45 #4907 [Verbose] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

00:00:45 #4908 [Verbose] > │         let v12 : UH6 = method13(v11, v1)                                    │

00:00:45 #4909 [Verbose] > │         let v13 : float = v8 * v8                                            │

00:00:45 #4910 [Verbose] > │         let v14 : float = v9 * v9                                            │

00:00:45 #4911 [Verbose] > │         let v15 : float = v13 + v14                                          │

00:00:45 #4912 [Verbose] > │         let v16 : float = v10 * v10                                          │

00:00:45 #4913 [Verbose] > │         let v17 : float = v15 + v16                                          │

00:00:45 #4914 [Verbose] > │         let v18 : float = sqrt v17                                           │

00:00:45 #4915 [Verbose] > │         let v19 : float = 0.5 * v3                                           │

00:00:45 #4916 [Verbose] > │         let v20 : float = v18 ** 2.0                                         │

00:00:45 #4917 [Verbose] > │         let v21 : float = v19 * v20                                          │

00:00:45 #4918 [Verbose] > │         UH6_0(v21, v12)                                                      │

00:00:45 #4919 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:45 #4920 [Verbose] > │         v1                                                                   │

00:00:45 #4921 [Verbose] > │ and method14 (v0 : UH6, v1 : float) : float =                                │

00:00:45 #4922 [Verbose] > │     match v0 with                                                            │

00:00:45 #4923 [Verbose] > │     | UH6_0(v2, v3) -> (* Cons *)                                            │

00:00:45 #4924 [Verbose] > │         let v4 : float = v1 + v2                                             │

00:00:45 #4925 [Verbose] > │         method14(v3, v4)                                                     │

00:00:45 #4926 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:00:45 #4927 [Verbose] > │         v1                                                                   │

00:00:45 #4928 [Verbose] > │ and method12 (v0 : UH4, v1 : UH5) : UH5 =                                    │

00:00:45 #4929 [Verbose] > │     match v0 with                                                            │

00:00:45 #4930 [Verbose] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

00:00:45 #4931 [Verbose] > │         let v4 : UH5 = method12(v3, v1)                                      │

00:00:45 #4932 [Verbose] > │         let v18 : US0 =                                                      │

00:00:45 #4933 [Verbose] > │             match v2 with                                                    │

00:00:45 #4934 [Verbose] > │             | UH0_0(v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) -> (* Cons  │

00:00:45 #4935 [Verbose] > │ *)                                                                           │

00:00:45 #4936 [Verbose] > │                 US0_1(v5, v6, v7, v8, v9, v10, v11, v12, v13)                │

00:00:45 #4937 [Verbose] > │             | UH0_1 -> (* Nil *)                                             │

00:00:45 #4938 [Verbose] > │                 US0_0                                                        │

00:00:45 #4939 [Verbose] > │         let struct (v46 : float, v47 : float, v48 : float, v49 : float, v50  │

00:00:45 #4940 [Verbose] > │ : float, v51 : float, v52 : float, v53 : float, v54 : float) =               │

00:00:45 #4941 [Verbose] > │             match v18 with                                                   │

00:00:45 #4942 [Verbose] > │             | US0_0 -> (* None *)                                            │

00:00:45 #4943 [Verbose] > │                 failwith<struct (float * float * float * float * float *     │

00:00:45 #4944 [Verbose] > │ float * float * float * float)> "Option does not have a value."              │

00:00:45 #4945 [Verbose] > │             | US0_1(v19, v20, v21, v22, v23, v24, v25, v26, v27) -> (* Some  │

00:00:45 #4946 [Verbose] > │ *)                                                                           │

00:00:45 #4947 [Verbose] > │                 struct (v19, v20, v21, v22, v23, v24, v25, v26, v27)         │

00:00:45 #4948 [Verbose] > │         let v55 : UH6 = UH6_1                                                │

00:00:45 #4949 [Verbose] > │         let v56 : UH6 = method13(v2, v55)                                    │

00:00:45 #4950 [Verbose] > │         let v57 : float = 0.0                                                │

00:00:45 #4951 [Verbose] > │         let v58 : float = method14(v56, v57)                                 │

00:00:45 #4952 [Verbose] > │         UH5_0(v51, v58, v4)                                                  │

00:00:45 #4953 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:00:45 #4954 [Verbose] > │         v1                                                                   │

00:00:45 #4955 [Verbose] > │ and method15 (v0 : UH5, v1 : UH6, v2 : UH6) : struct (UH6 * UH6) =           │

00:00:45 #4956 [Verbose] > │     match v0 with                                                            │

00:00:45 #4957 [Verbose] > │     | UH5_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:45 #4958 [Verbose] > │         let v6 : UH6 = UH6_0(v3, v1)                                         │

00:00:45 #4959 [Verbose] > │         let v7 : UH6 = UH6_0(v4, v2)                                         │

00:00:45 #4960 [Verbose] > │         method15(v5, v6, v7)                                                 │

00:00:45 #4961 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:00:45 #4962 [Verbose] > │         struct (v1, v2)                                                      │

00:00:45 #4963 [Verbose] > │ and method16 (v0 : UH6, v1 : UH6) : UH6 =                                    │

00:00:45 #4964 [Verbose] > │     match v0 with                                                            │

00:00:45 #4965 [Verbose] > │     | UH6_0(v2, v3) -> (* Cons *)                                            │

00:00:45 #4966 [Verbose] > │         let v4 : UH6 = UH6_0(v2, v1)                                         │

00:00:45 #4967 [Verbose] > │         method16(v3, v4)                                                     │

00:00:45 #4968 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:00:45 #4969 [Verbose] > │         v1                                                                   │

00:00:45 #4970 [Verbose] > │ and method18 (v0 : UH1, v1 : UH1) : UH1 =                                    │

00:00:45 #4971 [Verbose] > │     match v0 with                                                            │

00:00:45 #4972 [Verbose] > │     | UH1_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* Cons *)          │

00:00:45 #4973 [Verbose] > │         let v12 : UH1 = UH1_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v1)       │

00:00:45 #4974 [Verbose] > │         method18(v11, v12)                                                   │

00:00:45 #4975 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:45 #4976 [Verbose] > │         v1                                                                   │

00:00:45 #4977 [Verbose] > │ and method17 (v0 : UH1, v1 : UH1, v2 : UH1) : UH1 =                          │

00:00:45 #4978 [Verbose] > │     match v1 with                                                            │

00:00:45 #4979 [Verbose] > │     | UH1_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* Cons *)         │

00:00:45 #4980 [Verbose] > │         match v2 with                                                        │

00:00:45 #4981 [Verbose] > │         | UH1_0(v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) -> (* Cons │

00:00:45 #4982 [Verbose] > │ *)                                                                           │

00:00:45 #4983 [Verbose] > │             let v23 : float = v3 + v13                                       │

00:00:45 #4984 [Verbose] > │             let v24 : float = v4 + v14                                       │

00:00:45 #4985 [Verbose] > │             let v25 : float = v8 + v18                                       │

00:00:45 #4986 [Verbose] > │             let v26 : float = v5 + v15                                       │

00:00:45 #4987 [Verbose] > │             let v27 : float = v6 + v16                                       │

00:00:45 #4988 [Verbose] > │             let v28 : float = v7 + v17                                       │

00:00:45 #4989 [Verbose] > │             let v29 : float = v9 + v19                                       │

00:00:45 #4990 [Verbose] > │             let v30 : float = v10 + v20                                      │

00:00:45 #4991 [Verbose] > │             let v31 : float = v11 + v21                                      │

00:00:45 #4992 [Verbose] > │             let v32 : UH1 = UH1_0(v23, v24, v26, v27, v28, v25, v29, v30,    │

00:00:45 #4993 [Verbose] > │ v31, v0)                                                                     │

00:00:45 #4994 [Verbose] > │             method17(v32, v12, v22)                                          │

00:00:45 #4995 [Verbose] > │         | _ ->                                                               │

00:00:45 #4996 [Verbose] > │             let v34 : UH1 = UH1_1                                            │

00:00:45 #4997 [Verbose] > │             method18(v0, v34)                                                │

00:00:45 #4998 [Verbose] > │     | _ ->                                                                   │

00:00:45 #4999 [Verbose] > │         let v37 : UH1 = UH1_1                                                │

00:00:45 #5000 [Verbose] > │         method18(v0, v37)                                                    │

00:00:45 #5001 [Verbose] > │ and closure8 (v0 : float, v1 : (UH0 -> UH1)) (v2 : UH0) : UH0 =              │

00:00:45 #5002 [Verbose] > │     let v3 : UH1 = v1 v2                                                     │

00:00:45 #5003 [Verbose] > │     let v4 : float = v0 / 2.0                                                │

00:00:45 #5004 [Verbose] > │     let v5 : UH0 = UH0_1                                                     │

00:00:45 #5005 [Verbose] > │     let v6 : UH0 = method1(v4, v5, v3, v2)                                   │

00:00:45 #5006 [Verbose] > │     let v7 : UH1 = v1 v6                                                     │

00:00:45 #5007 [Verbose] > │     let v8 : UH0 = UH0_1                                                     │

00:00:45 #5008 [Verbose] > │     let v9 : UH0 = method1(v4, v8, v7, v2)                                   │

00:00:45 #5009 [Verbose] > │     let v10 : UH1 = v1 v9                                                    │

00:00:45 #5010 [Verbose] > │     let v11 : UH0 = UH0_1                                                    │

00:00:45 #5011 [Verbose] > │     let v12 : UH0 = method1(v0, v11, v10, v2)                                │

00:00:45 #5012 [Verbose] > │     let v13 : UH1 = v1 v12                                                   │

00:00:45 #5013 [Verbose] > │     let v14 : float = v0 / 6.0                                               │

00:00:45 #5014 [Verbose] > │     let v15 : UH1 = UH1_1                                                    │

00:00:45 #5015 [Verbose] > │     let v16 : UH1 = method17(v15, v3, v7)                                    │

00:00:45 #5016 [Verbose] > │     let v17 : UH1 = UH1_1                                                    │

00:00:45 #5017 [Verbose] > │     let v18 : UH1 = method17(v17, v16, v7)                                   │

00:00:45 #5018 [Verbose] > │     let v19 : UH1 = UH1_1                                                    │

00:00:45 #5019 [Verbose] > │     let v20 : UH1 = method17(v19, v18, v10)                                  │

00:00:45 #5020 [Verbose] > │     let v21 : UH1 = UH1_1                                                    │

00:00:45 #5021 [Verbose] > │     let v22 : UH1 = method17(v21, v20, v10)                                  │

00:00:45 #5022 [Verbose] > │     let v23 : UH1 = UH1_1                                                    │

00:00:45 #5023 [Verbose] > │     let v24 : UH1 = method17(v23, v22, v13)                                  │

00:00:45 #5024 [Verbose] > │     let v25 : UH0 = UH0_1                                                    │

00:00:45 #5025 [Verbose] > │     let v26 : UH0 = method1(v14, v25, v24, v2)                               │

00:00:45 #5026 [Verbose] > │     v26                                                                      │

00:00:45 #5027 [Verbose] > │ and closure7 (v0 : float) (v1 : (UH0 -> UH1)) : (UH0 -> UH0) =               │

00:00:45 #5028 [Verbose] > │     closure8(v0, v1)                                                         │

00:00:45 #5029 [Verbose] > │ and closure6 () (v0 : float) : ((UH0 -> UH1) -> (UH0 -> UH0)) =              │

00:00:45 #5030 [Verbose] > │     closure7(v0)                                                             │

00:00:45 #5031 [Verbose] > │ and method19 (v0 : UH4, v1 : UH5) : UH5 =                                    │

00:00:45 #5032 [Verbose] > │     match v0 with                                                            │

00:00:45 #5033 [Verbose] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

00:00:45 #5034 [Verbose] > │         let v4 : UH5 = method19(v3, v1)                                      │

00:00:45 #5035 [Verbose] > │         let v18 : US0 =                                                      │

00:00:45 #5036 [Verbose] > │             match v2 with                                                    │

00:00:45 #5037 [Verbose] > │             | UH0_0(v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) -> (* Cons  │

00:00:45 #5038 [Verbose] > │ *)                                                                           │

00:00:45 #5039 [Verbose] > │                 US0_1(v5, v6, v7, v8, v9, v10, v11, v12, v13)                │

00:00:45 #5040 [Verbose] > │             | UH0_1 -> (* Nil *)                                             │

00:00:45 #5041 [Verbose] > │                 US0_0                                                        │

00:00:45 #5042 [Verbose] > │         let struct (v46 : float, v47 : float, v48 : float, v49 : float, v50  │

00:00:45 #5043 [Verbose] > │ : float, v51 : float, v52 : float, v53 : float, v54 : float) =               │

00:00:45 #5044 [Verbose] > │             match v18 with                                                   │

00:00:45 #5045 [Verbose] > │             | US0_0 -> (* None *)                                            │

00:00:45 #5046 [Verbose] > │                 failwith<struct (float * float * float * float * float *     │

00:00:45 #5047 [Verbose] > │ float * float * float * float)> "Option does not have a value."              │

00:00:45 #5048 [Verbose] > │             | US0_1(v19, v20, v21, v22, v23, v24, v25, v26, v27) -> (* Some  │

00:00:45 #5049 [Verbose] > │ *)                                                                           │

00:00:45 #5050 [Verbose] > │                 struct (v19, v20, v21, v22, v23, v24, v25, v26, v27)         │

00:00:45 #5051 [Verbose] > │         let v55 : UH6 = UH6_1                                                │

00:00:45 #5052 [Verbose] > │         let v56 : UH6 = method13(v2, v55)                                    │

00:00:45 #5053 [Verbose] > │         let v57 : float = 0.0                                                │

00:00:45 #5054 [Verbose] > │         let v58 : float = method14(v56, v57)                                 │

00:00:45 #5055 [Verbose] > │         UH5_0(v51, v58, v4)                                                  │

00:00:45 #5056 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:00:45 #5057 [Verbose] > │         v1                                                                   │

00:00:45 #5058 [Verbose] > │ and method21 (v0 : UH6, v1 : int32) : int32 =                                │

00:00:45 #5059 [Verbose] > │     match v0 with                                                            │

00:00:45 #5060 [Verbose] > │     | UH6_0(v2, v3) -> (* Cons *)                                            │

00:00:45 #5061 [Verbose] > │         let v4 : int32 = v1 + 1                                              │

00:00:45 #5062 [Verbose] > │         method21(v3, v4)                                                     │

00:00:45 #5063 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:00:45 #5064 [Verbose] > │         v1                                                                   │

00:00:45 #5065 [Verbose] > │ and method22 (v0 : (float []), v1 : UH6, v2 : int32) : int32 =               │

00:00:45 #5066 [Verbose] > │     match v1 with                                                            │

00:00:45 #5067 [Verbose] > │     | UH6_0(v3, v4) -> (* Cons *)                                            │

00:00:45 #5068 [Verbose] > │         v0.[int v2] <- v3                                                    │

00:00:45 #5069 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:00:45 #5070 [Verbose] > │         method22(v0, v4, v5)                                                 │

00:00:45 #5071 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:00:45 #5072 [Verbose] > │         v2                                                                   │

00:00:45 #5073 [Verbose] > │ and method20 (v0 : UH6) : (float []) =                                       │

00:00:45 #5074 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:45 #5075 [Verbose] > │     let v2 : int32 = method21(v0, v1)                                        │

00:00:45 #5076 [Verbose] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

00:00:45 #5077 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:45 #5078 [Verbose] > │     let v5 : int32 = method22(v3, v0, v4)                                    │

00:00:45 #5079 [Verbose] > │     v3                                                                       │

00:00:45 #5080 [Verbose] > │ and method23 (v0 : (struct (string * (float []) * (float [])) [])) : (struct │

00:00:45 #5081 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:45 #5082 [Verbose] > │     v0                                                                       │

00:00:45 #5083 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:45 #5084 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:45 #5085 [Verbose] > │     let v0 : (float -> ((UH0 -> UH1) -> (UH0 -> UH0))) = closure0()          │

00:00:45 #5086 [Verbose] > │     let v1 : ((UH0 -> UH1) -> (UH0 -> UH0)) = v0 0.03                        │

00:00:45 #5087 [Verbose] > │     let v2 : (UH0 -> UH1) = closure3()                                       │

00:00:45 #5088 [Verbose] > │     let v3 : (UH0 -> UH0) = v1 v2                                            │

00:00:45 #5089 [Verbose] > │     let v4 : UH4 = UH4_1                                                     │

00:00:45 #5090 [Verbose] > │     let v5 : int32 = 0                                                       │

00:00:45 #5091 [Verbose] > │     let v6 : UH4 = method9(v3, v4, v5)                                       │

00:00:45 #5092 [Verbose] > │     let v7 : UH5 = UH5_1                                                     │

00:00:45 #5093 [Verbose] > │     let v8 : UH5 = method12(v6, v7)                                          │

00:00:45 #5094 [Verbose] > │     let v9 : UH6 = UH6_1                                                     │

00:00:45 #5095 [Verbose] > │     let v10 : UH6 = UH6_1                                                    │

00:00:45 #5096 [Verbose] > │     let struct (v11 : UH6, v12 : UH6) = method15(v8, v9, v10)                │

00:00:45 #5097 [Verbose] > │     let v13 : UH6 = UH6_1                                                    │

00:00:45 #5098 [Verbose] > │     let v14 : UH6 = method16(v11, v13)                                       │

00:00:45 #5099 [Verbose] > │     let v15 : UH6 = UH6_1                                                    │

00:00:45 #5100 [Verbose] > │     let v16 : UH6 = method16(v12, v15)                                       │

00:00:45 #5101 [Verbose] > │     let v17 : (float -> ((UH0 -> UH1) -> (UH0 -> UH0))) = closure6()         │

00:00:45 #5102 [Verbose] > │     let v18 : ((UH0 -> UH1) -> (UH0 -> UH0)) = v17 0.03                      │

00:00:45 #5103 [Verbose] > │     let v19 : (UH0 -> UH0) = v18 v2                                          │

00:00:45 #5104 [Verbose] > │     let v20 : UH4 = UH4_1                                                    │

00:00:45 #5105 [Verbose] > │     let v21 : int32 = 0                                                      │

00:00:45 #5106 [Verbose] > │     let v22 : UH4 = method9(v19, v20, v21)                                   │

00:00:45 #5107 [Verbose] > │     let v23 : UH5 = UH5_1                                                    │

00:00:45 #5108 [Verbose] > │     let v24 : UH5 = method19(v22, v23)                                       │

00:00:45 #5109 [Verbose] > │     let v25 : UH6 = UH6_1                                                    │

00:00:45 #5110 [Verbose] > │     let v26 : UH6 = UH6_1                                                    │

00:00:45 #5111 [Verbose] > │     let struct (v27 : UH6, v28 : UH6) = method15(v24, v25, v26)              │

00:00:45 #5112 [Verbose] > │     let v29 : UH6 = UH6_1                                                    │

00:00:45 #5113 [Verbose] > │     let v30 : UH6 = method16(v27, v29)                                       │

00:00:45 #5114 [Verbose] > │     let v31 : UH6 = UH6_1                                                    │

00:00:45 #5115 [Verbose] > │     let v32 : UH6 = method16(v28, v31)                                       │

00:00:45 #5116 [Verbose] > │     let v33 : (float []) = method20(v14)                                     │

00:00:45 #5117 [Verbose] > │     let v34 : (float []) = method20(v16)                                     │

00:00:45 #5118 [Verbose] > │     let v35 : (float []) = method20(v30)                                     │

00:00:45 #5119 [Verbose] > │     let v36 : (float []) = method20(v32)                                     │

00:00:45 #5120 [Verbose] > │     let v37 : string = "euler-cromer"                                        │

00:00:45 #5121 [Verbose] > │     let v38 : string = "runge-kutta 4"                                       │

00:00:45 #5122 [Verbose] > │     let v39 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:45 #5123 [Verbose] > │ (v37, v33, v34); struct (v38, v35, v36)|]                                    │

00:00:45 #5124 [Verbose] > │     let v40 : (struct (string * (float []) * (float [])) []) = method23(v39) │

00:00:45 #5125 [Verbose] > │     let v41 : string = "system kinetic energy versus time"                   │

00:00:45 #5126 [Verbose] > │     let v42 : string = "time (s)"                                            │

00:00:45 #5127 [Verbose] > │     let v43 : string = "system kinetic energy (j)"                           │

00:00:45 #5128 [Verbose] > │     struct (v41, v42, v43, v40)                                              │

00:00:45 #5129 [Verbose] > │ method0()                                                                    │

00:00:45 #5130 [Verbose] > │                                                                              │

00:00:45 #5131 [Verbose] > │                                                                              │

00:00:45 #5132 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:45 #5133 [Verbose] >

00:00:45 #5134 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:45 #5135 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:45 #5136 [Verbose] > │ ### wave 1                                                                   │

00:00:45 #5137 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:45 #5138 [Verbose] >

00:00:45 #5139 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:45 #5140 [Verbose] > // // test

00:00:45 #5141 [Verbose] >

00:00:45 #5142 [Verbose] > inl linear_spring k re (particle_state st1) (particle_state st2) =

00:00:45 #5143 [Verbose] >     inl r1 = st1.pos_vec

00:00:45 #5144 [Verbose] >     inl r2 = st2.pos_vec

00:00:45 #5145 [Verbose] >     inl r21 = r2 ^-^ r1

00:00:45 #5146 [Verbose] >     inl r21mag = magnitude r21

00:00:45 #5147 [Verbose] >     -k * (r21mag - re) *^ r21 ^/ r21mag

00:00:45 #5148 [Verbose] >

00:00:45 #5149 [Verbose] > inl fixed_linear_spring k re r1 =

00:00:45 #5150 [Verbose] >     inl (particle_state default_particle_state') = default_particle_state ()

00:00:45 #5151 [Verbose] >     linear_spring k re (particle_state { default_particle_state' with pos_vec =

00:00:45 #5152 [Verbose] > r1 })

00:00:45 #5153 [Verbose] >

00:00:45 #5154 [Verbose] > inl forces_string () =

00:00:45 #5155 [Verbose] >     [[

00:00:45 #5156 [Verbose] >         ExternalForce (0, fixed_linear_spring 5384 0 (zero_vec ()))

00:00:45 #5157 [Verbose] >         ExternalForce (63, fixed_linear_spring 5384 0 (0.65 *^ i_hat ()))

00:00:45 #5158 [Verbose] >     ]] /@ (

00:00:45 #5159 [Verbose] >         listm'.init_series 0 59 1

00:00:45 #5160 [Verbose] >         |> listm.map (fun n => InternalForce (n, n + 1, linear_spring 5384 0))

00:00:45 #5161 [Verbose] >     )

00:00:45 #5162 [Verbose] >

00:00:45 #5163 [Verbose] > inl string_update dt =

00:00:45 #5164 [Verbose] >     update_mps (runge_kutta_4 dt) (forces_string ())

00:00:45 #5165 [Verbose] >

00:00:45 #5166 [Verbose] > inl string_initial_overtone n =

00:00:45 #5167 [Verbose] >     inl ball_mass = 0.0008293 * 0.65 / 64

00:00:45 #5168 [Verbose] >     inl (particle_state default_particle_state') = default_particle_state ()

00:00:45 #5169 [Verbose] >     listm'.init_series 0.01 0.64 0.01

00:00:45 #5170 [Verbose] >     |> listm.map (fun x =>

00:00:45 #5171 [Verbose] >         inl y = 0.005 * sin (conv n * pi * x / 0.65)

00:00:45 #5172 [Verbose] >         particle_state {

00:00:45 #5173 [Verbose] >             default_particle_state' with

00:00:45 #5174 [Verbose] >                 mass = ball_mass

00:00:45 #5175 [Verbose] >                 pos_vec = x *^ i_hat () ^+^ y *^ j_hat ()

00:00:45 #5176 [Verbose] >                 velocity = zero_vec ()

00:00:45 #5177 [Verbose] >         }

00:00:45 #5178 [Verbose] >     )

00:00:45 #5179 [Verbose] >     |> multi_particle_state

00:00:45 #5180 [Verbose] >

00:00:45 #5181 [Verbose] > inl string_initial_pluck () =

00:00:45 #5182 [Verbose] >     inl ball_mass = 0.0008293 * 0.65 / 64

00:00:45 #5183 [Verbose] >     inl (particle_state default_particle_state') = default_particle_state ()

00:00:45 #5184 [Verbose] >     listm'.init_series 0.01 0.64 0.01

00:00:45 #5185 [Verbose] >     |> listm.map (fun x =>

00:00:45 #5186 [Verbose] >         inl y =

00:00:45 #5187 [Verbose] >             inl n = if x <= 0.51 then 0 else 0.65

00:00:45 #5188 [Verbose] >             0.005 / (0.51 - n) * (x - n)

00:00:45 #5189 [Verbose] >         particle_state {

00:00:45 #5190 [Verbose] >             default_particle_state' with

00:00:45 #5191 [Verbose] >                 mass = ball_mass

00:00:45 #5192 [Verbose] >                 pos_vec = x *^ i_hat () ^+^ y *^ j_hat ()

00:00:45 #5193 [Verbose] >                 velocity = zero_vec ()

00:00:45 #5194 [Verbose] >         }

00:00:45 #5195 [Verbose] >     )

00:00:45 #5196 [Verbose] >     |> multi_particle_state

00:00:45 #5197 [Verbose] >

00:00:45 #5198 [Verbose] > let main () =

00:00:45 #5199 [Verbose] >     inl ~frames = listm'.init_series 0 9 1f64

00:00:45 #5200 [Verbose] >     inl initial_state = string_initial_overtone 3i32

00:00:45 #5201 [Verbose] >     inl frames =

00:00:45 #5202 [Verbose] >         frames

00:00:45 #5203 [Verbose] >         |> listm.map (fun n =>

00:00:45 #5204 [Verbose] >             inl (multi_particle_state sts) =

00:00:45 #5205 [Verbose] >                 seq.iterate' (string_update 0.000025) initial_state |> fun f =>

00:00:45 #5206 [Verbose] > f 0f64

00:00:45 #5207 [Verbose] >             inl rs =

00:00:45 #5208 [Verbose] >                 [[ zero_vec () ]]

00:00:45 #5209 [Verbose] >                 /@ (sts |> listm.map (fun (particle_state st) => st.pos_vec))

00:00:45 #5210 [Verbose] >                 /@ [[ 0.65 *^ i_hat () ]]

00:00:45 #5211 [Verbose] >             inl x, y =

00:00:45 #5212 [Verbose] >                 rs

00:00:45 #5213 [Verbose] >                 |> listm.map (fun r => r.x, r.y)

00:00:45 #5214 [Verbose] >                 |> listm'.unzip

00:00:45 #5215 [Verbose] >             inl x : a i32 _ = x |> listm.toArray

00:00:45 #5216 [Verbose] >             inl y : a i32 _ = y |> listm.toArray

00:00:45 #5217 [Verbose] >             x, y

00:00:45 #5218 [Verbose] >         )

00:00:45 #5219 [Verbose] >         |> listm.toArray : a i32 _

00:00:45 #5220 [Verbose] >

00:00:45 #5221 [Verbose] >     inl n = 0i32

00:00:45 #5222 [Verbose] >

00:00:45 #5223 [Verbose] >     inl x, y = index frames n

00:00:45 #5224 [Verbose] >

00:00:45 #5225 [Verbose] >     "wave",

00:00:45 #5226 [Verbose] >     "position (m)",

00:00:45 #5227 [Verbose] >     "displacement (m)",

00:00:45 #5228 [Verbose] >     ;[[

00:00:45 #5229 [Verbose] >         ($"$\"{!n}\"" : string), x, y

00:00:45 #5230 [Verbose] >     ]]

00:00:46 #5231 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-1376-7689-74b91e5602a1\main.spi

00:00:46 #5232 [Verbose] >

00:00:46 #5233 [Verbose] > ╭─[ 602.47ms - return value ]──────────────────────────────────────────────────╮

00:00:46 #5234 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:46 #5235 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:46 #5236 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:46 #5237 [Verbose] > │ stroke="none"/>                                                              │

00:00:46 #5238 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:46 #5239 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:46 #5240 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:46 #5241 [Verbose] > │ wave                                                                         │

00:00:46 #5242 [Verbose] > │ </text>                                                                      │

00:00:46 #5243 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

00:00:46 #5244 [Verbose] > │ y2="75"/>                                                                    │

00:00:46 #5245 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:46 #5246 [Verbose] > │ y2="75"/>                                                                    │

00:00:46 #5247 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

00:00:46 #5248 [Verbose] > │ y2="75"/>                                                                    │

00:00:46 #5249 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424" x2="85" │

00:00:46 #5250 [Verbose] > │ y2="75"/>                                                                    │

00:00:46 #5251 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="93" y1="424" x2="93" │

00:00:46 #5252 [Verbose] > │ y2...                                                                        │

00:00:46 #5253 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:46 #5254 [Verbose] >

00:00:46 #5255 [Verbose] > ╭─[ 619.61ms - stdout ]────────────────────────────────────────────────────────╮

00:00:46 #5256 [Verbose] > │ type UH0 =                                                                   │

00:00:46 #5257 [Verbose] > │     | UH0_0 of float * UH0                                                   │

00:00:46 #5258 [Verbose] > │     | UH0_1                                                                  │

00:00:46 #5259 [Verbose] > │ and UH1 =                                                                    │

00:00:46 #5260 [Verbose] > │     | UH1_0 of (float []) * (float []) * UH1                                 │

00:00:46 #5261 [Verbose] > │     | UH1_1                                                                  │

00:00:46 #5262 [Verbose] > │ let rec method3 (v0 : UH0, v1 : int32) : int32 =                             │

00:00:46 #5263 [Verbose] > │     match v0 with                                                            │

00:00:46 #5264 [Verbose] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

00:00:46 #5265 [Verbose] > │         let v4 : int32 = v1 + 1                                              │

00:00:46 #5266 [Verbose] > │         method3(v3, v4)                                                      │

00:00:46 #5267 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:46 #5268 [Verbose] > │         v1                                                                   │

00:00:46 #5269 [Verbose] > │ and method4 (v0 : (float []), v1 : UH0, v2 : int32) : int32 =                │

00:00:46 #5270 [Verbose] > │     match v1 with                                                            │

00:00:46 #5271 [Verbose] > │     | UH0_0(v3, v4) -> (* Cons *)                                            │

00:00:46 #5272 [Verbose] > │         v0.[int v2] <- v3                                                    │

00:00:46 #5273 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:00:46 #5274 [Verbose] > │         method4(v0, v4, v5)                                                  │

00:00:46 #5275 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:46 #5276 [Verbose] > │         v2                                                                   │

00:00:46 #5277 [Verbose] > │ and method2 (v0 : UH0) : (float []) =                                        │

00:00:46 #5278 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:46 #5279 [Verbose] > │     let v2 : int32 = method3(v0, v1)                                         │

00:00:46 #5280 [Verbose] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

00:00:46 #5281 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:46 #5282 [Verbose] > │     let v5 : int32 = method4(v3, v0, v4)                                     │

00:00:46 #5283 [Verbose] > │     v3                                                                       │

00:00:46 #5284 [Verbose] > │ and method1 (v0 : UH0, v1 : UH1) : UH1 =                                     │

00:00:46 #5285 [Verbose] > │     match v0 with                                                            │

00:00:46 #5286 [Verbose] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

00:00:46 #5287 [Verbose] > │         let v4 : UH1 = method1(v3, v1)                                       │

00:00:46 #5288 [Verbose] > │         let v5 : float = 0.0                                                 │

00:00:46 #5289 [Verbose] > │         let v6 : float = 0.01                                                │

00:00:46 #5290 [Verbose] > │         let v7 : float = 0.02                                                │

00:00:46 #5291 [Verbose] > │         let v8 : float = 0.03                                                │

00:00:46 #5292 [Verbose] > │         let v9 : float = 0.04                                                │

00:00:46 #5293 [Verbose] > │         let v10 : float = 0.05                                               │

00:00:46 #5294 [Verbose] > │         let v11 : float = 0.060000000000000005                               │

00:00:46 #5295 [Verbose] > │         let v12 : float = 0.06999999999999999                                │

00:00:46 #5296 [Verbose] > │         let v13 : float = 0.08                                               │

00:00:46 #5297 [Verbose] > │         let v14 : float = 0.09                                               │

00:00:46 #5298 [Verbose] > │         let v15 : float = 0.09999999999999999                                │

00:00:46 #5299 [Verbose] > │         let v16 : float = 0.11                                               │

00:00:46 #5300 [Verbose] > │         let v17 : float = 0.12                                               │

00:00:46 #5301 [Verbose] > │         let v18 : float = 0.13                                               │

00:00:46 #5302 [Verbose] > │         let v19 : float = 0.14                                               │

00:00:46 #5303 [Verbose] > │         let v20 : float = 0.15000000000000002                                │

00:00:46 #5304 [Verbose] > │         let v21 : float = 0.16                                               │

00:00:46 #5305 [Verbose] > │         let v22 : float = 0.17                                               │

00:00:46 #5306 [Verbose] > │         let v23 : float = 0.18000000000000002                                │

00:00:46 #5307 [Verbose] > │         let v24 : float = 0.19                                               │

00:00:46 #5308 [Verbose] > │         let v25 : float = 0.2                                                │

00:00:46 #5309 [Verbose] > │         let v26 : float = 0.21000000000000002                                │

00:00:46 #5310 [Verbose] > │         let v27 : float = 0.22                                               │

00:00:46 #5311 [Verbose] > │         let v28 : float = 0.23                                               │

00:00:46 #5312 [Verbose] > │         let v29 : float = 0.24000000000000002                                │

00:00:46 #5313 [Verbose] > │         let v30 : float = 0.25                                               │

00:00:46 #5314 [Verbose] > │         let v31 : float = 0.26                                               │

00:00:46 #5315 [Verbose] > │         let v32 : float = 0.27                                               │

00:00:46 #5316 [Verbose] > │         let v33 : float = 0.28                                               │

00:00:46 #5317 [Verbose] > │         let v34 : float = 0.29000000000000004                                │

00:00:46 #5318 [Verbose] > │         let v35 : float = 0.3                                                │

00:00:46 #5319 [Verbose] > │         let v36 : float = 0.31                                               │

00:00:46 #5320 [Verbose] > │         let v37 : float = 0.32                                               │

00:00:46 #5321 [Verbose] > │         let v38 : float = 0.33                                               │

00:00:46 #5322 [Verbose] > │         let v39 : float = 0.34                                               │

00:00:46 #5323 [Verbose] > │         let v40 : float = 0.35000000000000003                                │

00:00:46 #5324 [Verbose] > │         let v41 : float = 0.36000000000000004                                │

00:00:46 #5325 [Verbose] > │         let v42 : float = 0.37                                               │

00:00:46 #5326 [Verbose] > │         let v43 : float = 0.38                                               │

00:00:46 #5327 [Verbose] > │         let v44 : float = 0.39                                               │

00:00:46 #5328 [Verbose] > │         let v45 : float = 0.4                                                │

00:00:46 #5329 [Verbose] > │         let v46 : float = 0.41000000000000003                                │

00:00:46 #5330 [Verbose] > │         let v47 : float = 0.42000000000000004                                │

00:00:46 #5331 [Verbose] > │         let v48 : float = 0.43                                               │

00:00:46 #5332 [Verbose] > │         let v49 : float = 0.44                                               │

00:00:46 #5333 [Verbose] > │         let v50 : float = 0.45                                               │

00:00:46 #5334 [Verbose] > │         let v51 : float = 0.46                                               │

00:00:46 #5335 [Verbose] > │         let v52 : float = 0.47000000000000003                                │

00:00:46 #5336 [Verbose] > │         let v53 : float = 0.48000000000000004                                │

00:00:46 #5337 [Verbose] > │         let v54 : float = 0.49                                               │

00:00:46 #5338 [Verbose] > │         let v55 : float = 0.5                                                │

00:00:46 #5339 [Verbose] > │         let v56 : float = 0.51                                               │

00:00:46 #5340 [Verbose] > │         let v57 : float = 0.52                                               │

00:00:46 #5341 [Verbose] > │         let v58 : float = 0.53                                               │

00:00:46 #5342 [Verbose] > │         let v59 : float = 0.54                                               │

00:00:46 #5343 [Verbose] > │         let v60 : float = 0.55                                               │

00:00:46 #5344 [Verbose] > │         let v61 : float = 0.56                                               │

00:00:46 #5345 [Verbose] > │         let v62 : float = 0.5700000000000001                                 │

00:00:46 #5346 [Verbose] > │         let v63 : float = 0.5800000000000001                                 │

00:00:46 #5347 [Verbose] > │         let v64 : float = 0.59                                               │

00:00:46 #5348 [Verbose] > │         let v65 : float = 0.6                                                │

00:00:46 #5349 [Verbose] > │         let v66 : float = 0.61                                               │

00:00:46 #5350 [Verbose] > │         let v67 : float = 0.62                                               │

00:00:46 #5351 [Verbose] > │         let v68 : float = 0.63                                               │

00:00:46 #5352 [Verbose] > │         let v69 : float = 0.64                                               │

00:00:46 #5353 [Verbose] > │         let v70 : float = 0.65                                               │

00:00:46 #5354 [Verbose] > │         let v71 : UH0 = UH0_1                                                │

00:00:46 #5355 [Verbose] > │         let v72 : UH0 = UH0_0(v70, v71)                                      │

00:00:46 #5356 [Verbose] > │         let v73 : UH0 = UH0_0(v69, v72)                                      │

00:00:46 #5357 [Verbose] > │         let v74 : UH0 = UH0_0(v68, v73)                                      │

00:00:46 #5358 [Verbose] > │         let v75 : UH0 = UH0_0(v67, v74)                                      │

00:00:46 #5359 [Verbose] > │         let v76 : UH0 = UH0_0(v66, v75)                                      │

00:00:46 #5360 [Verbose] > │         let v77 : UH0 = UH0_0(v65, v76)                                      │

00:00:46 #5361 [Verbose] > │         let v78 : UH0 = UH0_0(v64, v77)                                      │

00:00:46 #5362 [Verbose] > │         let v79 : UH0 = UH0_0(v63, v78)                                      │

00:00:46 #5363 [Verbose] > │         let v80 : UH0 = UH0_0(v62, v79)                                      │

00:00:46 #5364 [Verbose] > │         let v81 : UH0 = UH0_0(v61, v80)                                      │

00:00:46 #5365 [Verbose] > │         let v82 : UH0 = UH0_0(v60, v81)                                      │

00:00:46 #5366 [Verbose] > │         let v83 : UH0 = UH0_0(v59, v82)                                      │

00:00:46 #5367 [Verbose] > │         let v84 : UH0 = UH0_0(v58, v83)                                      │

00:00:46 #5368 [Verbose] > │         let v85 : UH0 = UH0_0(v57, v84)                                      │

00:00:46 #5369 [Verbose] > │         let v86 : UH0 = UH0_0(v56, v85)                                      │

00:00:46 #5370 [Verbose] > │         let v87 : UH0 = UH0_0(v55, v86)                                      │

00:00:46 #5371 [Verbose] > │         let v88 : UH0 = UH0_0(v54, v87)                                      │

00:00:46 #5372 [Verbose] > │         let v89 : UH0 = UH0_0(v53, v88)                                      │

00:00:46 #5373 [Verbose] > │         let v90 : UH0 = UH0_0(v52, v89)                                      │

00:00:46 #5374 [Verbose] > │         let v91 : UH0 = UH0_0(v51, v90)                                      │

00:00:46 #5375 [Verbose] > │         let v92 : UH0 = UH0_0(v50, v91)                                      │

00:00:46 #5376 [Verbose] > │         let v93 : UH0 = UH0_0(v49, v92)                                      │

00:00:46 #5377 [Verbose] > │         let v94 : UH0 = UH0_0(v48, v93)                                      │

00:00:46 #5378 [Verbose] > │         let v95 : UH0 = UH0_0(v47, v94)                                      │

00:00:46 #5379 [Verbose] > │         let v96 : UH0 = UH0_0(v46, v95)                                      │

00:00:46 #5380 [Verbose] > │         let v97 : UH0 = UH0_0(v45, v96)                                      │

00:00:46 #5381 [Verbose] > │         let v98 : UH0 = UH0_0(v44, v97)                                      │

00:00:46 #5382 [Verbose] > │         let v99 : UH0 = UH0_0(v43, v98)                                      │

00:00:46 #5383 [Verbose] > │         let v100 : UH0 = UH0_0(v42, v99)                                     │

00:00:46 #5384 [Verbose] > │         let v101 : UH0 = UH0_0(v41, v100)                                    │

00:00:46 #5385 [Verbose] > │         let v102 : UH0 = UH0_0(v40, v101)                                    │

00:00:46 #5386 [Verbose] > │         let v103 : UH0 = UH0_0(v39, v102)                                    │

00:00:46 #5387 [Verbose] > │         let v104 : UH0 = UH0_0(v38, v103)                                    │

00:00:46 #5388 [Verbose] > │         let v105 : UH0 = UH0_0(v37, v104)                                    │

00:00:46 #5389 [Verbose] > │         let v106 : UH0 = UH0_0(v36, v105)                                    │

00:00:46 #5390 [Verbose] > │         let v107 : UH0 = UH0_0(v35, v106)                                    │

00:00:46 #5391 [Verbose] > │         let v108 : UH0 = UH0_0(v34, v107)                                    │

00:00:46 #5392 [Verbose] > │         let v109 : UH0 = UH0_0(v33, v108)                                    │

00:00:46 #5393 [Verbose] > │         let v110 : UH0 = UH0_0(v32, v109)                                    │

00:00:46 #5394 [Verbose] > │         let v111 : UH0 = UH0_0(v31, v110)                                    │

00:00:46 #5395 [Verbose] > │         let v112 : UH0 = UH0_0(v30, v111)                                    │

00:00:46 #5396 [Verbose] > │         let v113 : UH0 = UH0_0(v29, v112)                                    │

00:00:46 #5397 [Verbose] > │         let v114 : UH0 = UH0_0(v28, v113)                                    │

00:00:46 #5398 [Verbose] > │         let v115 : UH0 = UH0_0(v27, v114)                                    │

00:00:46 #5399 [Verbose] > │         let v116 : UH0 = UH0_0(v26, v115)                                    │

00:00:46 #5400 [Verbose] > │         let v117 : UH0 = UH0_0(v25, v116)                                    │

00:00:46 #5401 [Verbose] > │         let v118 : UH0 = UH0_0(v24, v117)                                    │

00:00:46 #5402 [Verbose] > │         let v119 : UH0 = UH0_0(v23, v118)                                    │

00:00:46 #5403 [Verbose] > │         let v120 : UH0 = UH0_0(v22, v119)                                    │

00:00:46 #5404 [Verbose] > │         let v121 : UH0 = UH0_0(v21, v120)                                    │

00:00:46 #5405 [Verbose] > │         let v122 : UH0 = UH0_0(v20, v121)                                    │

00:00:46 #5406 [Verbose] > │         let v123 : UH0 = UH0_0(v19, v122)                                    │

00:00:46 #5407 [Verbose] > │         let v124 : UH0 = UH0_0(v18, v123)                                    │

00:00:46 #5408 [Verbose] > │         let v125 : UH0 = UH0_0(v17, v124)                                    │

00:00:46 #5409 [Verbose] > │         let v126 : UH0 = UH0_0(v16, v125)                                    │

00:00:46 #5410 [Verbose] > │         let v127 : UH0 = UH0_0(v15, v126)                                    │

00:00:46 #5411 [Verbose] > │         let v128 : UH0 = UH0_0(v14, v127)                                    │

00:00:46 #5412 [Verbose] > │         let v129 : UH0 = UH0_0(v13, v128)                                    │

00:00:46 #5413 [Verbose] > │         let v130 : UH0 = UH0_0(v12, v129)                                    │

00:00:46 #5414 [Verbose] > │         let v131 : UH0 = UH0_0(v11, v130)                                    │

00:00:46 #5415 [Verbose] > │         let v132 : UH0 = UH0_0(v10, v131)                                    │

00:00:46 #5416 [Verbose] > │         let v133 : UH0 = UH0_0(v9, v132)                                     │

00:00:46 #5417 [Verbose] > │         let v134 : UH0 = UH0_0(v8, v133)                                     │

00:00:46 #5418 [Verbose] > │         let v135 : UH0 = UH0_0(v7, v134)                                     │

00:00:46 #5419 [Verbose] > │         let v136 : UH0 = UH0_0(v6, v135)                                     │

00:00:46 #5420 [Verbose] > │         let v137 : UH0 = UH0_0(v5, v136)                                     │

00:00:46 #5421 [Verbose] > │         let v138 : (float []) = method2(v137)                                │

00:00:46 #5422 [Verbose] > │         let v139 : float = 0.0                                               │

00:00:46 #5423 [Verbose] > │         let v140 : float = 0.0007224452478461068                             │

00:00:46 #5424 [Verbose] > │         let v141 : float = 0.0014297283919934465                             │

00:00:46 #5425 [Verbose] > │         let v142 : float = 0.0021070055388626454                             │

00:00:46 #5426 [Verbose] > │         let v143 : float = 0.00274006253677335                               │

00:00:46 #5427 [Verbose] > │         let v144 : float = 0.0033156132912039757                             │

00:00:46 #5428 [Verbose] > │         let v145 : float = 0.0038215786027292415                             │

00:00:46 #5429 [Verbose] > │         let v146 : float = 0.004247339675607605                              │

00:00:46 #5430 [Verbose] > │         let v147 : float = 0.004583960976582912                              │

00:00:46 #5431 [Verbose] > │         let v148 : float = 0.004824377766717757                              │

00:00:46 #5432 [Verbose] > │         let v149 : float = 0.00496354437049027                               │

00:00:46 #5433 [Verbose] > │         let v150 : float = 0.004998540070400965                              │

00:00:46 #5434 [Verbose] > │         let v151 : float = 0.004928630404658255                              │

00:00:46 #5435 [Verbose] > │         let v152 : float = 0.004755282581475768                              │

00:00:46 #5436 [Verbose] > │         let v153 : float = 0.004482134686478519                              │

00:00:46 #5437 [Verbose] > │         let v154 : float = 0.0041149193294682815                             │

00:00:46 #5438 [Verbose] > │         let v155 : float = 0.0036613433329888666                             │

00:00:46 #5439 [Verbose] > │         let v156 : float = 0.0031309259876915697                             │

00:00:46 #5440 [Verbose] > │         let v157 : float = 0.002534799269067951                              │

00:00:46 #5441 [Verbose] > │         let v158 : float = 0.0018854742084416015                             │

00:00:46 #5442 [Verbose] > │         let v159 : float = 0.0011965783214377905                             │

00:00:46 #5443 [Verbose] > │         let v160 : float = 0.00048256960457257535                            │

00:00:46 #5444 [Verbose] > │         let v161 : float = -0.00024156689762753317                           │

00:00:46 #5445 [Verbose] > │         let v162 : float = -0.0009606335867685418                            │

00:00:46 #5446 [Verbose] > │         let v163 : float = -0.001659539265642642                             │

00:00:46 #5447 [Verbose] > │         let v164 : float = -0.002323615860218842                             │

00:00:46 #5448 [Verbose] > │         let v165 : float = -0.0029389262614623636                            │

00:00:46 #5449 [Verbose] > │         let v166 : float = -0.003492556826244686                             │

00:00:46 #5450 [Verbose] > │         let v167 : float = -0.003972888398568771                             │

00:00:46 #5451 [Verbose] > │         let v168 : float = -0.00436984016313259                              │

00:00:46 #5452 [Verbose] > │         let v169 : float = -0.004675081213427074                             │

00:00:46 #5453 [Verbose] > │         let v170 : float = -0.004882205394146359                             │

00:00:46 #5454 [Verbose] > │         let v171 : float = -0.004986865748457456                             │

00:00:46 #5455 [Verbose] > │         let v172 : float = -0.004986865748457456                             │

00:00:46 #5456 [Verbose] > │         let v173 : float = -0.004882205394146361                             │

00:00:46 #5457 [Verbose] > │         let v174 : float = -0.004675081213427074                             │

00:00:46 #5458 [Verbose] > │         let v175 : float = -0.004369840163132589                             │

00:00:46 #5459 [Verbose] > │         let v176 : float = -0.003972888398568774                             │

00:00:46 #5460 [Verbose] > │         let v177 : float = -0.0034925568262446837                            │

00:00:46 #5461 [Verbose] > │         let v178 : float = -0.002938926261462367                             │

00:00:46 #5462 [Verbose] > │         let v179 : float = -0.002323615860218846                             │

00:00:46 #5463 [Verbose] > │         let v180 : float = -0.0016595392656426435                            │

00:00:46 #5464 [Verbose] > │         let v181 : float = -0.0009606335867685414                            │

00:00:46 #5465 [Verbose] > │         let v182 : float = -0.00024156689762753724                           │

00:00:46 #5466 [Verbose] > │         let v183 : float = 0.0004825696045725713                             │

00:00:46 #5467 [Verbose] > │         let v184 : float = 0.0011965783214377866                             │

00:00:46 #5468 [Verbose] > │         let v185 : float = 0.0018854742084416021                             │

00:00:46 #5469 [Verbose] > │         let v186 : float = 0.002534799269067953                              │

00:00:46 #5470 [Verbose] > │         let v187 : float = 0.003130925987691568                              │

00:00:46 #5471 [Verbose] > │         let v188 : float = 0.0036613433329888622                             │

00:00:46 #5472 [Verbose] > │         let v189 : float = 0.0041149193294682815                             │

00:00:46 #5473 [Verbose] > │         let v190 : float = 0.0044821346864785195                             │

00:00:46 #5474 [Verbose] > │         let v191 : float = 0.004755282581475766                              │

00:00:46 #5475 [Verbose] > │         let v192 : float = 0.004928630404658255                              │

00:00:46 #5476 [Verbose] > │         let v193 : float = 0.004998540070400965                              │

00:00:46 #5477 [Verbose] > │         let v194 : float = 0.004963544370490271                              │

00:00:46 #5478 [Verbose] > │         let v195 : float = 0.004824377766717758                              │

00:00:46 #5479 [Verbose] > │         let v196 : float = 0.004583960976582912                              │

00:00:46 #5480 [Verbose] > │         let v197 : float = 0.004247339675607605                              │

00:00:46 #5481 [Verbose] > │         let v198 : float = 0.003821578602729245                              │

00:00:46 #5482 [Verbose] > │         let v199 : float = 0.0033156132912039783                             │

00:00:46 #5483 [Verbose] > │         let v200 : float = 0.0027400625367733585                             │

00:00:46 #5484 [Verbose] > │         let v201 : float = 0.0021070055388626528                             │

00:00:46 #5485 [Verbose] > │         let v202 : float = 0.001429728391993452                              │

00:00:46 #5486 [Verbose] > │         let v203 : float = 0.0007224452478461016                             │

00:00:46 #5487 [Verbose] > │         let v204 : float = 0.0                                               │

00:00:46 #5488 [Verbose] > │         let v205 : UH0 = UH0_1                                               │

00:00:46 #5489 [Verbose] > │         let v206 : UH0 = UH0_0(v204, v205)                                   │

00:00:46 #5490 [Verbose] > │         let v207 : UH0 = UH0_0(v203, v206)                                   │

00:00:46 #5491 [Verbose] > │         let v208 : UH0 = UH0_0(v202, v207)                                   │

00:00:46 #5492 [Verbose] > │         let v209 : UH0 = UH0_0(v201, v208)                                   │

00:00:46 #5493 [Verbose] > │         let v210 : UH0 = UH0_0(v200, v209)                                   │

00:00:46 #5494 [Verbose] > │         let v211 : UH0 = UH0_0(v199, v210)                                   │

00:00:46 #5495 [Verbose] > │         let v212 : UH0 = UH0_0(v198, v211)                                   │

00:00:46 #5496 [Verbose] > │         let v213 : UH0 = UH0_0(v197, v212)                                   │

00:00:46 #5497 [Verbose] > │         let v214 : UH0 = UH0_0(v196, v213)                                   │

00:00:46 #5498 [Verbose] > │         let v215 : UH0 = UH0_0(v195, v214)                                   │

00:00:46 #5499 [Verbose] > │         let v216 : UH0 = UH0_0(v194, v215)                                   │

00:00:46 #5500 [Verbose] > │         let v217 : UH0 = UH0_0(v193, v216)                                   │

00:00:46 #5501 [Verbose] > │         let v218 : UH0 = UH0_0(v192, v217)                                   │

00:00:46 #5502 [Verbose] > │         let v219 : UH0 = UH0_0(v191, v218)                                   │

00:00:46 #5503 [Verbose] > │         let v220 : UH0 = UH0_0(v190, v219)                                   │

00:00:46 #5504 [Verbose] > │         let v221 : UH0 = UH0_0(v189, v220)                                   │

00:00:46 #5505 [Verbose] > │         let v222 : UH0 = UH0_0(v188, v221)                                   │

00:00:46 #5506 [Verbose] > │         let v223 : UH0 = UH0_0(v187, v222)                                   │

00:00:46 #5507 [Verbose] > │         let v224 : UH0 = UH0_0(v186, v223)                                   │

00:00:46 #5508 [Verbose] > │         let v225 : UH0 = UH0_0(v185, v224)                                   │

00:00:46 #5509 [Verbose] > │         let v226 : UH0 = UH0_0(v184, v225)                                   │

00:00:46 #5510 [Verbose] > │         let v227 : UH0 = UH0_0(v183, v226)                                   │

00:00:46 #5511 [Verbose] > │         let v228 : UH0 = UH0_0(v182, v227)                                   │

00:00:46 #5512 [Verbose] > │         let v229 : UH0 = UH0_0(v181, v228)                                   │

00:00:46 #5513 [Verbose] > │         let v230 : UH0 = UH0_0(v180, v229)                                   │

00:00:46 #5514 [Verbose] > │         let v231 : UH0 = UH0_0(v179, v230)                                   │

00:00:46 #5515 [Verbose] > │         let v232 : UH0 = UH0_0(v178, v231)                                   │

00:00:46 #5516 [Verbose] > │         let v233 : UH0 = UH0_0(v177, v232)                                   │

00:00:46 #5517 [Verbose] > │         let v234 : UH0 = UH0_0(v176, v233)                                   │

00:00:46 #5518 [Verbose] > │         let v235 : UH0 = UH0_0(v175, v234)                                   │

00:00:46 #5519 [Verbose] > │         let v236 : UH0 = UH0_0(v174, v235)                                   │

00:00:46 #5520 [Verbose] > │         let v237 : UH0 = UH0_0(v173, v236)                                   │

00:00:46 #5521 [Verbose] > │         let v238 : UH0 = UH0_0(v172, v237)                                   │

00:00:46 #5522 [Verbose] > │         let v239 : UH0 = UH0_0(v171, v238)                                   │

00:00:46 #5523 [Verbose] > │         let v240 : UH0 = UH0_0(v170, v239)                                   │

00:00:46 #5524 [Verbose] > │         let v241 : UH0 = UH0_0(v169, v240)                                   │

00:00:46 #5525 [Verbose] > │         let v242 : UH0 = UH0_0(v168, v241)                                   │

00:00:46 #5526 [Verbose] > │         let v243 : UH0 = UH0_0(v167, v242)                                   │

00:00:46 #5527 [Verbose] > │         let v244 : UH0 = UH0_0(v166, v243)                                   │

00:00:46 #5528 [Verbose] > │         let v245 : UH0 = UH0_0(v165, v244)                                   │

00:00:46 #5529 [Verbose] > │         let v246 : UH0 = UH0_0(v164, v245)                                   │

00:00:46 #5530 [Verbose] > │         let v247 : UH0 = UH0_0(v163, v246)                                   │

00:00:46 #5531 [Verbose] > │         let v248 : UH0 = UH0_0(v162, v247)                                   │

00:00:46 #5532 [Verbose] > │         let v249 : UH0 = UH0_0(v161, v248)                                   │

00:00:46 #5533 [Verbose] > │         let v250 : UH0 = UH0_0(v160, v249)                                   │

00:00:46 #5534 [Verbose] > │         let v251 : UH0 = UH0_0(v159, v250)                                   │

00:00:46 #5535 [Verbose] > │         let v252 : UH0 = UH0_0(v158, v251)                                   │

00:00:46 #5536 [Verbose] > │         let v253 : UH0 = UH0_0(v157, v252)                                   │

00:00:46 #5537 [Verbose] > │         let v254 : UH0 = UH0_0(v156, v253)                                   │

00:00:46 #5538 [Verbose] > │         let v255 : UH0 = UH0_0(v155, v254)                                   │

00:00:46 #5539 [Verbose] > │         let v256 : UH0 = UH0_0(v154, v255)                                   │

00:00:46 #5540 [Verbose] > │         let v257 : UH0 = UH0_0(v153, v256)                                   │

00:00:46 #5541 [Verbose] > │         let v258 : UH0 = UH0_0(v152, v257)                                   │

00:00:46 #5542 [Verbose] > │         let v259 : UH0 = UH0_0(v151, v258)                                   │

00:00:46 #5543 [Verbose] > │         let v260 : UH0 = UH0_0(v150, v259)                                   │

00:00:46 #5544 [Verbose] > │         let v261 : UH0 = UH0_0(v149, v260)                                   │

00:00:46 #5545 [Verbose] > │         let v262 : UH0 = UH0_0(v148, v261)                                   │

00:00:46 #5546 [Verbose] > │         let v263 : UH0 = UH0_0(v147, v262)                                   │

00:00:46 #5547 [Verbose] > │         let v264 : UH0 = UH0_0(v146, v263)                                   │

00:00:46 #5548 [Verbose] > │         let v265 : UH0 = UH0_0(v145, v264)                                   │

00:00:46 #5549 [Verbose] > │         let v266 : UH0 = UH0_0(v144, v265)                                   │

00:00:46 #5550 [Verbose] > │         let v267 : UH0 = UH0_0(v143, v266)                                   │

00:00:46 #5551 [Verbose] > │         let v268 : UH0 = UH0_0(v142, v267)                                   │

00:00:46 #5552 [Verbose] > │         let v269 : UH0 = UH0_0(v141, v268)                                   │

00:00:46 #5553 [Verbose] > │         let v270 : UH0 = UH0_0(v140, v269)                                   │

00:00:46 #5554 [Verbose] > │         let v271 : UH0 = UH0_0(v139, v270)                                   │

00:00:46 #5555 [Verbose] > │         let v272 : (float []) = method2(v271)                                │

00:00:46 #5556 [Verbose] > │         UH1_0(v138, v272, v4)                                                │

00:00:46 #5557 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:46 #5558 [Verbose] > │         v1                                                                   │

00:00:46 #5559 [Verbose] > │ and method6 (v0 : UH1, v1 : int32) : int32 =                                 │

00:00:46 #5560 [Verbose] > │     match v0 with                                                            │

00:00:46 #5561 [Verbose] > │     | UH1_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:46 #5562 [Verbose] > │         let v5 : int32 = v1 + 1                                              │

00:00:46 #5563 [Verbose] > │         method6(v4, v5)                                                      │

00:00:46 #5564 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:46 #5565 [Verbose] > │         v1                                                                   │

00:00:46 #5566 [Verbose] > │ and method7 (v0 : (struct ((float []) * (float [])) []), v1 : UH1, v2 :      │

00:00:46 #5567 [Verbose] > │ int32) : int32 =                                                             │

00:00:46 #5568 [Verbose] > │     match v1 with                                                            │

00:00:46 #5569 [Verbose] > │     | UH1_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:46 #5570 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:00:46 #5571 [Verbose] > │         let v6 : int32 = v2 + 1                                              │

00:00:46 #5572 [Verbose] > │         method7(v0, v5, v6)                                                  │

00:00:46 #5573 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:46 #5574 [Verbose] > │         v2                                                                   │

00:00:46 #5575 [Verbose] > │ and method5 (v0 : UH1) : (struct ((float []) * (float [])) []) =             │

00:00:46 #5576 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:46 #5577 [Verbose] > │     let v2 : int32 = method6(v0, v1)                                         │

00:00:46 #5578 [Verbose] > │     let v3 : (struct ((float []) * (float [])) []) = Array.zeroCreate<struct │

00:00:46 #5579 [Verbose] > │ ((float []) * (float []))> (v2)                                              │

00:00:46 #5580 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:46 #5581 [Verbose] > │     let v5 : int32 = method7(v3, v0, v4)                                     │

00:00:46 #5582 [Verbose] > │     v3                                                                       │

00:00:46 #5583 [Verbose] > │ and method8 (v0 : (struct (string * (float []) * (float [])) [])) : (struct  │

00:00:46 #5584 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:46 #5585 [Verbose] > │     v0                                                                       │

00:00:46 #5586 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:46 #5587 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:46 #5588 [Verbose] > │     let v0 : float = 0.0                                                     │

00:00:46 #5589 [Verbose] > │     let v1 : float = 1.0                                                     │

00:00:46 #5590 [Verbose] > │     let v2 : float = 2.0                                                     │

00:00:46 #5591 [Verbose] > │     let v3 : float = 3.0                                                     │

00:00:46 #5592 [Verbose] > │     let v4 : float = 4.0                                                     │

00:00:46 #5593 [Verbose] > │     let v5 : float = 5.0                                                     │

00:00:46 #5594 [Verbose] > │     let v6 : float = 6.0                                                     │

00:00:46 #5595 [Verbose] > │     let v7 : float = 7.0                                                     │

00:00:46 #5596 [Verbose] > │     let v8 : float = 8.0                                                     │

00:00:46 #5597 [Verbose] > │     let v9 : float = 9.0                                                     │

00:00:46 #5598 [Verbose] > │     let v10 : UH0 = UH0_1                                                    │

00:00:46 #5599 [Verbose] > │     let v11 : UH0 = UH0_0(v9, v10)                                           │

00:00:46 #5600 [Verbose] > │     let v12 : UH0 = UH0_0(v8, v11)                                           │

00:00:46 #5601 [Verbose] > │     let v13 : UH0 = UH0_0(v7, v12)                                           │

00:00:46 #5602 [Verbose] > │     let v14 : UH0 = UH0_0(v6, v13)                                           │

00:00:46 #5603 [Verbose] > │     let v15 : UH0 = UH0_0(v5, v14)                                           │

00:00:46 #5604 [Verbose] > │     let v16 : UH0 = UH0_0(v4, v15)                                           │

00:00:46 #5605 [Verbose] > │     let v17 : UH0 = UH0_0(v3, v16)                                           │

00:00:46 #5606 [Verbose] > │     let v18 : UH0 = UH0_0(v2, v17)                                           │

00:00:46 #5607 [Verbose] > │     let v19 : UH0 = UH0_0(v1, v18)                                           │

00:00:46 #5608 [Verbose] > │     let v20 : UH0 = UH0_0(v0, v19)                                           │

00:00:46 #5609 [Verbose] > │     let v21 : UH1 = UH1_1                                                    │

00:00:46 #5610 [Verbose] > │     let v22 : UH1 = method1(v20, v21)                                        │

00:00:46 #5611 [Verbose] > │     let v23 : (struct ((float []) * (float [])) []) = method5(v22)           │

00:00:46 #5612 [Verbose] > │     let struct (v24 : (float []), v25 : (float [])) = v23.[int 0]            │

00:00:46 #5613 [Verbose] > │     let v26 : string = $"{0}"                                                │

00:00:46 #5614 [Verbose] > │     let v27 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:46 #5615 [Verbose] > │ (v26, v24, v25)|]                                                            │

00:00:46 #5616 [Verbose] > │     let v28 : (struct (string * (float []) * (float [])) []) = method8(v27)  │

00:00:46 #5617 [Verbose] > │     let v29 : string = "wave"                                                │

00:00:46 #5618 [Verbose] > │     let v30 : string = "position (m)"                                        │

00:00:46 #5619 [Verbose] > │     let v31 : string = "displacement (m)"                                    │

00:00:46 #5620 [Verbose] > │     struct (v29, v30, v31, v28)                                              │

00:00:46 #5621 [Verbose] > │ method0()                                                                    │

00:00:46 #5622 [Verbose] > │                                                                              │

00:00:46 #5623 [Verbose] > │                                                                              │

00:00:46 #5624 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:46 #5625 [Verbose] >

00:00:46 #5626 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:46 #5627 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:46 #5628 [Verbose] > │ ### system kinetic energy versus time 2                                      │

00:00:46 #5629 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:46 #5630 [Verbose] >

00:00:46 #5631 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:46 #5632 [Verbose] > // // test

00:00:46 #5633 [Verbose] >

00:00:46 #5634 [Verbose] > inl central_force f (particle_state st1) (particle_state st2) =

00:00:46 #5635 [Verbose] >     inl r1 = st1.pos_vec

00:00:46 #5636 [Verbose] >     inl r2 = st2.pos_vec

00:00:46 #5637 [Verbose] >     inl r21 = r2 ^-^ r1

00:00:46 #5638 [Verbose] >     inl r21mag = magnitude r21

00:00:46 #5639 [Verbose] >     f r21mag *^ r21 ^/ r21mag

00:00:46 #5640 [Verbose] >

00:00:46 #5641 [Verbose] > inl billiard_force k re =

00:00:46 #5642 [Verbose] >     inl f r =

00:00:46 #5643 [Verbose] >         if r >= re

00:00:46 #5644 [Verbose] >         then 0

00:00:46 #5645 [Verbose] >         else -k * (r - re)

00:00:46 #5646 [Verbose] >     central_force f

00:00:46 #5647 [Verbose] >

00:00:46 #5648 [Verbose] > type force_vector = vec

00:00:46 #5649 [Verbose] > type two_body_force = particle_state -> particle_state -> force_vector

00:00:46 #5650 [Verbose] >

00:00:46 #5651 [Verbose] > union force t =

00:00:46 #5652 [Verbose] >     | ExternalForce : t * one_body_force

00:00:46 #5653 [Verbose] >     | InternalForce : t * t * two_body_force

00:00:46 #5654 [Verbose] >

00:00:46 #5655 [Verbose] > nominal multi_particle_state = stream.stream particle_state

00:00:46 #5656 [Verbose] >

00:00:46 #5657 [Verbose] > nominal d_multi_particle_state = stream.stream d_particle_state

00:00:46 #5658 [Verbose] >

00:00:46 #5659 [Verbose] > inl force_on n s force =

00:00:46 #5660 [Verbose] >     match force with

00:00:46 #5661 [Verbose] >     | ExternalForce (n0, f_one_body) =>

00:00:46 #5662 [Verbose] >         if n = n0

00:00:46 #5663 [Verbose] >         then f_one_body

00:00:46 #5664 [Verbose] >         else fun _ => zero_vec ()

00:00:46 #5665 [Verbose] >     | InternalForce (n0, n1, f_two_body) =>

00:00:46 #5666 [Verbose] >         if n = n0

00:00:46 #5667 [Verbose] >         then s |> stream.try_item n1 |> optionm.map f_two_body

00:00:46 #5668 [Verbose] >         elif n = n1

00:00:46 #5669 [Verbose] >         then s |> stream.try_item n0 |> optionm.map f_two_body

00:00:46 #5670 [Verbose] >         else None

00:00:46 #5671 [Verbose] >         |> optionm'.default_value (fun _ => zero_vec ())

00:00:46 #5672 [Verbose] >

00:00:46 #5673 [Verbose] > inl forces_on n (multi_particle_state sts) fs =

00:00:46 #5674 [Verbose] >     fs

00:00:46 #5675 [Verbose] >     |> listm.map (force_on n sts)

00:00:46 #5676 [Verbose] >

00:00:46 #5677 [Verbose] > inl newton_second_mps fs ((multi_particle_state sts) as mpst) =

00:00:46 #5678 [Verbose] >     inl deriv (n, st) =

00:00:46 #5679 [Verbose] >         newton_second_ps (forces_on n mpst fs) st

00:00:46 #5680 [Verbose] >     sts |> stream.indexed |> stream.map deriv |> d_multi_particle_state

00:00:46 #5681 [Verbose] >

00:00:46 #5682 [Verbose] > instance (+++) d_multi_particle_state =

00:00:46 #5683 [Verbose] >     fun (d_multi_particle_state dsts1) (d_multi_particle_state dsts2) =>

00:00:46 #5684 [Verbose] >         (dsts1, dsts2)

00:00:46 #5685 [Verbose] >         ||> stream.zip_with (+++)

00:00:46 #5686 [Verbose] >         |> d_multi_particle_state

00:00:46 #5687 [Verbose] >

00:00:46 #5688 [Verbose] > instance scale d_multi_particle_state = fun w (d_multi_particle_state dsts) =>

00:00:46 #5689 [Verbose] >     dsts

00:00:46 #5690 [Verbose] >     |> stream.map (scale w)

00:00:46 #5691 [Verbose] >     |> d_multi_particle_state

00:00:46 #5692 [Verbose] >

00:00:46 #5693 [Verbose] > instance shift multi_particle_state = fun dt dsts (multi_particle_state sts) =>

00:00:46 #5694 [Verbose] >     inl (d_multi_particle_state dsts) =

00:00:46 #5695 [Verbose] >         real

00:00:46 #5696 [Verbose] >             match dsts with

00:00:46 #5697 [Verbose] >             | d_multi_particle_state _ => dsts

00:00:46 #5698 [Verbose] >     (dsts, sts)

00:00:46 #5699 [Verbose] >     ||> stream.zip_with (shift dt)

00:00:46 #5700 [Verbose] >     |> stream.memoize

00:00:46 #5701 [Verbose] >     |> fun x => x ()

00:00:46 #5702 [Verbose] >     |> multi_particle_state

00:00:46 #5703 [Verbose] >

00:00:46 #5704 [Verbose] > inl euler_cromer_mps dt : numerical_method multi_particle_state

00:00:46 #5705 [Verbose] > d_multi_particle_state =

00:00:46 #5706 [Verbose] >     fun deriv ((multi_particle_state sts0) as mpst0) =>

00:00:46 #5707 [Verbose] >         inl (multi_particle_state sts1) = euler dt deriv mpst0

00:00:46 #5708 [Verbose] >         (sts0, sts1)

00:00:46 #5709 [Verbose] >         ||> stream.zip

00:00:46 #5710 [Verbose] >         |> stream.map (fun ((particle_state st0), (particle_state st1)) =>

00:00:46 #5711 [Verbose] >             particle_state {

00:00:46 #5712 [Verbose] >                 st1 with

00:00:46 #5713 [Verbose] >                     pos_vec = st0.pos_vec ^+^ st1.velocity ^* dt

00:00:46 #5714 [Verbose] >             }

00:00:46 #5715 [Verbose] >         )

00:00:46 #5716 [Verbose] >         |> multi_particle_state

00:00:46 #5717 [Verbose] >

00:00:46 #5718 [Verbose] > inl update_mps (method : numerical_method multi_particle_state

00:00:46 #5719 [Verbose] > d_multi_particle_state) =

00:00:46 #5720 [Verbose] >     newton_second_mps >> method

00:00:46 #5721 [Verbose] >

00:00:46 #5722 [Verbose] > inl states_mps (method : numerical_method multi_particle_state

00:00:46 #5723 [Verbose] > d_multi_particle_state) =

00:00:46 #5724 [Verbose] >     newton_second_mps

00:00:46 #5725 [Verbose] >     >> method

00:00:46 #5726 [Verbose] >     >> (fun x (multi_particle_state y) =>

00:00:46 #5727 [Verbose] >         y

00:00:46 #5728 [Verbose] >         |> stream.memoize

00:00:46 #5729 [Verbose] >         |> (fun x => x ())

00:00:46 #5730 [Verbose] >         |> multi_particle_state |> x

00:00:46 #5731 [Verbose] >     )

00:00:46 #5732 [Verbose] >     // >> stream.iterate

00:00:46 #5733 [Verbose] >     >> seq.iterate'

00:00:46 #5734 [Verbose] >

00:00:46 #5735 [Verbose] > inl kinetic_energy (particle_state st) =

00:00:46 #5736 [Verbose] >     inl m = st.mass

00:00:46 #5737 [Verbose] >     inl v = magnitude st.velocity

00:00:46 #5738 [Verbose] >     0.5 * m * v ** 2

00:00:46 #5739 [Verbose] >

00:00:46 #5740 [Verbose] > inl system_ke (multi_particle_state sts) =

00:00:46 #5741 [Verbose] >     sts

00:00:46 #5742 [Verbose] >     |> stream.map kinetic_energy

00:00:46 #5743 [Verbose] >     |> stream.sum

00:00:46 #5744 [Verbose] >

00:00:46 #5745 [Verbose] > inl linear_spring_pe k re (particle_state st1) (particle_state st2) =

00:00:46 #5746 [Verbose] >     inl r1 = st1.pos_vec

00:00:46 #5747 [Verbose] >     inl r2 = st2.pos_vec

00:00:46 #5748 [Verbose] >     inl r21 = r2 ^-^ r1

00:00:46 #5749 [Verbose] >     inl r21mag = magnitude r21

00:00:46 #5750 [Verbose] >     k * (r21mag - re) ** 2 / 2

00:00:46 #5751 [Verbose] >

00:00:46 #5752 [Verbose] > inl earth_surface_gravity_pe (particle_state st) =

00:00:46 #5753 [Verbose] >     inl g = 9.80665

00:00:46 #5754 [Verbose] >     inl m = st.mass

00:00:46 #5755 [Verbose] >     inl z = st.pos_vec.z

00:00:46 #5756 [Verbose] >     m * g * z

00:00:46 #5757 [Verbose] >

00:00:46 #5758 [Verbose] > inl ball_radius () = 0.03

00:00:46 #5759 [Verbose] >

00:00:46 #5760 [Verbose] > inl billiard_forces k =

00:00:46 #5761 [Verbose] >     [[ InternalForce (0i32, 1, billiard_force k (2 * ball_radius ())) ]]

00:00:46 #5762 [Verbose] >

00:00:46 #5763 [Verbose] > inl billiard_initial () =

00:00:46 #5764 [Verbose] >     inl ball_mass = 0.160

00:00:46 #5765 [Verbose] >     inl (particle_state default_particle_state') = default_particle_state ()

00:00:46 #5766 [Verbose] >     [[

00:00:46 #5767 [Verbose] >         particle_state {

00:00:46 #5768 [Verbose] >             default_particle_state' with

00:00:46 #5769 [Verbose] >                 mass = ball_mass

00:00:46 #5770 [Verbose] >                 pos_vec = zero_vec ()

00:00:46 #5771 [Verbose] >                 velocity = 0.2 *^ i_hat ()

00:00:46 #5772 [Verbose] >         }

00:00:46 #5773 [Verbose] >         particle_state {

00:00:46 #5774 [Verbose] >             default_particle_state' with

00:00:46 #5775 [Verbose] >                 mass = ball_mass

00:00:46 #5776 [Verbose] >                 pos_vec = i_hat () ^+^ 0.02 *^ j_hat ()

00:00:46 #5777 [Verbose] >                 velocity = zero_vec ()

00:00:46 #5778 [Verbose] >         }

00:00:46 #5779 [Verbose] >     ]]

00:00:46 #5780 [Verbose] >     |> stream.from_list

00:00:46 #5781 [Verbose] >     |> multi_particle_state

00:00:46 #5782 [Verbose] >

00:00:46 #5783 [Verbose] > inl billiard_states ~n_method k dt =

00:00:46 #5784 [Verbose] >     states_mps (n_method dt) (billiard_forces k) (billiard_initial ())

00:00:46 #5785 [Verbose] >

00:00:46 #5786 [Verbose] > inl billiard_states_finite n_method k dt =

00:00:46 #5787 [Verbose] >     billiard_states n_method k dt

00:00:46 #5788 [Verbose] >     >> Some

00:00:46 #5789 [Verbose] >     |> seq.take_while_ (fun (multi_particle_state mpst) (_ : i32) =>

00:00:46 #5790 [Verbose] >         match mpst |> stream.try_item 0i32 with

00:00:46 #5791 [Verbose] >         | Some st =>

00:00:46 #5792 [Verbose] >             st.time <= 10

00:00:46 #5793 [Verbose] >         | None => false

00:00:46 #5794 [Verbose] >     )

00:00:46 #5795 [Verbose] >

00:00:46 #5796 [Verbose] > inl momentum (particle_state st) =

00:00:46 #5797 [Verbose] >     inl m = st.mass

00:00:46 #5798 [Verbose] >     inl v = st.velocity

00:00:46 #5799 [Verbose] >     m *^ v

00:00:46 #5800 [Verbose] >

00:00:46 #5801 [Verbose] > inl system_p (multi_particle_state sts) =

00:00:46 #5802 [Verbose] >     sts

00:00:46 #5803 [Verbose] >     |> stream.map momentum

00:00:46 #5804 [Verbose] >     |> stream.fold (^+^) (zero_vec ())

00:00:46 #5805 [Verbose] >

00:00:46 #5806 [Verbose] > inl time_ke_ec_x, time_ke_ec_y =

00:00:46 #5807 [Verbose] >     billiard_states_finite euler_cromer_mps 30 0.03

00:00:46 #5808 [Verbose] >     |> listm.map (fun (multi_particle_state mpst) =>

00:00:46 #5809 [Verbose] >         mpst |> stream.try_item 0i32

00:00:46 #5810 [Verbose] >         |> optionm.map (fun st =>

00:00:46 #5811 [Verbose] >             st.time, system_ke (multi_particle_state mpst)

00:00:46 #5812 [Verbose] >         )

00:00:46 #5813 [Verbose] >     )

00:00:46 #5814 [Verbose] >     // |> stream.to_list

00:00:46 #5815 [Verbose] >     |> listm'.choose id

00:00:46 #5816 [Verbose] >     |> listm'.unzip

00:00:46 #5817 [Verbose] >

00:00:46 #5818 [Verbose] > inl time_ke_rk4_x, time_ke_rk4_y =

00:00:46 #5819 [Verbose] >     billiard_states_finite runge_kutta_4 30 0.03

00:00:46 #5820 [Verbose] >     |> listm.map (fun (multi_particle_state mpst) =>

00:00:46 #5821 [Verbose] >         mpst |> stream.try_item 0i32

00:00:46 #5822 [Verbose] >         |> optionm.map (fun st =>

00:00:46 #5823 [Verbose] >             st.time, system_ke (multi_particle_state mpst)

00:00:46 #5824 [Verbose] >         )

00:00:46 #5825 [Verbose] >     )

00:00:46 #5826 [Verbose] >     // |> stream.to_list

00:00:46 #5827 [Verbose] >     |> listm'.choose id

00:00:46 #5828 [Verbose] >     |> listm'.unzip

00:00:46 #5829 [Verbose] >

00:00:46 #5830 [Verbose] > inl time_ke_ec_x : a i32 _ = time_ke_ec_x |> listm.toArray

00:00:46 #5831 [Verbose] > inl time_ke_ec_y : a i32 _ = time_ke_ec_y |> listm.toArray

00:00:46 #5832 [Verbose] >

00:00:46 #5833 [Verbose] > inl time_ke_rk4_x : a i32 _ = time_ke_rk4_x |> listm.toArray

00:00:46 #5834 [Verbose] > inl time_ke_rk4_y : a i32 _ = time_ke_rk4_y |> listm.toArray

00:00:46 #5835 [Verbose] >

00:00:46 #5836 [Verbose] > "system kinetic energy versus time",

00:00:46 #5837 [Verbose] > "time (s)",

00:00:46 #5838 [Verbose] > "system kinetic energy (j)",

00:00:46 #5839 [Verbose] > ;[[

00:00:46 #5840 [Verbose] >     "euler-cromer", time_ke_ec_x, time_ke_ec_y

00:00:46 #5841 [Verbose] >     "runge-kutta 4", time_ke_rk4_x, time_ke_rk4_y

00:00:46 #5842 [Verbose] > ]]

00:00:46 #5843 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-1458-5822-5a0e23e1420b\main.spi

00:00:49 #5844 [Verbose] >

00:00:49 #5845 [Verbose] > ╭─[ 2.97s - return value ]─────────────────────────────────────────────────────╮

00:00:49 #5846 [Verbose] > │ <svg width="640" height="480" viewBox="0 0 640 480"                          │

00:00:49 #5847 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:49 #5848 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:49 #5849 [Verbose] > │ stroke="none"/>                                                              │

00:00:49 #5850 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:49 #5851 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:49 #5852 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:49 #5853 [Verbose] > │ system kinetic energy versus time                                            │

00:00:49 #5854 [Verbose] > │ </text>                                                                      │

00:00:49 #5855 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="59" y1="424" x2="59" │

00:00:49 #5856 [Verbose] > │ y2="75"/>                                                                    │

00:00:49 #5857 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:49 #5858 [Verbose] > │ y2="75"/>                                                                    │

00:00:49 #5859 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="79" y1="424" x2="79" │

00:00:49 #5860 [Verbose] > │ y2="75"/>                                                                    │

00:00:49 #5861 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="89" y1="424" x2="89" │

00:00:49 #5862 [Verbose] > │ y2="75"/>                                                                    │

00:00:49 #5863 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1...                        │

00:00:49 #5864 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:49 #5865 [Verbose] >

00:00:49 #5866 [Verbose] > ╭─[ 2.99s - stdout ]───────────────────────────────────────────────────────────╮

00:00:49 #5867 [Verbose] > │ type UH0 =                                                                   │

00:00:49 #5868 [Verbose] > │     | UH0_0 of float * float * float * float * float * float * float * float │

00:00:49 #5869 [Verbose] > │ * float * (unit -> UH0)                                                      │

00:00:49 #5870 [Verbose] > │     | UH0_1                                                                  │

00:00:49 #5871 [Verbose] > │ and UH1 =                                                                    │

00:00:49 #5872 [Verbose] > │     | UH1_0 of float * float * float * float * float * float * float * float │

00:00:49 #5873 [Verbose] > │ * float * (unit -> UH1)                                                      │

00:00:49 #5874 [Verbose] > │     | UH1_1                                                                  │

00:00:49 #5875 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:49 #5876 [Verbose] > │     | US0_0 of f0_0 : UH0                                                    │

00:00:49 #5877 [Verbose] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

00:00:49 #5878 [Verbose] > │ and Mut0 = {mutable l0 : US0}                                                │

00:00:49 #5879 [Verbose] > │ and UH2 =                                                                    │

00:00:49 #5880 [Verbose] > │     | UH2_0 of float * float * float * float * float * float * float * float │

00:00:49 #5881 [Verbose] > │ * float * float * float * float * float * float * float * float * float *    │

00:00:49 #5882 [Verbose] > │ float * (unit -> UH2)                                                        │

00:00:49 #5883 [Verbose] > │     | UH2_1                                                                  │

00:00:49 #5884 [Verbose] > │ and UH3 =                                                                    │

00:00:49 #5885 [Verbose] > │     | UH3_0 of int32 * float * float * float * float * float * float * float │

00:00:49 #5886 [Verbose] > │ * float * float * (unit -> UH3)                                              │

00:00:49 #5887 [Verbose] > │     | UH3_1                                                                  │

00:00:49 #5888 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:49 #5889 [Verbose] > │     | US1_0                                                                  │

00:00:49 #5890 [Verbose] > │     | US1_1 of f1_0 : (struct (float * float * float * float * float * float │

00:00:49 #5891 [Verbose] > │ * float * float * float) -> struct (float * float * float))                  │

00:00:49 #5892 [Verbose] > │ and [<Struct>] US2 =                                                         │

00:00:49 #5893 [Verbose] > │     | US2_0                                                                  │

00:00:49 #5894 [Verbose] > │     | US2_1 of f1_0 : float * f1_1 : float * f1_2 : float * f1_3 : float *   │

00:00:49 #5895 [Verbose] > │ f1_4 : float * f1_5 : float * f1_6 : float * f1_7 : float * f1_8 : float     │

00:00:49 #5896 [Verbose] > │ and UH4 =                                                                    │

00:00:49 #5897 [Verbose] > │     | UH4_0 of UH0 * UH4                                                     │

00:00:49 #5898 [Verbose] > │     | UH4_1                                                                  │

00:00:49 #5899 [Verbose] > │ and UH5 =                                                                    │

00:00:49 #5900 [Verbose] > │     | UH5_0 of int32 * UH5                                                   │

00:00:49 #5901 [Verbose] > │     | UH5_1                                                                  │

00:00:49 #5902 [Verbose] > │ and [<Struct>] US3 =                                                         │

00:00:49 #5903 [Verbose] > │     | US3_0                                                                  │

00:00:49 #5904 [Verbose] > │     | US3_1 of f1_0 : float * f1_1 : float                                   │

00:00:49 #5905 [Verbose] > │ and UH6 =                                                                    │

00:00:49 #5906 [Verbose] > │     | UH6_0 of US3 * UH6                                                     │

00:00:49 #5907 [Verbose] > │     | UH6_1                                                                  │

00:00:49 #5908 [Verbose] > │ and UH7 =                                                                    │

00:00:49 #5909 [Verbose] > │     | UH7_0 of float * (unit -> UH7)                                         │

00:00:49 #5910 [Verbose] > │     | UH7_1                                                                  │

00:00:49 #5911 [Verbose] > │ and UH8 =                                                                    │

00:00:49 #5912 [Verbose] > │     | UH8_0 of float * float * UH8                                           │

00:00:49 #5913 [Verbose] > │     | UH8_1                                                                  │

00:00:49 #5914 [Verbose] > │ and UH9 =                                                                    │

00:00:49 #5915 [Verbose] > │     | UH9_0 of float * UH9                                                   │

00:00:49 #5916 [Verbose] > │     | UH9_1                                                                  │

00:00:49 #5917 [Verbose] > │ let rec closure3 (v0 : float, v1 : (unit -> UH0), v2 : (unit -> UH1)) () :   │

00:00:49 #5918 [Verbose] > │ UH0 =                                                                        │

00:00:49 #5919 [Verbose] > │     let v3 : UH1 = v2 ()                                                     │

00:00:49 #5920 [Verbose] > │     let v4 : UH0 = v1 ()                                                     │

00:00:49 #5921 [Verbose] > │     match v3 with                                                            │

00:00:49 #5922 [Verbose] > │     | UH1_0(v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) -> (* StreamCons *) │

00:00:49 #5923 [Verbose] > │         match v4 with                                                        │

00:00:49 #5924 [Verbose] > │         | UH0_0(v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) -> (*      │

00:00:49 #5925 [Verbose] > │ StreamCons *)                                                                │

00:00:49 #5926 [Verbose] > │             let v25 : float = v10 * v0                                       │

00:00:49 #5927 [Verbose] > │             let v26 : float = v20 + v25                                      │

00:00:49 #5928 [Verbose] > │             let v27 : float = v0 * v7                                        │

00:00:49 #5929 [Verbose] > │             let v28 : float = v0 * v8                                        │

00:00:49 #5930 [Verbose] > │             let v29 : float = v0 * v9                                        │

00:00:49 #5931 [Verbose] > │             let v30 : float = v17 + v27                                      │

00:00:49 #5932 [Verbose] > │             let v31 : float = v18 + v28                                      │

00:00:49 #5933 [Verbose] > │             let v32 : float = v19 + v29                                      │

00:00:49 #5934 [Verbose] > │             let v33 : float = v0 * v11                                       │

00:00:49 #5935 [Verbose] > │             let v34 : float = v0 * v12                                       │

00:00:49 #5936 [Verbose] > │             let v35 : float = v0 * v13                                       │

00:00:49 #5937 [Verbose] > │             let v36 : float = v21 + v33                                      │

00:00:49 #5938 [Verbose] > │             let v37 : float = v22 + v34                                      │

00:00:49 #5939 [Verbose] > │             let v38 : float = v23 + v35                                      │

00:00:49 #5940 [Verbose] > │             let v39 : (unit -> UH0) = closure3(v0, v24, v14)                 │

00:00:49 #5941 [Verbose] > │             UH0_0(v15, v16, v30, v31, v32, v26, v36, v37, v38, v39)          │

00:00:49 #5942 [Verbose] > │         | UH0_1 -> (* StreamNil *)                                           │

00:00:49 #5943 [Verbose] > │             UH0_1                                                            │

00:00:49 #5944 [Verbose] > │     | UH1_1 -> (* StreamNil *)                                               │

00:00:49 #5945 [Verbose] > │         UH0_1                                                                │

00:00:49 #5946 [Verbose] > │ and closure4 (v0 : UH0) () : UH0 =                                           │

00:00:49 #5947 [Verbose] > │     v0                                                                       │

00:00:49 #5948 [Verbose] > │ and closure5 (v0 : UH0, v1 : Mut0) () : UH0 =                                │

00:00:49 #5949 [Verbose] > │     let v2 : US0 = v1.l0                                                     │

00:00:49 #5950 [Verbose] > │     match v2 with                                                            │

00:00:49 #5951 [Verbose] > │     | US0_0(v3) -> (* Computed *)                                            │

00:00:49 #5952 [Verbose] > │         v3                                                                   │

00:00:49 #5953 [Verbose] > │     | US0_1(v4) -> (* NotComputed *)                                         │

00:00:49 #5954 [Verbose] > │         let v5 : UH0 = v4 ()                                                 │

00:00:49 #5955 [Verbose] > │         let v20 : UH0 =                                                      │

00:00:49 #5956 [Verbose] > │             match v5 with                                                    │

00:00:49 #5957 [Verbose] > │             | UH0_0(v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) -> (*     │

00:00:49 #5958 [Verbose] > │ StreamCons *)                                                                │

00:00:49 #5959 [Verbose] > │                 let v17 : (unit -> UH0) = method1(v0, v16)                   │

00:00:49 #5960 [Verbose] > │                 UH0_0(v7, v8, v9, v10, v11, v12, v13, v14, v15, v17)         │

00:00:49 #5961 [Verbose] > │             | UH0_1 -> (* StreamNil *)                                       │

00:00:49 #5962 [Verbose] > │                 UH0_1                                                        │

00:00:49 #5963 [Verbose] > │         let v21 : US0 = US0_0(v20)                                           │

00:00:49 #5964 [Verbose] > │         v1.l0 <- v21                                                         │

00:00:49 #5965 [Verbose] > │         v20                                                                  │

00:00:49 #5966 [Verbose] > │ and method1 (v0 : UH0, v1 : (unit -> UH0)) : (unit -> UH0) =                 │

00:00:49 #5967 [Verbose] > │     let v2 : US0 = US0_1(v1)                                                 │

00:00:49 #5968 [Verbose] > │     let v3 : Mut0 = {l0 = v2} : Mut0                                         │

00:00:49 #5969 [Verbose] > │     closure5(v0, v3)                                                         │

00:00:49 #5970 [Verbose] > │ and closure6 (v0 : (unit -> UH0), v1 : (unit -> UH0)) () : UH2 =             │

00:00:49 #5971 [Verbose] > │     let v2 : UH0 = v1 ()                                                     │

00:00:49 #5972 [Verbose] > │     let v3 : UH0 = v0 ()                                                     │

00:00:49 #5973 [Verbose] > │     match v2 with                                                            │

00:00:49 #5974 [Verbose] > │     | UH0_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons *)  │

00:00:49 #5975 [Verbose] > │         match v3 with                                                        │

00:00:49 #5976 [Verbose] > │         | UH0_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (*      │

00:00:49 #5977 [Verbose] > │ StreamCons *)                                                                │

00:00:49 #5978 [Verbose] > │             let v24 : (unit -> UH2) = closure6(v23, v13)                     │

00:00:49 #5979 [Verbose] > │             UH2_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v14, v15, v16, v17, │

00:00:49 #5980 [Verbose] > │ v18, v19, v20, v21, v22, v24)                                                │

00:00:49 #5981 [Verbose] > │         | UH0_1 -> (* StreamNil *)                                           │

00:00:49 #5982 [Verbose] > │             UH2_1                                                            │

00:00:49 #5983 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:49 #5984 [Verbose] > │         UH2_1                                                                │

00:00:49 #5985 [Verbose] > │ and closure7 (v0 : UH0) () : UH0 =                                           │

00:00:49 #5986 [Verbose] > │     v0                                                                       │

00:00:49 #5987 [Verbose] > │ and method2 (v0 : float, v1 : UH2, v2 : UH0) : UH0 =                         │

00:00:49 #5988 [Verbose] > │     match v1 with                                                            │

00:00:49 #5989 [Verbose] > │     | UH2_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16,   │

00:00:49 #5990 [Verbose] > │ v17, v18, v19, v20, v21) -> (* StreamCons *)                                 │

00:00:49 #5991 [Verbose] > │         let v22 : UH2 = v21 ()                                               │

00:00:49 #5992 [Verbose] > │         let v23 : UH0 = method2(v0, v22, v2)                                 │

00:00:49 #5993 [Verbose] > │         let v24 : float = v0 * v18                                           │

00:00:49 #5994 [Verbose] > │         let v25 : float = v0 * v19                                           │

00:00:49 #5995 [Verbose] > │         let v26 : float = v0 * v20                                           │

00:00:49 #5996 [Verbose] > │         let v27 : float = v5 + v24                                           │

00:00:49 #5997 [Verbose] > │         let v28 : float = v6 + v25                                           │

00:00:49 #5998 [Verbose] > │         let v29 : float = v7 + v26                                           │

00:00:49 #5999 [Verbose] > │         let v30 : (unit -> UH0) = closure7(v23)                              │

00:00:49 #6000 [Verbose] > │         UH0_0(v12, v13, v27, v28, v29, v17, v18, v19, v20, v30)              │

00:00:49 #6001 [Verbose] > │     | UH2_1 -> (* StreamNil *)                                               │

00:00:49 #6002 [Verbose] > │         v2                                                                   │

00:00:49 #6003 [Verbose] > │ and closure2 (v0 : float, v1 : (UH0 -> UH1)) (v2 : UH0) : UH0 =              │

00:00:49 #6004 [Verbose] > │     let v3 : UH1 = v1 v2                                                     │

00:00:49 #6005 [Verbose] > │     let v45 : UH0 =                                                          │

00:00:49 #6006 [Verbose] > │         match v3 with                                                        │

00:00:49 #6007 [Verbose] > │         | UH1_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons │

00:00:49 #6008 [Verbose] > │ *)                                                                           │

00:00:49 #6009 [Verbose] > │             match v2 with                                                    │

00:00:49 #6010 [Verbose] > │             | UH0_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (*  │

00:00:49 #6011 [Verbose] > │ StreamCons *)                                                                │

00:00:49 #6012 [Verbose] > │                 let v24 : float = v9 * v0                                    │

00:00:49 #6013 [Verbose] > │                 let v25 : float = v19 + v24                                  │

00:00:49 #6014 [Verbose] > │                 let v26 : float = v0 * v6                                    │

00:00:49 #6015 [Verbose] > │                 let v27 : float = v0 * v7                                    │

00:00:49 #6016 [Verbose] > │                 let v28 : float = v0 * v8                                    │

00:00:49 #6017 [Verbose] > │                 let v29 : float = v16 + v26                                  │

00:00:49 #6018 [Verbose] > │                 let v30 : float = v17 + v27                                  │

00:00:49 #6019 [Verbose] > │                 let v31 : float = v18 + v28                                  │

00:00:49 #6020 [Verbose] > │                 let v32 : float = v0 * v10                                   │

00:00:49 #6021 [Verbose] > │                 let v33 : float = v0 * v11                                   │

00:00:49 #6022 [Verbose] > │                 let v34 : float = v0 * v12                                   │

00:00:49 #6023 [Verbose] > │                 let v35 : float = v20 + v32                                  │

00:00:49 #6024 [Verbose] > │                 let v36 : float = v21 + v33                                  │

00:00:49 #6025 [Verbose] > │                 let v37 : float = v22 + v34                                  │

00:00:49 #6026 [Verbose] > │                 let v38 : (unit -> UH0) = closure3(v0, v23, v13)             │

00:00:49 #6027 [Verbose] > │                 UH0_0(v14, v15, v29, v30, v31, v25, v35, v36, v37, v38)      │

00:00:49 #6028 [Verbose] > │             | UH0_1 -> (* StreamNil *)                                       │

00:00:49 #6029 [Verbose] > │                 UH0_1                                                        │

00:00:49 #6030 [Verbose] > │         | UH1_1 -> (* StreamNil *)                                           │

00:00:49 #6031 [Verbose] > │             UH0_1                                                            │

00:00:49 #6032 [Verbose] > │     let v46 : (unit -> UH0) = closure4(v45)                                  │

00:00:49 #6033 [Verbose] > │     let v47 : (unit -> UH0) = method1(v45, v46)                              │

00:00:49 #6034 [Verbose] > │     let v48 : UH0 = v47 ()                                                   │

00:00:49 #6035 [Verbose] > │     let v76 : UH2 =                                                          │

00:00:49 #6036 [Verbose] > │         match v2 with                                                        │

00:00:49 #6037 [Verbose] > │         | UH0_0(v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) -> (*      │

00:00:49 #6038 [Verbose] > │ StreamCons *)                                                                │

00:00:49 #6039 [Verbose] > │             match v48 with                                                   │

00:00:49 #6040 [Verbose] > │             | UH0_0(v59, v60, v61, v62, v63, v64, v65, v66, v67, v68) -> (*  │

00:00:49 #6041 [Verbose] > │ StreamCons *)                                                                │

00:00:49 #6042 [Verbose] > │                 let v69 : (unit -> UH2) = closure6(v68, v58)                 │

00:00:49 #6043 [Verbose] > │                 UH2_0(v49, v50, v51, v52, v53, v54, v55, v56, v57, v59, v60, │

00:00:49 #6044 [Verbose] > │ v61, v62, v63, v64, v65, v66, v67, v69)                                      │

00:00:49 #6045 [Verbose] > │             | UH0_1 -> (* StreamNil *)                                       │

00:00:49 #6046 [Verbose] > │                 UH2_1                                                        │

00:00:49 #6047 [Verbose] > │         | UH0_1 -> (* StreamNil *)                                           │

00:00:49 #6048 [Verbose] > │             UH2_1                                                            │

00:00:49 #6049 [Verbose] > │     let v77 : UH0 = UH0_1                                                    │

00:00:49 #6050 [Verbose] > │     let v78 : UH0 = method2(v0, v76, v77)                                    │

00:00:49 #6051 [Verbose] > │     v78                                                                      │

00:00:49 #6052 [Verbose] > │ and closure1 (v0 : float) (v1 : (UH0 -> UH1)) : (UH0 -> UH0) =               │

00:00:49 #6053 [Verbose] > │     closure2(v0, v1)                                                         │

00:00:49 #6054 [Verbose] > │ and closure0 () (v0 : float) : ((UH0 -> UH1) -> (UH0 -> UH0)) =              │

00:00:49 #6055 [Verbose] > │     closure1(v0)                                                             │

00:00:49 #6056 [Verbose] > │ and closure9 (v0 : UH3) () : UH3 =                                           │

00:00:49 #6057 [Verbose] > │     v0                                                                       │

00:00:49 #6058 [Verbose] > │ and method3 (v0 : UH0, v1 : UH3, v2 : int32) : struct (UH3 * int32) =        │

00:00:49 #6059 [Verbose] > │     match v0 with                                                            │

00:00:49 #6060 [Verbose] > │     | UH0_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* StreamCons *)   │

00:00:49 #6061 [Verbose] > │         let v13 : int32 = v2 + 1                                             │

00:00:49 #6062 [Verbose] > │         let v14 : UH0 = v12 ()                                               │

00:00:49 #6063 [Verbose] > │         let v15 : (unit -> UH3) = closure9(v1)                               │

00:00:49 #6064 [Verbose] > │         let v16 : UH3 = UH3_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v15) │

00:00:49 #6065 [Verbose] > │         method3(v14, v16, v13)                                               │

00:00:49 #6066 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:49 #6067 [Verbose] > │         struct (v1, v2)                                                      │

00:00:49 #6068 [Verbose] > │ and closure10 (v0 : UH3) () : UH3 =                                          │

00:00:49 #6069 [Verbose] > │     v0                                                                       │

00:00:49 #6070 [Verbose] > │ and method4 (v0 : UH3, v1 : UH3) : UH3 =                                     │

00:00:49 #6071 [Verbose] > │     match v0 with                                                            │

00:00:49 #6072 [Verbose] > │     | UH3_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* StreamCons  │

00:00:49 #6073 [Verbose] > │ *)                                                                           │

00:00:49 #6074 [Verbose] > │         let v13 : UH3 = v12 ()                                               │

00:00:49 #6075 [Verbose] > │         let v14 : (unit -> UH3) = closure10(v1)                              │

00:00:49 #6076 [Verbose] > │         let v15 : UH3 = UH3_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v14) │

00:00:49 #6077 [Verbose] > │         method4(v13, v15)                                                    │

00:00:49 #6078 [Verbose] > │     | UH3_1 -> (* StreamNil *)                                               │

00:00:49 #6079 [Verbose] > │         v1                                                                   │

00:00:49 #6080 [Verbose] > │ and method6 (v0 : int32, v1 : UH0) : US2 =                                   │

00:00:49 #6081 [Verbose] > │     match v1 with                                                            │

00:00:49 #6082 [Verbose] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* StreamCons *)    │

00:00:49 #6083 [Verbose] > │         let v12 : bool = v0 <= 0                                             │

00:00:49 #6084 [Verbose] > │         if v12 then                                                          │

00:00:49 #6085 [Verbose] > │             US2_1(v2, v3, v4, v5, v6, v7, v8, v9, v10)                       │

00:00:49 #6086 [Verbose] > │         else                                                                 │

00:00:49 #6087 [Verbose] > │             let v14 : int32 = v0 - 1                                         │

00:00:49 #6088 [Verbose] > │             let v15 : UH0 = v11 ()                                           │

00:00:49 #6089 [Verbose] > │             method6(v14, v15)                                                │

00:00:49 #6090 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:49 #6091 [Verbose] > │         US2_0                                                                │

00:00:49 #6092 [Verbose] > │ and closure11 (v0 : float, v1 : float, v2 : float, v3 : float, v4 : float,   │

00:00:49 #6093 [Verbose] > │ v5 : float, v6 : float, v7 : float, v8 : float) struct (v9 : float, v10 :    │

00:00:49 #6094 [Verbose] > │ float, v11 : float, v12 : float, v13 : float, v14 : float, v15 : float, v16  │

00:00:49 #6095 [Verbose] > │ : float, v17 : float) : struct (float * float * float) =                     │

00:00:49 #6096 [Verbose] > │     let v18 : float = -1.0 * v2                                              │

00:00:49 #6097 [Verbose] > │     let v19 : float = -1.0 * v3                                              │

00:00:49 #6098 [Verbose] > │     let v20 : float = -1.0 * v4                                              │

00:00:49 #6099 [Verbose] > │     let v21 : float = v11 + v18                                              │

00:00:49 #6100 [Verbose] > │     let v22 : float = v12 + v19                                              │

00:00:49 #6101 [Verbose] > │     let v23 : float = v13 + v20                                              │

00:00:49 #6102 [Verbose] > │     let v24 : float = v21 * v21                                              │

00:00:49 #6103 [Verbose] > │     let v25 : float = v22 * v22                                              │

00:00:49 #6104 [Verbose] > │     let v26 : float = v24 + v25                                              │

00:00:49 #6105 [Verbose] > │     let v27 : float = v23 * v23                                              │

00:00:49 #6106 [Verbose] > │     let v28 : float = v26 + v27                                              │

00:00:49 #6107 [Verbose] > │     let v29 : float = sqrt v28                                               │

00:00:49 #6108 [Verbose] > │     let v30 : bool = v29 >= 0.06                                             │

00:00:49 #6109 [Verbose] > │     let v33 : float =                                                        │

00:00:49 #6110 [Verbose] > │         if v30 then                                                          │

00:00:49 #6111 [Verbose] > │             0.0                                                              │

00:00:49 #6112 [Verbose] > │         else                                                                 │

00:00:49 #6113 [Verbose] > │             let v31 : float = v29 - 0.06                                     │

00:00:49 #6114 [Verbose] > │             let v32 : float = -30.0 * v31                                    │

00:00:49 #6115 [Verbose] > │             v32                                                              │

00:00:49 #6116 [Verbose] > │     let v34 : float = v33 * v21                                              │

00:00:49 #6117 [Verbose] > │     let v35 : float = v33 * v22                                              │

00:00:49 #6118 [Verbose] > │     let v36 : float = v33 * v23                                              │

00:00:49 #6119 [Verbose] > │     let v37 : float = v34 / v29                                              │

00:00:49 #6120 [Verbose] > │     let v38 : float = v35 / v29                                              │

00:00:49 #6121 [Verbose] > │     let v39 : float = v36 / v29                                              │

00:00:49 #6122 [Verbose] > │     struct (v37, v38, v39)                                                   │

00:00:49 #6123 [Verbose] > │ and closure12 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4  │

00:00:49 #6124 [Verbose] > │ : float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *   │

00:00:49 #6125 [Verbose] > │ float * float) =                                                             │

00:00:49 #6126 [Verbose] > │     struct (0.0, 0.0, 0.0)                                                   │

00:00:49 #6127 [Verbose] > │ and closure13 (v0 : UH1) () : UH1 =                                          │

00:00:49 #6128 [Verbose] > │     v0                                                                       │

00:00:49 #6129 [Verbose] > │ and method5 (v0 : UH0, v1 : UH3, v2 : UH1) : UH1 =                           │

00:00:49 #6130 [Verbose] > │     match v1 with                                                            │

00:00:49 #6131 [Verbose] > │     | UH3_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons │

00:00:49 #6132 [Verbose] > │ *)                                                                           │

00:00:49 #6133 [Verbose] > │         let v14 : UH3 = v13 ()                                               │

00:00:49 #6134 [Verbose] > │         let v15 : UH1 = method5(v0, v14, v2)                                 │

00:00:49 #6135 [Verbose] > │         let v16 : bool = v3 = 0                                              │

00:00:49 #6136 [Verbose] > │         let v52 : US1 =                                                      │

00:00:49 #6137 [Verbose] > │             if v16 then                                                      │

00:00:49 #6138 [Verbose] > │                 let v17 : int32 = 1                                          │

00:00:49 #6139 [Verbose] > │                 let v18 : US2 = method6(v17, v0)                             │

00:00:49 #6140 [Verbose] > │                 match v18 with                                               │

00:00:49 #6141 [Verbose] > │                 | US2_0 -> (* None *)                                        │

00:00:49 #6142 [Verbose] > │                     US1_0                                                    │

00:00:49 #6143 [Verbose] > │                 | US2_1(v19, v20, v21, v22, v23, v24, v25, v26, v27) -> (*   │

00:00:49 #6144 [Verbose] > │ Some *)                                                                      │

00:00:49 #6145 [Verbose] > │                     let v28 : (struct (float * float * float * float * float │

00:00:49 #6146 [Verbose] > │ * float * float * float * float) -> struct (float * float * float)) =        │

00:00:49 #6147 [Verbose] > │ closure11(v19, v20, v21, v22, v23, v24, v25, v26, v27)                       │

00:00:49 #6148 [Verbose] > │                     US1_1(v28)                                               │

00:00:49 #6149 [Verbose] > │             else                                                             │

00:00:49 #6150 [Verbose] > │                 let v33 : bool = v3 = 1                                      │

00:00:49 #6151 [Verbose] > │                 if v33 then                                                  │

00:00:49 #6152 [Verbose] > │                     let v34 : int32 = 0                                      │

00:00:49 #6153 [Verbose] > │                     let v35 : US2 = method6(v34, v0)                         │

00:00:49 #6154 [Verbose] > │                     match v35 with                                           │

00:00:49 #6155 [Verbose] > │                     | US2_0 -> (* None *)                                    │

00:00:49 #6156 [Verbose] > │                         US1_0                                                │

00:00:49 #6157 [Verbose] > │                     | US2_1(v36, v37, v38, v39, v40, v41, v42, v43, v44) ->  │

00:00:49 #6158 [Verbose] > │ (* Some *)                                                                   │

00:00:49 #6159 [Verbose] > │                         let v45 : (struct (float * float * float * float *   │

00:00:49 #6160 [Verbose] > │ float * float * float * float * float) -> struct (float * float * float)) =  │

00:00:49 #6161 [Verbose] > │ closure11(v36, v37, v38, v39, v40, v41, v42, v43, v44)                       │

00:00:49 #6162 [Verbose] > │                         US1_1(v45)                                           │

00:00:49 #6163 [Verbose] > │                 else                                                         │

00:00:49 #6164 [Verbose] > │                     US1_0                                                    │

00:00:49 #6165 [Verbose] > │         let v56 : (struct (float * float * float * float * float * float *   │

00:00:49 #6166 [Verbose] > │ float * float * float) -> struct (float * float * float)) =                  │

00:00:49 #6167 [Verbose] > │             match v52 with                                                   │

00:00:49 #6168 [Verbose] > │             | US1_0 -> (* None *)                                            │

00:00:49 #6169 [Verbose] > │                 closure12()                                                  │

00:00:49 #6170 [Verbose] > │             | US1_1(v53) -> (* Some *)                                       │

00:00:49 #6171 [Verbose] > │                 v53                                                          │

00:00:49 #6172 [Verbose] > │         let struct (v57 : float, v58 : float, v59 : float) = v56 struct (v4, │

00:00:49 #6173 [Verbose] > │ v5, v6, v7, v8, v9, v10, v11, v12)                                           │

00:00:49 #6174 [Verbose] > │         let v60 : float = v57 / v5                                           │

00:00:49 #6175 [Verbose] > │         let v61 : float = v58 / v5                                           │

00:00:49 #6176 [Verbose] > │         let v62 : float = v59 / v5                                           │

00:00:49 #6177 [Verbose] > │         let v63 : (unit -> UH1) = closure13(v15)                             │

00:00:49 #6178 [Verbose] > │         UH1_0(0.0, 0.0, v10, v11, v12, 1.0, v60, v61, v62, v63)              │

00:00:49 #6179 [Verbose] > │     | UH3_1 -> (* StreamNil *)                                               │

00:00:49 #6180 [Verbose] > │         v2                                                                   │

00:00:49 #6181 [Verbose] > │ and closure8 () (v0 : UH0) : UH1 =                                           │

00:00:49 #6182 [Verbose] > │     let v1 : UH3 = UH3_1                                                     │

00:00:49 #6183 [Verbose] > │     let v2 : int32 = 0                                                       │

00:00:49 #6184 [Verbose] > │     let struct (v3 : UH3, v4 : int32) = method3(v0, v1, v2)                  │

00:00:49 #6185 [Verbose] > │     let v5 : UH3 = UH3_1                                                     │

00:00:49 #6186 [Verbose] > │     let v6 : UH3 = method4(v3, v5)                                           │

00:00:49 #6187 [Verbose] > │     let v7 : UH1 = UH1_1                                                     │

00:00:49 #6188 [Verbose] > │     let v8 : UH1 = method5(v0, v6, v7)                                       │

00:00:49 #6189 [Verbose] > │     v8                                                                       │

00:00:49 #6190 [Verbose] > │ and method8 (v0 : int32, v1 : int32) : UH5 =                                 │

00:00:49 #6191 [Verbose] > │     let v2 : bool = v1 < v0                                                  │

00:00:49 #6192 [Verbose] > │     if v2 then                                                               │

00:00:49 #6193 [Verbose] > │         let v3 : int32 = v1 + 1                                              │

00:00:49 #6194 [Verbose] > │         let v4 : UH5 = method8(v0, v3)                                       │

00:00:49 #6195 [Verbose] > │         UH5_0(v1, v4)                                                        │

00:00:49 #6196 [Verbose] > │     else                                                                     │

00:00:49 #6197 [Verbose] > │         UH5_1                                                                │

00:00:49 #6198 [Verbose] > │ and closure15 () () : UH0 =                                                  │

00:00:49 #6199 [Verbose] > │     UH0_1                                                                    │

00:00:49 #6200 [Verbose] > │ and closure14 () () : UH0 =                                                  │

00:00:49 #6201 [Verbose] > │     let v0 : (unit -> UH0) = closure15()                                     │

00:00:49 #6202 [Verbose] > │     UH0_0(0.0, 0.16, 1.0, 0.02, 0.0, 0.0, 0.0, 0.0, 0.0, v0)                 │

00:00:49 #6203 [Verbose] > │ and method9 (v0 : (UH0 -> UH0), v1 : UH5, v2 : UH0) : UH0 =                  │

00:00:49 #6204 [Verbose] > │     match v1 with                                                            │

00:00:49 #6205 [Verbose] > │     | UH5_0(v3, v4) -> (* Cons *)                                            │

00:00:49 #6206 [Verbose] > │         let v5 : (unit -> UH0) = closure4(v2)                                │

00:00:49 #6207 [Verbose] > │         let v6 : (unit -> UH0) = method1(v2, v5)                             │

00:00:49 #6208 [Verbose] > │         let v7 : UH0 = v6 ()                                                 │

00:00:49 #6209 [Verbose] > │         let v8 : UH0 = v0 v7                                                 │

00:00:49 #6210 [Verbose] > │         method9(v0, v4, v8)                                                  │

00:00:49 #6211 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:00:49 #6212 [Verbose] > │         v2                                                                   │

00:00:49 #6213 [Verbose] > │ and method10 (v0 : UH4, v1 : UH4) : UH4 =                                    │

00:00:49 #6214 [Verbose] > │     match v0 with                                                            │

00:00:49 #6215 [Verbose] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

00:00:49 #6216 [Verbose] > │         let v4 : UH4 = UH4_0(v2, v1)                                         │

00:00:49 #6217 [Verbose] > │         method10(v3, v4)                                                     │

00:00:49 #6218 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:00:49 #6219 [Verbose] > │         v1                                                                   │

00:00:49 #6220 [Verbose] > │ and method7 (v0 : (UH0 -> UH0), v1 : UH4, v2 : int32) : UH4 =                │

00:00:49 #6221 [Verbose] > │     let v3 : int32 = 0                                                       │

00:00:49 #6222 [Verbose] > │     let v4 : UH5 = method8(v2, v3)                                           │

00:00:49 #6223 [Verbose] > │     let v5 : float = 0.0                                                     │

00:00:49 #6224 [Verbose] > │     let v6 : float = 0.16                                                    │

00:00:49 #6225 [Verbose] > │     let v7 : float = 0.0                                                     │

00:00:49 #6226 [Verbose] > │     let v8 : float = 0.0                                                     │

00:00:49 #6227 [Verbose] > │     let v9 : float = 0.0                                                     │

00:00:49 #6228 [Verbose] > │     let v10 : float = 0.0                                                    │

00:00:49 #6229 [Verbose] > │     let v11 : float = 0.2                                                    │

00:00:49 #6230 [Verbose] > │     let v12 : float = 0.0                                                    │

00:00:49 #6231 [Verbose] > │     let v13 : float = 0.0                                                    │

00:00:49 #6232 [Verbose] > │     let v14 : (unit -> UH0) = closure14()                                    │

00:00:49 #6233 [Verbose] > │     let v15 : UH0 = UH0_0(v5, v6, v7, v8, v9, v10, v11, v12, v13, v14)       │

00:00:49 #6234 [Verbose] > │     let v16 : UH0 = method9(v0, v4, v15)                                     │

00:00:49 #6235 [Verbose] > │     let v17 : int32 = 0                                                      │

00:00:49 #6236 [Verbose] > │     let v18 : US2 = method6(v17, v16)                                        │

00:00:49 #6237 [Verbose] > │     let v30 : bool =                                                         │

00:00:49 #6238 [Verbose] > │         match v18 with                                                       │

00:00:49 #6239 [Verbose] > │         | US2_0 -> (* None *)                                                │

00:00:49 #6240 [Verbose] > │             false                                                            │

00:00:49 #6241 [Verbose] > │         | US2_1(v19, v20, v21, v22, v23, v24, v25, v26, v27) -> (* Some *)   │

00:00:49 #6242 [Verbose] > │             let v28 : bool = v24 <= 10.0                                     │

00:00:49 #6243 [Verbose] > │             v28                                                              │

00:00:49 #6244 [Verbose] > │     if v30 then                                                              │

00:00:49 #6245 [Verbose] > │         let v31 : UH4 = UH4_0(v16, v1)                                       │

00:00:49 #6246 [Verbose] > │         let v32 : int32 = v2 + 1                                             │

00:00:49 #6247 [Verbose] > │         method7(v0, v31, v32)                                                │

00:00:49 #6248 [Verbose] > │     else                                                                     │

00:00:49 #6249 [Verbose] > │         let v34 : UH4 = UH4_1                                                │

00:00:49 #6250 [Verbose] > │         method10(v1, v34)                                                    │

00:00:49 #6251 [Verbose] > │ and closure16 (v0 : UH7) () : UH7 =                                          │

00:00:49 #6252 [Verbose] > │     v0                                                                       │

00:00:49 #6253 [Verbose] > │ and method12 (v0 : UH0, v1 : UH7) : UH7 =                                    │

00:00:49 #6254 [Verbose] > │     match v0 with                                                            │

00:00:49 #6255 [Verbose] > │     | UH0_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* StreamCons *)    │

00:00:49 #6256 [Verbose] > │         let v12 : UH0 = v11 ()                                               │

00:00:49 #6257 [Verbose] > │         let v13 : UH7 = method12(v12, v1)                                    │

00:00:49 #6258 [Verbose] > │         let v14 : float = v8 * v8                                            │

00:00:49 #6259 [Verbose] > │         let v15 : float = v9 * v9                                            │

00:00:49 #6260 [Verbose] > │         let v16 : float = v14 + v15                                          │

00:00:49 #6261 [Verbose] > │         let v17 : float = v10 * v10                                          │

00:00:49 #6262 [Verbose] > │         let v18 : float = v16 + v17                                          │

00:00:49 #6263 [Verbose] > │         let v19 : float = sqrt v18                                           │

00:00:49 #6264 [Verbose] > │         let v20 : float = 0.5 * v3                                           │

00:00:49 #6265 [Verbose] > │         let v21 : float = v19 ** 2.0                                         │

00:00:49 #6266 [Verbose] > │         let v22 : float = v20 * v21                                          │

00:00:49 #6267 [Verbose] > │         let v23 : (unit -> UH7) = closure16(v13)                             │

00:00:49 #6268 [Verbose] > │         UH7_0(v22, v23)                                                      │

00:00:49 #6269 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:49 #6270 [Verbose] > │         v1                                                                   │

00:00:49 #6271 [Verbose] > │ and method13 (v0 : UH7, v1 : float) : float =                                │

00:00:49 #6272 [Verbose] > │     match v0 with                                                            │

00:00:49 #6273 [Verbose] > │     | UH7_0(v2, v3) -> (* StreamCons *)                                      │

00:00:49 #6274 [Verbose] > │         let v4 : float = v1 + v2                                             │

00:00:49 #6275 [Verbose] > │         let v5 : UH7 = v3 ()                                                 │

00:00:49 #6276 [Verbose] > │         method13(v5, v4)                                                     │

00:00:49 #6277 [Verbose] > │     | UH7_1 -> (* StreamNil *)                                               │

00:00:49 #6278 [Verbose] > │         v1                                                                   │

00:00:49 #6279 [Verbose] > │ and method11 (v0 : UH4, v1 : UH6) : UH6 =                                    │

00:00:49 #6280 [Verbose] > │     match v0 with                                                            │

00:00:49 #6281 [Verbose] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

00:00:49 #6282 [Verbose] > │         let v4 : UH6 = method11(v3, v1)                                      │

00:00:49 #6283 [Verbose] > │         let v5 : int32 = 0                                                   │

00:00:49 #6284 [Verbose] > │         let v6 : US2 = method6(v5, v2)                                       │

00:00:49 #6285 [Verbose] > │         let v23 : US3 =                                                      │

00:00:49 #6286 [Verbose] > │             match v6 with                                                    │

00:00:49 #6287 [Verbose] > │             | US2_0 -> (* None *)                                            │

00:00:49 #6288 [Verbose] > │                 US3_0                                                        │

00:00:49 #6289 [Verbose] > │             | US2_1(v7, v8, v9, v10, v11, v12, v13, v14, v15) -> (* Some *)  │

00:00:49 #6290 [Verbose] > │                 let v16 : UH7 = UH7_1                                        │

00:00:49 #6291 [Verbose] > │                 let v17 : UH7 = method12(v2, v16)                            │

00:00:49 #6292 [Verbose] > │                 let v18 : float = 0.0                                        │

00:00:49 #6293 [Verbose] > │                 let v19 : float = method13(v17, v18)                         │

00:00:49 #6294 [Verbose] > │                 US3_1(v12, v19)                                              │

00:00:49 #6295 [Verbose] > │         UH6_0(v23, v4)                                                       │

00:00:49 #6296 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:00:49 #6297 [Verbose] > │         v1                                                                   │

00:00:49 #6298 [Verbose] > │ and method14 (v0 : UH6, v1 : UH8) : UH8 =                                    │

00:00:49 #6299 [Verbose] > │     match v0 with                                                            │

00:00:49 #6300 [Verbose] > │     | UH6_0(v2, v3) -> (* Cons *)                                            │

00:00:49 #6301 [Verbose] > │         let v4 : UH8 = method14(v3, v1)                                      │

00:00:49 #6302 [Verbose] > │         match v2 with                                                        │

00:00:49 #6303 [Verbose] > │         | US3_0 -> (* None *)                                                │

00:00:49 #6304 [Verbose] > │             v4                                                               │

00:00:49 #6305 [Verbose] > │         | US3_1(v5, v6) -> (* Some *)                                        │

00:00:49 #6306 [Verbose] > │             UH8_0(v5, v6, v4)                                                │

00:00:49 #6307 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:00:49 #6308 [Verbose] > │         v1                                                                   │

00:00:49 #6309 [Verbose] > │ and method15 (v0 : UH8, v1 : UH9, v2 : UH9) : struct (UH9 * UH9) =           │

00:00:49 #6310 [Verbose] > │     match v0 with                                                            │

00:00:49 #6311 [Verbose] > │     | UH8_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:49 #6312 [Verbose] > │         let v6 : UH9 = UH9_0(v3, v1)                                         │

00:00:49 #6313 [Verbose] > │         let v7 : UH9 = UH9_0(v4, v2)                                         │

00:00:49 #6314 [Verbose] > │         method15(v5, v6, v7)                                                 │

00:00:49 #6315 [Verbose] > │     | UH8_1 -> (* Nil *)                                                     │

00:00:49 #6316 [Verbose] > │         struct (v1, v2)                                                      │

00:00:49 #6317 [Verbose] > │ and method16 (v0 : UH9, v1 : UH9) : UH9 =                                    │

00:00:49 #6318 [Verbose] > │     match v0 with                                                            │

00:00:49 #6319 [Verbose] > │     | UH9_0(v2, v3) -> (* Cons *)                                            │

00:00:49 #6320 [Verbose] > │         let v4 : UH9 = UH9_0(v2, v1)                                         │

00:00:49 #6321 [Verbose] > │         method16(v3, v4)                                                     │

00:00:49 #6322 [Verbose] > │     | UH9_1 -> (* Nil *)                                                     │

00:00:49 #6323 [Verbose] > │         v1                                                                   │

00:00:49 #6324 [Verbose] > │ and closure20 (v0 : (unit -> UH1), v1 : (unit -> UH1)) () : UH1 =            │

00:00:49 #6325 [Verbose] > │     let v2 : UH1 = v1 ()                                                     │

00:00:49 #6326 [Verbose] > │     let v3 : UH1 = v0 ()                                                     │

00:00:49 #6327 [Verbose] > │     match v2 with                                                            │

00:00:49 #6328 [Verbose] > │     | UH1_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons *)  │

00:00:49 #6329 [Verbose] > │         match v3 with                                                        │

00:00:49 #6330 [Verbose] > │         | UH1_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (*      │

00:00:49 #6331 [Verbose] > │ StreamCons *)                                                                │

00:00:49 #6332 [Verbose] > │             let v24 : float = v4 + v14                                       │

00:00:49 #6333 [Verbose] > │             let v25 : float = v5 + v15                                       │

00:00:49 #6334 [Verbose] > │             let v26 : float = v9 + v19                                       │

00:00:49 #6335 [Verbose] > │             let v27 : float = v6 + v16                                       │

00:00:49 #6336 [Verbose] > │             let v28 : float = v7 + v17                                       │

00:00:49 #6337 [Verbose] > │             let v29 : float = v8 + v18                                       │

00:00:49 #6338 [Verbose] > │             let v30 : float = v10 + v20                                      │

00:00:49 #6339 [Verbose] > │             let v31 : float = v11 + v21                                      │

00:00:49 #6340 [Verbose] > │             let v32 : float = v12 + v22                                      │

00:00:49 #6341 [Verbose] > │             let v33 : (unit -> UH1) = closure20(v23, v13)                    │

00:00:49 #6342 [Verbose] > │             UH1_0(v24, v25, v27, v28, v29, v26, v30, v31, v32, v33)          │

00:00:49 #6343 [Verbose] > │         | UH1_1 -> (* StreamNil *)                                           │

00:00:49 #6344 [Verbose] > │             UH1_1                                                            │

00:00:49 #6345 [Verbose] > │     | UH1_1 -> (* StreamNil *)                                               │

00:00:49 #6346 [Verbose] > │         UH1_1                                                                │

00:00:49 #6347 [Verbose] > │ and closure19 (v0 : float, v1 : (UH0 -> UH1)) (v2 : UH0) : UH0 =             │

00:00:49 #6348 [Verbose] > │     let v3 : UH1 = v1 v2                                                     │

00:00:49 #6349 [Verbose] > │     let v4 : float = v0 / 2.0                                                │

00:00:49 #6350 [Verbose] > │     let v46 : UH0 =                                                          │

00:00:49 #6351 [Verbose] > │         match v3 with                                                        │

00:00:49 #6352 [Verbose] > │         | UH1_0(v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) -> (*           │

00:00:49 #6353 [Verbose] > │ StreamCons *)                                                                │

00:00:49 #6354 [Verbose] > │             match v2 with                                                    │

00:00:49 #6355 [Verbose] > │             | UH0_0(v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) -> (*  │

00:00:49 #6356 [Verbose] > │ StreamCons *)                                                                │

00:00:49 #6357 [Verbose] > │                 let v25 : float = v10 * v4                                   │

00:00:49 #6358 [Verbose] > │                 let v26 : float = v20 + v25                                  │

00:00:49 #6359 [Verbose] > │                 let v27 : float = v4 * v7                                    │

00:00:49 #6360 [Verbose] > │                 let v28 : float = v4 * v8                                    │

00:00:49 #6361 [Verbose] > │                 let v29 : float = v4 * v9                                    │

00:00:49 #6362 [Verbose] > │                 let v30 : float = v17 + v27                                  │

00:00:49 #6363 [Verbose] > │                 let v31 : float = v18 + v28                                  │

00:00:49 #6364 [Verbose] > │                 let v32 : float = v19 + v29                                  │

00:00:49 #6365 [Verbose] > │                 let v33 : float = v4 * v11                                   │

00:00:49 #6366 [Verbose] > │                 let v34 : float = v4 * v12                                   │

00:00:49 #6367 [Verbose] > │                 let v35 : float = v4 * v13                                   │

00:00:49 #6368 [Verbose] > │                 let v36 : float = v21 + v33                                  │

00:00:49 #6369 [Verbose] > │                 let v37 : float = v22 + v34                                  │

00:00:49 #6370 [Verbose] > │                 let v38 : float = v23 + v35                                  │

00:00:49 #6371 [Verbose] > │                 let v39 : (unit -> UH0) = closure3(v4, v24, v14)             │

00:00:49 #6372 [Verbose] > │                 UH0_0(v15, v16, v30, v31, v32, v26, v36, v37, v38, v39)      │

00:00:49 #6373 [Verbose] > │             | UH0_1 -> (* StreamNil *)                                       │

00:00:49 #6374 [Verbose] > │                 UH0_1                                                        │

00:00:49 #6375 [Verbose] > │         | UH1_1 -> (* StreamNil *)                                           │

00:00:49 #6376 [Verbose] > │             UH0_1                                                            │

00:00:49 #6377 [Verbose] > │     let v47 : (unit -> UH0) = closure4(v46)                                  │

00:00:49 #6378 [Verbose] > │     let v48 : (unit -> UH0) = method1(v46, v47)                              │

00:00:49 #6379 [Verbose] > │     let v49 : UH0 = v48 ()                                                   │

00:00:49 #6380 [Verbose] > │     let v50 : UH1 = v1 v49                                                   │

00:00:49 #6381 [Verbose] > │     let v92 : UH0 =                                                          │

00:00:49 #6382 [Verbose] > │         match v50 with                                                       │

00:00:49 #6383 [Verbose] > │         | UH1_0(v51, v52, v53, v54, v55, v56, v57, v58, v59, v60) -> (*      │

00:00:49 #6384 [Verbose] > │ StreamCons *)                                                                │

00:00:49 #6385 [Verbose] > │             match v2 with                                                    │

00:00:49 #6386 [Verbose] > │             | UH0_0(v61, v62, v63, v64, v65, v66, v67, v68, v69, v70) -> (*  │

00:00:49 #6387 [Verbose] > │ StreamCons *)                                                                │

00:00:49 #6388 [Verbose] > │                 let v71 : float = v56 * v4                                   │

00:00:49 #6389 [Verbose] > │                 let v72 : float = v66 + v71                                  │

00:00:49 #6390 [Verbose] > │                 let v73 : float = v4 * v53                                   │

00:00:49 #6391 [Verbose] > │                 let v74 : float = v4 * v54                                   │

00:00:49 #6392 [Verbose] > │                 let v75 : float = v4 * v55                                   │

00:00:49 #6393 [Verbose] > │                 let v76 : float = v63 + v73                                  │

00:00:49 #6394 [Verbose] > │                 let v77 : float = v64 + v74                                  │

00:00:49 #6395 [Verbose] > │                 let v78 : float = v65 + v75                                  │

00:00:49 #6396 [Verbose] > │                 let v79 : float = v4 * v57                                   │

00:00:49 #6397 [Verbose] > │                 let v80 : float = v4 * v58                                   │

00:00:49 #6398 [Verbose] > │                 let v81 : float = v4 * v59                                   │

00:00:49 #6399 [Verbose] > │                 let v82 : float = v67 + v79                                  │

00:00:49 #6400 [Verbose] > │                 let v83 : float = v68 + v80                                  │

00:00:49 #6401 [Verbose] > │                 let v84 : float = v69 + v81                                  │

00:00:50 #6402 [Verbose] > │                 let v85 : (unit -> UH0) = closure3(v4, v70, v60)             │

00:00:50 #6403 [Verbose] > │                 UH0_0(v61, v62, v76, v77, v78, v72, v82, v83, v84, v85)      │

00:00:50 #6404 [Verbose] > │             | UH0_1 -> (* StreamNil *)                                       │

00:00:50 #6405 [Verbose] > │                 UH0_1                                                        │

00:00:50 #6406 [Verbose] > │         | UH1_1 -> (* StreamNil *)                                           │

00:00:50 #6407 [Verbose] > │             UH0_1                                                            │

00:00:50 #6408 [Verbose] > │     let v93 : (unit -> UH0) = closure4(v92)                                  │

00:00:50 #6409 [Verbose] > │     let v94 : (unit -> UH0) = method1(v92, v93)                              │

00:00:50 #6410 [Verbose] > │     let v95 : UH0 = v94 ()                                                   │

00:00:50 #6411 [Verbose] > │     let v96 : UH1 = v1 v95                                                   │

00:00:50 #6412 [Verbose] > │     let v138 : UH0 =                                                         │

00:00:50 #6413 [Verbose] > │         match v96 with                                                       │

00:00:50 #6414 [Verbose] > │         | UH1_0(v97, v98, v99, v100, v101, v102, v103, v104, v105, v106) ->  │

00:00:50 #6415 [Verbose] > │ (* StreamCons *)                                                             │

00:00:50 #6416 [Verbose] > │             match v2 with                                                    │

00:00:50 #6417 [Verbose] > │             | UH0_0(v107, v108, v109, v110, v111, v112, v113, v114, v115,    │

00:00:50 #6418 [Verbose] > │ v116) -> (* StreamCons *)                                                    │

00:00:50 #6419 [Verbose] > │                 let v117 : float = v102 * v0                                 │

00:00:50 #6420 [Verbose] > │                 let v118 : float = v112 + v117                               │

00:00:50 #6421 [Verbose] > │                 let v119 : float = v0 * v99                                  │

00:00:50 #6422 [Verbose] > │                 let v120 : float = v0 * v100                                 │

00:00:50 #6423 [Verbose] > │                 let v121 : float = v0 * v101                                 │

00:00:50 #6424 [Verbose] > │                 let v122 : float = v109 + v119                               │

00:00:50 #6425 [Verbose] > │                 let v123 : float = v110 + v120                               │

00:00:50 #6426 [Verbose] > │                 let v124 : float = v111 + v121                               │

00:00:50 #6427 [Verbose] > │                 let v125 : float = v0 * v103                                 │

00:00:50 #6428 [Verbose] > │                 let v126 : float = v0 * v104                                 │

00:00:50 #6429 [Verbose] > │                 let v127 : float = v0 * v105                                 │

00:00:50 #6430 [Verbose] > │                 let v128 : float = v113 + v125                               │

00:00:50 #6431 [Verbose] > │                 let v129 : float = v114 + v126                               │

00:00:50 #6432 [Verbose] > │                 let v130 : float = v115 + v127                               │

00:00:50 #6433 [Verbose] > │                 let v131 : (unit -> UH0) = closure3(v0, v116, v106)          │

00:00:50 #6434 [Verbose] > │                 UH0_0(v107, v108, v122, v123, v124, v118, v128, v129, v130,  │

00:00:50 #6435 [Verbose] > │ v131)                                                                        │

00:00:50 #6436 [Verbose] > │             | UH0_1 -> (* StreamNil *)                                       │

00:00:50 #6437 [Verbose] > │                 UH0_1                                                        │

00:00:50 #6438 [Verbose] > │         | UH1_1 -> (* StreamNil *)                                           │

00:00:50 #6439 [Verbose] > │             UH0_1                                                            │

00:00:50 #6440 [Verbose] > │     let v139 : (unit -> UH0) = closure4(v138)                                │

00:00:50 #6441 [Verbose] > │     let v140 : (unit -> UH0) = method1(v138, v139)                           │

00:00:50 #6442 [Verbose] > │     let v141 : UH0 = v140 ()                                                 │

00:00:50 #6443 [Verbose] > │     let v142 : UH1 = v1 v141                                                 │

00:00:50 #6444 [Verbose] > │     let v143 : float = v0 / 6.0                                              │

00:00:50 #6445 [Verbose] > │     let v180 : UH1 =                                                         │

00:00:50 #6446 [Verbose] > │         match v3 with                                                        │

00:00:50 #6447 [Verbose] > │         | UH1_0(v144, v145, v146, v147, v148, v149, v150, v151, v152, v153)  │

00:00:50 #6448 [Verbose] > │ -> (* StreamCons *)                                                          │

00:00:50 #6449 [Verbose] > │             match v50 with                                                   │

00:00:50 #6450 [Verbose] > │             | UH1_0(v154, v155, v156, v157, v158, v159, v160, v161, v162,    │

00:00:50 #6451 [Verbose] > │ v163) -> (* StreamCons *)                                                    │

00:00:50 #6452 [Verbose] > │                 let v164 : float = v144 + v154                               │

00:00:50 #6453 [Verbose] > │                 let v165 : float = v145 + v155                               │

00:00:50 #6454 [Verbose] > │                 let v166 : float = v149 + v159                               │

00:00:50 #6455 [Verbose] > │                 let v167 : float = v146 + v156                               │

00:00:50 #6456 [Verbose] > │                 let v168 : float = v147 + v157                               │

00:00:50 #6457 [Verbose] > │                 let v169 : float = v148 + v158                               │

00:00:50 #6458 [Verbose] > │                 let v170 : float = v150 + v160                               │

00:00:50 #6459 [Verbose] > │                 let v171 : float = v151 + v161                               │

00:00:50 #6460 [Verbose] > │                 let v172 : float = v152 + v162                               │

00:00:50 #6461 [Verbose] > │                 let v173 : (unit -> UH1) = closure20(v163, v153)             │

00:00:50 #6462 [Verbose] > │                 UH1_0(v164, v165, v167, v168, v169, v166, v170, v171, v172,  │

00:00:50 #6463 [Verbose] > │ v173)                                                                        │

00:00:50 #6464 [Verbose] > │             | UH1_1 -> (* StreamNil *)                                       │

00:00:50 #6465 [Verbose] > │                 UH1_1                                                        │

00:00:50 #6466 [Verbose] > │         | UH1_1 -> (* StreamNil *)                                           │

00:00:50 #6467 [Verbose] > │             UH1_1                                                            │

00:00:50 #6468 [Verbose] > │     let v217 : UH1 =                                                         │

00:00:50 #6469 [Verbose] > │         match v180 with                                                      │

00:00:50 #6470 [Verbose] > │         | UH1_0(v181, v182, v183, v184, v185, v186, v187, v188, v189, v190)  │

00:00:50 #6471 [Verbose] > │ -> (* StreamCons *)                                                          │

00:00:50 #6472 [Verbose] > │             match v50 with                                                   │

00:00:50 #6473 [Verbose] > │             | UH1_0(v191, v192, v193, v194, v195, v196, v197, v198, v199,    │

00:00:50 #6474 [Verbose] > │ v200) -> (* StreamCons *)                                                    │

00:00:50 #6475 [Verbose] > │                 let v201 : float = v181 + v191                               │

00:00:50 #6476 [Verbose] > │                 let v202 : float = v182 + v192                               │

00:00:50 #6477 [Verbose] > │                 let v203 : float = v186 + v196                               │

00:00:50 #6478 [Verbose] > │                 let v204 : float = v183 + v193                               │

00:00:50 #6479 [Verbose] > │                 let v205 : float = v184 + v194                               │

00:00:50 #6480 [Verbose] > │                 let v206 : float = v185 + v195                               │

00:00:50 #6481 [Verbose] > │                 let v207 : float = v187 + v197                               │

00:00:50 #6482 [Verbose] > │                 let v208 : float = v188 + v198                               │

00:00:50 #6483 [Verbose] > │                 let v209 : float = v189 + v199                               │

00:00:50 #6484 [Verbose] > │                 let v210 : (unit -> UH1) = closure20(v200, v190)             │

00:00:50 #6485 [Verbose] > │                 UH1_0(v201, v202, v204, v205, v206, v203, v207, v208, v209,  │

00:00:50 #6486 [Verbose] > │ v210)                                                                        │

00:00:50 #6487 [Verbose] > │             | UH1_1 -> (* StreamNil *)                                       │

00:00:50 #6488 [Verbose] > │                 UH1_1                                                        │

00:00:50 #6489 [Verbose] > │         | UH1_1 -> (* StreamNil *)                                           │

00:00:50 #6490 [Verbose] > │             UH1_1                                                            │

00:00:50 #6491 [Verbose] > │     let v254 : UH1 =                                                         │

00:00:50 #6492 [Verbose] > │         match v217 with                                                      │

00:00:50 #6493 [Verbose] > │         | UH1_0(v218, v219, v220, v221, v222, v223, v224, v225, v226, v227)  │

00:00:50 #6494 [Verbose] > │ -> (* StreamCons *)                                                          │

00:00:50 #6495 [Verbose] > │             match v96 with                                                   │

00:00:50 #6496 [Verbose] > │             | UH1_0(v228, v229, v230, v231, v232, v233, v234, v235, v236,    │

00:00:50 #6497 [Verbose] > │ v237) -> (* StreamCons *)                                                    │

00:00:50 #6498 [Verbose] > │                 let v238 : float = v218 + v228                               │

00:00:50 #6499 [Verbose] > │                 let v239 : float = v219 + v229                               │

00:00:50 #6500 [Verbose] > │                 let v240 : float = v223 + v233                               │

00:00:50 #6501 [Verbose] > │                 let v241 : float = v220 + v230                               │

00:00:50 #6502 [Verbose] > │                 let v242 : float = v221 + v231                               │

00:00:50 #6503 [Verbose] > │                 let v243 : float = v222 + v232                               │

00:00:50 #6504 [Verbose] > │                 let v244 : float = v224 + v234                               │

00:00:50 #6505 [Verbose] > │                 let v245 : float = v225 + v235                               │

00:00:50 #6506 [Verbose] > │                 let v246 : float = v226 + v236                               │

00:00:50 #6507 [Verbose] > │                 let v247 : (unit -> UH1) = closure20(v237, v227)             │

00:00:50 #6508 [Verbose] > │                 UH1_0(v238, v239, v241, v242, v243, v240, v244, v245, v246,  │

00:00:50 #6509 [Verbose] > │ v247)                                                                        │

00:00:50 #6510 [Verbose] > │             | UH1_1 -> (* StreamNil *)                                       │

00:00:50 #6511 [Verbose] > │                 UH1_1                                                        │

00:00:50 #6512 [Verbose] > │         | UH1_1 -> (* StreamNil *)                                           │

00:00:50 #6513 [Verbose] > │             UH1_1                                                            │

00:00:50 #6514 [Verbose] > │     let v291 : UH1 =                                                         │

00:00:50 #6515 [Verbose] > │         match v254 with                                                      │

00:00:50 #6516 [Verbose] > │         | UH1_0(v255, v256, v257, v258, v259, v260, v261, v262, v263, v264)  │

00:00:50 #6517 [Verbose] > │ -> (* StreamCons *)                                                          │

00:00:50 #6518 [Verbose] > │             match v96 with                                                   │

00:00:50 #6519 [Verbose] > │             | UH1_0(v265, v266, v267, v268, v269, v270, v271, v272, v273,    │

00:00:50 #6520 [Verbose] > │ v274) -> (* StreamCons *)                                                    │

00:00:50 #6521 [Verbose] > │                 let v275 : float = v255 + v265                               │

00:00:50 #6522 [Verbose] > │                 let v276 : float = v256 + v266                               │

00:00:50 #6523 [Verbose] > │                 let v277 : float = v260 + v270                               │

00:00:50 #6524 [Verbose] > │                 let v278 : float = v257 + v267                               │

00:00:50 #6525 [Verbose] > │                 let v279 : float = v258 + v268                               │

00:00:50 #6526 [Verbose] > │                 let v280 : float = v259 + v269                               │

00:00:50 #6527 [Verbose] > │                 let v281 : float = v261 + v271                               │

00:00:50 #6528 [Verbose] > │                 let v282 : float = v262 + v272                               │

00:00:50 #6529 [Verbose] > │                 let v283 : float = v263 + v273                               │

00:00:50 #6530 [Verbose] > │                 let v284 : (unit -> UH1) = closure20(v274, v264)             │

00:00:50 #6531 [Verbose] > │                 UH1_0(v275, v276, v278, v279, v280, v277, v281, v282, v283,  │

00:00:50 #6532 [Verbose] > │ v284)                                                                        │

00:00:50 #6533 [Verbose] > │             | UH1_1 -> (* StreamNil *)                                       │

00:00:50 #6534 [Verbose] > │                 UH1_1                                                        │

00:00:50 #6535 [Verbose] > │         | UH1_1 -> (* StreamNil *)                                           │

00:00:50 #6536 [Verbose] > │             UH1_1                                                            │

00:00:50 #6537 [Verbose] > │     let v328 : UH1 =                                                         │

00:00:50 #6538 [Verbose] > │         match v291 with                                                      │

00:00:50 #6539 [Verbose] > │         | UH1_0(v292, v293, v294, v295, v296, v297, v298, v299, v300, v301)  │

00:00:50 #6540 [Verbose] > │ -> (* StreamCons *)                                                          │

00:00:50 #6541 [Verbose] > │             match v142 with                                                  │

00:00:50 #6542 [Verbose] > │             | UH1_0(v302, v303, v304, v305, v306, v307, v308, v309, v310,    │

00:00:50 #6543 [Verbose] > │ v311) -> (* StreamCons *)                                                    │

00:00:50 #6544 [Verbose] > │                 let v312 : float = v292 + v302                               │

00:00:50 #6545 [Verbose] > │                 let v313 : float = v293 + v303                               │

00:00:50 #6546 [Verbose] > │                 let v314 : float = v297 + v307                               │

00:00:50 #6547 [Verbose] > │                 let v315 : float = v294 + v304                               │

00:00:50 #6548 [Verbose] > │                 let v316 : float = v295 + v305                               │

00:00:50 #6549 [Verbose] > │                 let v317 : float = v296 + v306                               │

00:00:50 #6550 [Verbose] > │                 let v318 : float = v298 + v308                               │

00:00:50 #6551 [Verbose] > │                 let v319 : float = v299 + v309                               │

00:00:50 #6552 [Verbose] > │                 let v320 : float = v300 + v310                               │

00:00:50 #6553 [Verbose] > │                 let v321 : (unit -> UH1) = closure20(v311, v301)             │

00:00:50 #6554 [Verbose] > │                 UH1_0(v312, v313, v315, v316, v317, v314, v318, v319, v320,  │

00:00:50 #6555 [Verbose] > │ v321)                                                                        │

00:00:50 #6556 [Verbose] > │             | UH1_1 -> (* StreamNil *)                                       │

00:00:50 #6557 [Verbose] > │                 UH1_1                                                        │

00:00:50 #6558 [Verbose] > │         | UH1_1 -> (* StreamNil *)                                           │

00:00:50 #6559 [Verbose] > │             UH1_1                                                            │

00:00:50 #6560 [Verbose] > │     let v370 : UH0 =                                                         │

00:00:50 #6561 [Verbose] > │         match v328 with                                                      │

00:00:50 #6562 [Verbose] > │         | UH1_0(v329, v330, v331, v332, v333, v334, v335, v336, v337, v338)  │

00:00:50 #6563 [Verbose] > │ -> (* StreamCons *)                                                          │

00:00:50 #6564 [Verbose] > │             match v2 with                                                    │

00:00:50 #6565 [Verbose] > │             | UH0_0(v339, v340, v341, v342, v343, v344, v345, v346, v347,    │

00:00:50 #6566 [Verbose] > │ v348) -> (* StreamCons *)                                                    │

00:00:50 #6567 [Verbose] > │                 let v349 : float = v334 * v143                               │

00:00:50 #6568 [Verbose] > │                 let v350 : float = v344 + v349                               │

00:00:50 #6569 [Verbose] > │                 let v351 : float = v143 * v331                               │

00:00:50 #6570 [Verbose] > │                 let v352 : float = v143 * v332                               │

00:00:50 #6571 [Verbose] > │                 let v353 : float = v143 * v333                               │

00:00:50 #6572 [Verbose] > │                 let v354 : float = v341 + v351                               │

00:00:50 #6573 [Verbose] > │                 let v355 : float = v342 + v352                               │

00:00:50 #6574 [Verbose] > │                 let v356 : float = v343 + v353                               │

00:00:50 #6575 [Verbose] > │                 let v357 : float = v143 * v335                               │

00:00:50 #6576 [Verbose] > │                 let v358 : float = v143 * v336                               │

00:00:50 #6577 [Verbose] > │                 let v359 : float = v143 * v337                               │

00:00:50 #6578 [Verbose] > │                 let v360 : float = v345 + v357                               │

00:00:50 #6579 [Verbose] > │                 let v361 : float = v346 + v358                               │

00:00:50 #6580 [Verbose] > │                 let v362 : float = v347 + v359                               │

00:00:50 #6581 [Verbose] > │                 let v363 : (unit -> UH0) = closure3(v143, v348, v338)        │

00:00:50 #6582 [Verbose] > │                 UH0_0(v339, v340, v354, v355, v356, v350, v360, v361, v362,  │

00:00:50 #6583 [Verbose] > │ v363)                                                                        │

00:00:50 #6584 [Verbose] > │             | UH0_1 -> (* StreamNil *)                                       │

00:00:50 #6585 [Verbose] > │                 UH0_1                                                        │

00:00:50 #6586 [Verbose] > │         | UH1_1 -> (* StreamNil *)                                           │

00:00:50 #6587 [Verbose] > │             UH0_1                                                            │

00:00:50 #6588 [Verbose] > │     let v371 : (unit -> UH0) = closure4(v370)                                │

00:00:50 #6589 [Verbose] > │     let v372 : (unit -> UH0) = method1(v370, v371)                           │

00:00:50 #6590 [Verbose] > │     let v373 : UH0 = v372 ()                                                 │

00:00:50 #6591 [Verbose] > │     v373                                                                     │

00:00:50 #6592 [Verbose] > │ and closure18 (v0 : float) (v1 : (UH0 -> UH1)) : (UH0 -> UH0) =              │

00:00:50 #6593 [Verbose] > │     closure19(v0, v1)                                                        │

00:00:50 #6594 [Verbose] > │ and closure17 () (v0 : float) : ((UH0 -> UH1) -> (UH0 -> UH0)) =             │

00:00:50 #6595 [Verbose] > │     closure18(v0)                                                            │

00:00:50 #6596 [Verbose] > │ and method17 (v0 : UH4, v1 : UH6) : UH6 =                                    │

00:00:50 #6597 [Verbose] > │     match v0 with                                                            │

00:00:50 #6598 [Verbose] > │     | UH4_0(v2, v3) -> (* Cons *)                                            │

00:00:50 #6599 [Verbose] > │         let v4 : UH6 = method17(v3, v1)                                      │

00:00:50 #6600 [Verbose] > │         let v5 : int32 = 0                                                   │

00:00:50 #6601 [Verbose] > │         let v6 : US2 = method6(v5, v2)                                       │

00:00:50 #6602 [Verbose] > │         let v23 : US3 =                                                      │

00:00:50 #6603 [Verbose] > │             match v6 with                                                    │

00:00:50 #6604 [Verbose] > │             | US2_0 -> (* None *)                                            │

00:00:50 #6605 [Verbose] > │                 US3_0                                                        │

00:00:50 #6606 [Verbose] > │             | US2_1(v7, v8, v9, v10, v11, v12, v13, v14, v15) -> (* Some *)  │

00:00:50 #6607 [Verbose] > │                 let v16 : UH7 = UH7_1                                        │

00:00:50 #6608 [Verbose] > │                 let v17 : UH7 = method12(v2, v16)                            │

00:00:50 #6609 [Verbose] > │                 let v18 : float = 0.0                                        │

00:00:50 #6610 [Verbose] > │                 let v19 : float = method13(v17, v18)                         │

00:00:50 #6611 [Verbose] > │                 US3_1(v12, v19)                                              │

00:00:50 #6612 [Verbose] > │         UH6_0(v23, v4)                                                       │

00:00:50 #6613 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:00:50 #6614 [Verbose] > │         v1                                                                   │

00:00:50 #6615 [Verbose] > │ and method19 (v0 : UH9, v1 : int32) : int32 =                                │

00:00:50 #6616 [Verbose] > │     match v0 with                                                            │

00:00:50 #6617 [Verbose] > │     | UH9_0(v2, v3) -> (* Cons *)                                            │

00:00:50 #6618 [Verbose] > │         let v4 : int32 = v1 + 1                                              │

00:00:50 #6619 [Verbose] > │         method19(v3, v4)                                                     │

00:00:50 #6620 [Verbose] > │     | UH9_1 -> (* Nil *)                                                     │

00:00:50 #6621 [Verbose] > │         v1                                                                   │

00:00:50 #6622 [Verbose] > │ and method20 (v0 : (float []), v1 : UH9, v2 : int32) : int32 =               │

00:00:50 #6623 [Verbose] > │     match v1 with                                                            │

00:00:50 #6624 [Verbose] > │     | UH9_0(v3, v4) -> (* Cons *)                                            │

00:00:50 #6625 [Verbose] > │         v0.[int v2] <- v3                                                    │

00:00:50 #6626 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:00:50 #6627 [Verbose] > │         method20(v0, v4, v5)                                                 │

00:00:50 #6628 [Verbose] > │     | UH9_1 -> (* Nil *)                                                     │

00:00:50 #6629 [Verbose] > │         v2                                                                   │

00:00:50 #6630 [Verbose] > │ and method18 (v0 : UH9) : (float []) =                                       │

00:00:50 #6631 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:50 #6632 [Verbose] > │     let v2 : int32 = method19(v0, v1)                                        │

00:00:50 #6633 [Verbose] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

00:00:50 #6634 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:50 #6635 [Verbose] > │     let v5 : int32 = method20(v3, v0, v4)                                    │

00:00:50 #6636 [Verbose] > │     v3                                                                       │

00:00:50 #6637 [Verbose] > │ and method21 (v0 : (struct (string * (float []) * (float [])) [])) : (struct │

00:00:50 #6638 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:50 #6639 [Verbose] > │     v0                                                                       │

00:00:50 #6640 [Verbose] > │ and method0 () : struct (string * string * string * (struct (string * (float │

00:00:50 #6641 [Verbose] > │ []) * (float [])) [])) =                                                     │

00:00:50 #6642 [Verbose] > │     let v0 : (float -> ((UH0 -> UH1) -> (UH0 -> UH0))) = closure0()          │

00:00:50 #6643 [Verbose] > │     let v1 : ((UH0 -> UH1) -> (UH0 -> UH0)) = v0 0.03                        │

00:00:50 #6644 [Verbose] > │     let v2 : (UH0 -> UH1) = closure8()                                       │

00:00:50 #6645 [Verbose] > │     let v3 : (UH0 -> UH0) = v1 v2                                            │

00:00:50 #6646 [Verbose] > │     let v4 : UH4 = UH4_1                                                     │

00:00:50 #6647 [Verbose] > │     let v5 : int32 = 0                                                       │

00:00:50 #6648 [Verbose] > │     let v6 : UH4 = method7(v3, v4, v5)                                       │

00:00:50 #6649 [Verbose] > │     let v7 : UH6 = UH6_1                                                     │

00:00:50 #6650 [Verbose] > │     let v8 : UH6 = method11(v6, v7)                                          │

00:00:50 #6651 [Verbose] > │     let v9 : UH8 = UH8_1                                                     │

00:00:50 #6652 [Verbose] > │     let v10 : UH8 = method14(v8, v9)                                         │

00:00:50 #6653 [Verbose] > │     let v11 : UH9 = UH9_1                                                    │

00:00:50 #6654 [Verbose] > │     let v12 : UH9 = UH9_1                                                    │

00:00:50 #6655 [Verbose] > │     let struct (v13 : UH9, v14 : UH9) = method15(v10, v11, v12)              │

00:00:50 #6656 [Verbose] > │     let v15 : UH9 = UH9_1                                                    │

00:00:50 #6657 [Verbose] > │     let v16 : UH9 = method16(v13, v15)                                       │

00:00:50 #6658 [Verbose] > │     let v17 : UH9 = UH9_1                                                    │

00:00:50 #6659 [Verbose] > │     let v18 : UH9 = method16(v14, v17)                                       │

00:00:50 #6660 [Verbose] > │     let v19 : (float -> ((UH0 -> UH1) -> (UH0 -> UH0))) = closure17()        │

00:00:50 #6661 [Verbose] > │     let v20 : ((UH0 -> UH1) -> (UH0 -> UH0)) = v19 0.03                      │

00:00:50 #6662 [Verbose] > │     let v21 : (UH0 -> UH0) = v20 v2                                          │

00:00:50 #6663 [Verbose] > │     let v22 : UH4 = UH4_1                                                    │

00:00:50 #6664 [Verbose] > │     let v23 : int32 = 0                                                      │

00:00:50 #6665 [Verbose] > │     let v24 : UH4 = method7(v21, v22, v23)                                   │

00:00:50 #6666 [Verbose] > │     let v25 : UH6 = UH6_1                                                    │

00:00:50 #6667 [Verbose] > │     let v26 : UH6 = method17(v24, v25)                                       │

00:00:50 #6668 [Verbose] > │     let v27 : UH8 = UH8_1                                                    │

00:00:50 #6669 [Verbose] > │     let v28 : UH8 = method14(v26, v27)                                       │

00:00:50 #6670 [Verbose] > │     let v29 : UH9 = UH9_1                                                    │

00:00:50 #6671 [Verbose] > │     let v30 : UH9 = UH9_1                                                    │

00:00:50 #6672 [Verbose] > │     let struct (v31 : UH9, v32 : UH9) = method15(v28, v29, v30)              │

00:00:50 #6673 [Verbose] > │     let v33 : UH9 = UH9_1                                                    │

00:00:50 #6674 [Verbose] > │     let v34 : UH9 = method16(v31, v33)                                       │

00:00:50 #6675 [Verbose] > │     let v35 : UH9 = UH9_1                                                    │

00:00:50 #6676 [Verbose] > │     let v36 : UH9 = method16(v32, v35)                                       │

00:00:50 #6677 [Verbose] > │     let v37 : (float []) = method18(v16)                                     │

00:00:50 #6678 [Verbose] > │     let v38 : (float []) = method18(v18)                                     │

00:00:50 #6679 [Verbose] > │     let v39 : (float []) = method18(v34)                                     │

00:00:50 #6680 [Verbose] > │     let v40 : (float []) = method18(v36)                                     │

00:00:50 #6681 [Verbose] > │     let v41 : string = "euler-cromer"                                        │

00:00:50 #6682 [Verbose] > │     let v42 : string = "runge-kutta 4"                                       │

00:00:50 #6683 [Verbose] > │     let v43 : (struct (string * (float []) * (float [])) []) = [|struct      │

00:00:50 #6684 [Verbose] > │ (v41, v37, v38); struct (v42, v39, v40)|]                                    │

00:00:50 #6685 [Verbose] > │     let v44 : (struct (string * (float []) * (float [])) []) = method21(v43) │

00:00:50 #6686 [Verbose] > │     let v45 : string = "system kinetic energy versus time"                   │

00:00:50 #6687 [Verbose] > │     let v46 : string = "time (s)"                                            │

00:00:50 #6688 [Verbose] > │     let v47 : string = "system kinetic energy (j)"                           │

00:00:50 #6689 [Verbose] > │     struct (v45, v46, v47, v44)                                              │

00:00:50 #6690 [Verbose] > │ method0()                                                                    │

00:00:50 #6691 [Verbose] > │                                                                              │

00:00:50 #6692 [Verbose] > │                                                                              │

00:00:50 #6693 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:50 #6694 [Verbose] >

00:00:50 #6695 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:50 #6696 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:50 #6697 [Verbose] > │ ### wave 2                                                                   │

00:00:50 #6698 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:50 #6699 [Verbose] >

00:00:50 #6700 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:50 #6701 [Verbose] > // // test

00:00:50 #6702 [Verbose] >

00:00:50 #6703 [Verbose] > inl linear_spring k re (particle_state st1) (particle_state st2) =

00:00:50 #6704 [Verbose] >     inl r1 = st1.pos_vec

00:00:50 #6705 [Verbose] >     inl r2 = st2.pos_vec

00:00:50 #6706 [Verbose] >     inl r21 = r2 ^-^ r1

00:00:50 #6707 [Verbose] >     inl r21mag = magnitude r21

00:00:50 #6708 [Verbose] >     -k * (r21mag - re) *^ r21 ^/ r21mag

00:00:50 #6709 [Verbose] >

00:00:50 #6710 [Verbose] > inl fixed_linear_spring k re r1 =

00:00:50 #6711 [Verbose] >     inl (particle_state default_particle_state') = default_particle_state ()

00:00:50 #6712 [Verbose] >     linear_spring k re (particle_state { default_particle_state' with pos_vec =

00:00:50 #6713 [Verbose] > r1 })

00:00:50 #6714 [Verbose] >

00:00:50 #6715 [Verbose] > inl forces_string () =

00:00:50 #6716 [Verbose] >     [[

00:00:50 #6717 [Verbose] >         ExternalForce (0i32, fixed_linear_spring 5384 0 (zero_vec ()))

00:00:50 #6718 [Verbose] >         ExternalForce (63, fixed_linear_spring 5384 0 (0.65 *^ i_hat ()))

00:00:50 #6719 [Verbose] >     ]] /@ (

00:00:50 #6720 [Verbose] >         listm'.init_series 0 59 1

00:00:50 #6721 [Verbose] >         |> listm.map (fun n => InternalForce (n, n + 1, linear_spring 5384 0))

00:00:50 #6722 [Verbose] >     )

00:00:50 #6723 [Verbose] >

00:00:50 #6724 [Verbose] > inl string_update dt =

00:00:50 #6725 [Verbose] >     update_mps (join runge_kutta_4 dt) (join forces_string ())

00:00:50 #6726 [Verbose] >

00:00:50 #6727 [Verbose] > inl string_initial_overtone n =

00:00:50 #6728 [Verbose] >     inl ball_mass = 0.0008293 * 0.65 / 64

00:00:50 #6729 [Verbose] >     inl (particle_state default_particle_state') = default_particle_state ()

00:00:50 #6730 [Verbose] >     listm'.init_series 0.01 0.64 0.01

00:00:50 #6731 [Verbose] >     |> listm.map (fun x =>

00:00:50 #6732 [Verbose] >         inl y = 0.005 * sin (conv n * pi * x / 0.65)

00:00:50 #6733 [Verbose] >         particle_state {

00:00:50 #6734 [Verbose] >             default_particle_state' with

00:00:50 #6735 [Verbose] >                 mass = ball_mass

00:00:50 #6736 [Verbose] >                 pos_vec = x *^ i_hat () ^+^ y *^ j_hat ()

00:00:50 #6737 [Verbose] >                 velocity = zero_vec ()

00:00:50 #6738 [Verbose] >         }

00:00:50 #6739 [Verbose] >     )

00:00:50 #6740 [Verbose] >     |> stream.from_list

00:00:50 #6741 [Verbose] >     |> multi_particle_state

00:00:50 #6742 [Verbose] >

00:00:50 #6743 [Verbose] > let main () =

00:00:50 #6744 [Verbose] >     inl ~frames = listm'.init_series 0 65 1f64 |> stream.from_list

00:00:50 #6745 [Verbose] >     inl ~initial_state = string_initial_overtone 3i32

00:00:50 #6746 [Verbose] >     inl frames =

00:00:50 #6747 [Verbose] >         frames

00:00:50 #6748 [Verbose] >         |> stream.map (fun n =>

00:00:50 #6749 [Verbose] >             inl (multi_particle_state sts) =

00:00:50 #6750 [Verbose] >                 stream.iterate (string_update 0.000025) initial_state |>

00:00:50 #6751 [Verbose] > stream.item n

00:00:50 #6752 [Verbose] >             inl x, y =

00:00:50 #6753 [Verbose] >                 [[ zero_vec () ]]

00:00:50 #6754 [Verbose] >                 /@ (sts |> stream.map (fun (particle_state st) => st.pos_vec) |>

00:00:50 #6755 [Verbose] > stream.to_list)

00:00:50 #6756 [Verbose] >                 /@ [[ 0.65 *^ i_hat () ]]

00:00:50 #6757 [Verbose] >                 |> listm.map (fun r => r.x, r.y)

00:00:50 #6758 [Verbose] >                 |> stream.from_list

00:00:50 #6759 [Verbose] >                 |> stream.unzip

00:00:50 #6760 [Verbose] >             inl x : a i32 _ = x |> stream.to_list |> listm.toArray

00:00:50 #6761 [Verbose] >             inl y : a i32 _ = y |> stream.to_list |> listm.toArray

00:00:50 #6762 [Verbose] >             x, y

00:00:50 #6763 [Verbose] >         )

00:00:50 #6764 [Verbose] >

00:00:50 #6765 [Verbose] >     inl plots =

00:00:50 #6766 [Verbose] >         frames

00:00:50 #6767 [Verbose] >         |> stream.indexed

00:00:50 #6768 [Verbose] >         |> stream.map (fun ((n : i32), (x, y)) =>

00:00:50 #6769 [Verbose] >             "wave",

00:00:50 #6770 [Verbose] >             "position (m)",

00:00:50 #6771 [Verbose] >             "displacement (m)",

00:00:50 #6772 [Verbose] >             ;[[

00:00:50 #6773 [Verbose] >                 ($"$\"{!n}\"" : string), x, y

00:00:50 #6774 [Verbose] >             ]]

00:00:50 #6775 [Verbose] >         )

00:00:50 #6776 [Verbose] >

00:00:50 #6777 [Verbose] >     plots |> stream.to_list |> listm.toArray : a i32 _

00:00:50 #6778 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1640-1800-0020-06aa6e13f283\main.spi

00:00:58 #6779 [Verbose] >

00:00:58 #6780 [Verbose] > ╭─[ 8.69s - return value ]─────────────────────────────────────────────────────╮

00:00:58 #6781 [Verbose] > │ <table><thead><tr><th><i>index</i></th><th>value</th></tr></thead><tbody><tr │

00:00:58 #6782 [Verbose] > │ ><td>0</td><td><svg width="640" height="480" viewBox="0 0 640 480"           │

00:00:58 #6783 [Verbose] > │ xmlns="http://www.w3.org/2000/svg">                                          │

00:00:58 #6784 [Verbose] > │ <rect x="0" y="0" width="640" height="480" opacity="1" fill="#141414"        │

00:00:58 #6785 [Verbose] > │ stroke="none"/>                                                              │

00:00:58 #6786 [Verbose] > │ <text x="320" y="10" dy="0.76em" text-anchor="middle"                        │

00:00:58 #6787 [Verbose] > │ font-family="sans-serif" font-size="9.67741935483871" opacity="1"            │

00:00:58 #6788 [Verbose] > │ fill="#FFFFFF">                                                              │

00:00:58 #6789 [Verbose] > │ wave                                                                         │

00:00:58 #6790 [Verbose] > │ </text>                                                                      │

00:00:58 #6791 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="62" y1="424" x2="62" │

00:00:58 #6792 [Verbose] > │ y2="75"/>                                                                    │

00:00:58 #6793 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="69" y1="424" x2="69" │

00:00:58 #6794 [Verbose] > │ y2="75"/>                                                                    │

00:00:58 #6795 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="77" y1="424" x2="77" │

00:00:58 #6796 [Verbose] > │ y2="75"/>                                                                    │

00:00:58 #6797 [Verbose] > │ <line opacity="1" stroke="#323232" stroke-width="1" x1="85" y1="424"         │

00:00:58 #6798 [Verbose] > │ x2="85...                                                                    │

00:00:58 #6799 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:58 #6800 [Verbose] >

00:00:58 #6801 [Verbose] > ╭─[ 8.74s - stdout ]───────────────────────────────────────────────────────────╮

00:00:58 #6802 [Verbose] > │ type UH0 =                                                                   │

00:00:58 #6803 [Verbose] > │     | UH0_0 of float * (unit -> UH0)                                         │

00:00:58 #6804 [Verbose] > │     | UH0_1                                                                  │

00:00:58 #6805 [Verbose] > │ and UH1 =                                                                    │

00:00:58 #6806 [Verbose] > │     | UH1_0 of float * float * float * float * float * float * float * float │

00:00:58 #6807 [Verbose] > │ * float * (unit -> UH1)                                                      │

00:00:58 #6808 [Verbose] > │     | UH1_1                                                                  │

00:00:58 #6809 [Verbose] > │ and UH2 =                                                                    │

00:00:58 #6810 [Verbose] > │     | UH2_0 of (float []) * (float []) * (unit -> UH2)                       │

00:00:58 #6811 [Verbose] > │     | UH2_1                                                                  │

00:00:58 #6812 [Verbose] > │ and UH3 =                                                                    │

00:00:58 #6813 [Verbose] > │     | UH3_0 of float * float * float * float * float * float * float * float │

00:00:58 #6814 [Verbose] > │ * float * (unit -> UH3)                                                      │

00:00:58 #6815 [Verbose] > │     | UH3_1                                                                  │

00:00:58 #6816 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:58 #6817 [Verbose] > │     | US0_0 of f0_0 : UH1                                                    │

00:00:58 #6818 [Verbose] > │     | US0_1 of f1_0 : (unit -> UH1)                                          │

00:00:58 #6819 [Verbose] > │ and Mut0 = {mutable l0 : US0}                                                │

00:00:58 #6820 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:58 #6821 [Verbose] > │     | US1_0 of f0_0 : int32 * f0_1 : (struct (float * float * float * float  │

00:00:58 #6822 [Verbose] > │ * float * float * float * float * float) -> struct (float * float * float))  │

00:00:58 #6823 [Verbose] > │     | US1_1 of f1_0 : int32 * f1_1 : int32 * f1_2 : (struct (float * float * │

00:00:58 #6824 [Verbose] > │ float * float * float * float * float * float * float) -> (struct (float *   │

00:00:58 #6825 [Verbose] > │ float * float * float * float * float * float * float * float) -> struct     │

00:00:58 #6826 [Verbose] > │ (float * float * float)))                                                    │

00:00:58 #6827 [Verbose] > │ and UH4 =                                                                    │

00:00:58 #6828 [Verbose] > │     | UH4_0 of US1 * UH4                                                     │

00:00:58 #6829 [Verbose] > │     | UH4_1                                                                  │

00:00:58 #6830 [Verbose] > │ and UH5 =                                                                    │

00:00:58 #6831 [Verbose] > │     | UH5_0 of int32 * float * float * float * float * float * float * float │

00:00:58 #6832 [Verbose] > │ * float * float * (unit -> UH5)                                              │

00:00:58 #6833 [Verbose] > │     | UH5_1                                                                  │

00:00:58 #6834 [Verbose] > │ and UH6 =                                                                    │

00:00:58 #6835 [Verbose] > │     | UH6_0 of (struct (float * float * float * float * float * float *      │

00:00:58 #6836 [Verbose] > │ float * float * float) -> struct (float * float * float)) * UH6              │

00:00:58 #6837 [Verbose] > │     | UH6_1                                                                  │

00:00:58 #6838 [Verbose] > │ and [<Struct>] US2 =                                                         │

00:00:58 #6839 [Verbose] > │     | US2_0                                                                  │

00:00:58 #6840 [Verbose] > │     | US2_1 of f1_0 : (struct (float * float * float * float * float * float │

00:00:58 #6841 [Verbose] > │ * float * float * float) -> struct (float * float * float))                  │

00:00:58 #6842 [Verbose] > │ and [<Struct>] US3 =                                                         │

00:00:58 #6843 [Verbose] > │     | US3_0                                                                  │

00:00:58 #6844 [Verbose] > │     | US3_1 of f1_0 : float * f1_1 : float * f1_2 : float * f1_3 : float *   │

00:00:58 #6845 [Verbose] > │ f1_4 : float * f1_5 : float * f1_6 : float * f1_7 : float * f1_8 : float     │

00:00:58 #6846 [Verbose] > │ and UH7 =                                                                    │

00:00:58 #6847 [Verbose] > │     | UH7_0 of float * float * float * UH7                                   │

00:00:58 #6848 [Verbose] > │     | UH7_1                                                                  │

00:00:58 #6849 [Verbose] > │ and UH8 =                                                                    │

00:00:58 #6850 [Verbose] > │     | UH8_0 of UH1 * (unit -> UH8)                                           │

00:00:58 #6851 [Verbose] > │     | UH8_1                                                                  │

00:00:58 #6852 [Verbose] > │ and [<Struct>] US4 =                                                         │

00:00:58 #6853 [Verbose] > │     | US4_0                                                                  │

00:00:58 #6854 [Verbose] > │     | US4_1 of f1_0 : UH1                                                    │

00:00:58 #6855 [Verbose] > │ and UH9 =                                                                    │

00:00:58 #6856 [Verbose] > │     | UH9_0 of float * float * float * (unit -> UH9)                         │

00:00:58 #6857 [Verbose] > │     | UH9_1                                                                  │

00:00:58 #6858 [Verbose] > │ and UH10 =                                                                   │

00:00:58 #6859 [Verbose] > │     | UH10_0 of float * float * UH10                                         │

00:00:58 #6860 [Verbose] > │     | UH10_1                                                                 │

00:00:58 #6861 [Verbose] > │ and UH11 =                                                                   │

00:00:58 #6862 [Verbose] > │     | UH11_0 of float * float * (unit -> UH11)                               │

00:00:58 #6863 [Verbose] > │     | UH11_1                                                                 │

00:00:58 #6864 [Verbose] > │ and UH12 =                                                                   │

00:00:58 #6865 [Verbose] > │     | UH12_0 of float * UH12                                                 │

00:00:58 #6866 [Verbose] > │     | UH12_1                                                                 │

00:00:58 #6867 [Verbose] > │ and UH13 =                                                                   │

00:00:58 #6868 [Verbose] > │     | UH13_0 of int32 * (float []) * (float []) * (unit -> UH13)             │

00:00:58 #6869 [Verbose] > │     | UH13_1                                                                 │

00:00:58 #6870 [Verbose] > │ and UH14 =                                                                   │

00:00:58 #6871 [Verbose] > │     | UH14_0 of string * string * string * (struct (string * (float []) *    │

00:00:58 #6872 [Verbose] > │ (float [])) []) * (unit -> UH14)                                             │

00:00:58 #6873 [Verbose] > │     | UH14_1                                                                 │

00:00:58 #6874 [Verbose] > │ and UH15 =                                                                   │

00:00:58 #6875 [Verbose] > │     | UH15_0 of string * string * string * (struct (string * (float []) *    │

00:00:58 #6876 [Verbose] > │ (float [])) []) * UH15                                                       │

00:00:58 #6877 [Verbose] > │     | UH15_1                                                                 │

00:00:58 #6878 [Verbose] > │ let rec closure65 () () : UH0 =                                              │

00:00:58 #6879 [Verbose] > │     UH0_1                                                                    │

00:00:58 #6880 [Verbose] > │ and closure64 () () : UH0 =                                                  │

00:00:58 #6881 [Verbose] > │     let v0 : (unit -> UH0) = closure65()                                     │

00:00:58 #6882 [Verbose] > │     UH0_0(65.0, v0)                                                          │

00:00:58 #6883 [Verbose] > │ and closure63 () () : UH0 =                                                  │

00:00:58 #6884 [Verbose] > │     let v0 : (unit -> UH0) = closure64()                                     │

00:00:58 #6885 [Verbose] > │     UH0_0(64.0, v0)                                                          │

00:00:58 #6886 [Verbose] > │ and closure62 () () : UH0 =                                                  │

00:00:58 #6887 [Verbose] > │     let v0 : (unit -> UH0) = closure63()                                     │

00:00:58 #6888 [Verbose] > │     UH0_0(63.0, v0)                                                          │

00:00:58 #6889 [Verbose] > │ and closure61 () () : UH0 =                                                  │

00:00:58 #6890 [Verbose] > │     let v0 : (unit -> UH0) = closure62()                                     │

00:00:58 #6891 [Verbose] > │     UH0_0(62.0, v0)                                                          │

00:00:58 #6892 [Verbose] > │ and closure60 () () : UH0 =                                                  │

00:00:58 #6893 [Verbose] > │     let v0 : (unit -> UH0) = closure61()                                     │

00:00:58 #6894 [Verbose] > │     UH0_0(61.0, v0)                                                          │

00:00:58 #6895 [Verbose] > │ and closure59 () () : UH0 =                                                  │

00:00:58 #6896 [Verbose] > │     let v0 : (unit -> UH0) = closure60()                                     │

00:00:58 #6897 [Verbose] > │     UH0_0(60.0, v0)                                                          │

00:00:58 #6898 [Verbose] > │ and closure58 () () : UH0 =                                                  │

00:00:58 #6899 [Verbose] > │     let v0 : (unit -> UH0) = closure59()                                     │

00:00:58 #6900 [Verbose] > │     UH0_0(59.0, v0)                                                          │

00:00:58 #6901 [Verbose] > │ and closure57 () () : UH0 =                                                  │

00:00:58 #6902 [Verbose] > │     let v0 : (unit -> UH0) = closure58()                                     │

00:00:58 #6903 [Verbose] > │     UH0_0(58.0, v0)                                                          │

00:00:58 #6904 [Verbose] > │ and closure56 () () : UH0 =                                                  │

00:00:58 #6905 [Verbose] > │     let v0 : (unit -> UH0) = closure57()                                     │

00:00:58 #6906 [Verbose] > │     UH0_0(57.0, v0)                                                          │

00:00:58 #6907 [Verbose] > │ and closure55 () () : UH0 =                                                  │

00:00:58 #6908 [Verbose] > │     let v0 : (unit -> UH0) = closure56()                                     │

00:00:58 #6909 [Verbose] > │     UH0_0(56.0, v0)                                                          │

00:00:58 #6910 [Verbose] > │ and closure54 () () : UH0 =                                                  │

00:00:58 #6911 [Verbose] > │     let v0 : (unit -> UH0) = closure55()                                     │

00:00:58 #6912 [Verbose] > │     UH0_0(55.0, v0)                                                          │

00:00:58 #6913 [Verbose] > │ and closure53 () () : UH0 =                                                  │

00:00:58 #6914 [Verbose] > │     let v0 : (unit -> UH0) = closure54()                                     │

00:00:58 #6915 [Verbose] > │     UH0_0(54.0, v0)                                                          │

00:00:58 #6916 [Verbose] > │ and closure52 () () : UH0 =                                                  │

00:00:58 #6917 [Verbose] > │     let v0 : (unit -> UH0) = closure53()                                     │

00:00:58 #6918 [Verbose] > │     UH0_0(53.0, v0)                                                          │

00:00:58 #6919 [Verbose] > │ and closure51 () () : UH0 =                                                  │

00:00:58 #6920 [Verbose] > │     let v0 : (unit -> UH0) = closure52()                                     │

00:00:59 #6921 [Verbose] > │     UH0_0(52.0, v0)                                                          │

00:00:59 #6922 [Verbose] > │ and closure50 () () : UH0 =                                                  │

00:00:59 #6923 [Verbose] > │     let v0 : (unit -> UH0) = closure51()                                     │

00:00:59 #6924 [Verbose] > │     UH0_0(51.0, v0)                                                          │

00:00:59 #6925 [Verbose] > │ and closure49 () () : UH0 =                                                  │

00:00:59 #6926 [Verbose] > │     let v0 : (unit -> UH0) = closure50()                                     │

00:00:59 #6927 [Verbose] > │     UH0_0(50.0, v0)                                                          │

00:00:59 #6928 [Verbose] > │ and closure48 () () : UH0 =                                                  │

00:00:59 #6929 [Verbose] > │     let v0 : (unit -> UH0) = closure49()                                     │

00:00:59 #6930 [Verbose] > │     UH0_0(49.0, v0)                                                          │

00:00:59 #6931 [Verbose] > │ and closure47 () () : UH0 =                                                  │

00:00:59 #6932 [Verbose] > │     let v0 : (unit -> UH0) = closure48()                                     │

00:00:59 #6933 [Verbose] > │     UH0_0(48.0, v0)                                                          │

00:00:59 #6934 [Verbose] > │ and closure46 () () : UH0 =                                                  │

00:00:59 #6935 [Verbose] > │     let v0 : (unit -> UH0) = closure47()                                     │

00:00:59 #6936 [Verbose] > │     UH0_0(47.0, v0)                                                          │

00:00:59 #6937 [Verbose] > │ and closure45 () () : UH0 =                                                  │

00:00:59 #6938 [Verbose] > │     let v0 : (unit -> UH0) = closure46()                                     │

00:00:59 #6939 [Verbose] > │     UH0_0(46.0, v0)                                                          │

00:00:59 #6940 [Verbose] > │ and closure44 () () : UH0 =                                                  │

00:00:59 #6941 [Verbose] > │     let v0 : (unit -> UH0) = closure45()                                     │

00:00:59 #6942 [Verbose] > │     UH0_0(45.0, v0)                                                          │

00:00:59 #6943 [Verbose] > │ and closure43 () () : UH0 =                                                  │

00:00:59 #6944 [Verbose] > │     let v0 : (unit -> UH0) = closure44()                                     │

00:00:59 #6945 [Verbose] > │     UH0_0(44.0, v0)                                                          │

00:00:59 #6946 [Verbose] > │ and closure42 () () : UH0 =                                                  │

00:00:59 #6947 [Verbose] > │     let v0 : (unit -> UH0) = closure43()                                     │

00:00:59 #6948 [Verbose] > │     UH0_0(43.0, v0)                                                          │

00:00:59 #6949 [Verbose] > │ and closure41 () () : UH0 =                                                  │

00:00:59 #6950 [Verbose] > │     let v0 : (unit -> UH0) = closure42()                                     │

00:00:59 #6951 [Verbose] > │     UH0_0(42.0, v0)                                                          │

00:00:59 #6952 [Verbose] > │ and closure40 () () : UH0 =                                                  │

00:00:59 #6953 [Verbose] > │     let v0 : (unit -> UH0) = closure41()                                     │

00:00:59 #6954 [Verbose] > │     UH0_0(41.0, v0)                                                          │

00:00:59 #6955 [Verbose] > │ and closure39 () () : UH0 =                                                  │

00:00:59 #6956 [Verbose] > │     let v0 : (unit -> UH0) = closure40()                                     │

00:00:59 #6957 [Verbose] > │     UH0_0(40.0, v0)                                                          │

00:00:59 #6958 [Verbose] > │ and closure38 () () : UH0 =                                                  │

00:00:59 #6959 [Verbose] > │     let v0 : (unit -> UH0) = closure39()                                     │

00:00:59 #6960 [Verbose] > │     UH0_0(39.0, v0)                                                          │

00:00:59 #6961 [Verbose] > │ and closure37 () () : UH0 =                                                  │

00:00:59 #6962 [Verbose] > │     let v0 : (unit -> UH0) = closure38()                                     │

00:00:59 #6963 [Verbose] > │     UH0_0(38.0, v0)                                                          │

00:00:59 #6964 [Verbose] > │ and closure36 () () : UH0 =                                                  │

00:00:59 #6965 [Verbose] > │     let v0 : (unit -> UH0) = closure37()                                     │

00:00:59 #6966 [Verbose] > │     UH0_0(37.0, v0)                                                          │

00:00:59 #6967 [Verbose] > │ and closure35 () () : UH0 =                                                  │

00:00:59 #6968 [Verbose] > │     let v0 : (unit -> UH0) = closure36()                                     │

00:00:59 #6969 [Verbose] > │     UH0_0(36.0, v0)                                                          │

00:00:59 #6970 [Verbose] > │ and closure34 () () : UH0 =                                                  │

00:00:59 #6971 [Verbose] > │     let v0 : (unit -> UH0) = closure35()                                     │

00:00:59 #6972 [Verbose] > │     UH0_0(35.0, v0)                                                          │

00:00:59 #6973 [Verbose] > │ and closure33 () () : UH0 =                                                  │

00:00:59 #6974 [Verbose] > │     let v0 : (unit -> UH0) = closure34()                                     │

00:00:59 #6975 [Verbose] > │     UH0_0(34.0, v0)                                                          │

00:00:59 #6976 [Verbose] > │ and closure32 () () : UH0 =                                                  │

00:00:59 #6977 [Verbose] > │     let v0 : (unit -> UH0) = closure33()                                     │

00:00:59 #6978 [Verbose] > │     UH0_0(33.0, v0)                                                          │

00:00:59 #6979 [Verbose] > │ and closure31 () () : UH0 =                                                  │

00:00:59 #6980 [Verbose] > │     let v0 : (unit -> UH0) = closure32()                                     │

00:00:59 #6981 [Verbose] > │     UH0_0(32.0, v0)                                                          │

00:00:59 #6982 [Verbose] > │ and closure30 () () : UH0 =                                                  │

00:00:59 #6983 [Verbose] > │     let v0 : (unit -> UH0) = closure31()                                     │

00:00:59 #6984 [Verbose] > │     UH0_0(31.0, v0)                                                          │

00:00:59 #6985 [Verbose] > │ and closure29 () () : UH0 =                                                  │

00:00:59 #6986 [Verbose] > │     let v0 : (unit -> UH0) = closure30()                                     │

00:00:59 #6987 [Verbose] > │     UH0_0(30.0, v0)                                                          │

00:00:59 #6988 [Verbose] > │ and closure28 () () : UH0 =                                                  │

00:00:59 #6989 [Verbose] > │     let v0 : (unit -> UH0) = closure29()                                     │

00:00:59 #6990 [Verbose] > │     UH0_0(29.0, v0)                                                          │

00:00:59 #6991 [Verbose] > │ and closure27 () () : UH0 =                                                  │

00:00:59 #6992 [Verbose] > │     let v0 : (unit -> UH0) = closure28()                                     │

00:00:59 #6993 [Verbose] > │     UH0_0(28.0, v0)                                                          │

00:00:59 #6994 [Verbose] > │ and closure26 () () : UH0 =                                                  │

00:00:59 #6995 [Verbose] > │     let v0 : (unit -> UH0) = closure27()                                     │

00:00:59 #6996 [Verbose] > │     UH0_0(27.0, v0)                                                          │

00:00:59 #6997 [Verbose] > │ and closure25 () () : UH0 =                                                  │

00:00:59 #6998 [Verbose] > │     let v0 : (unit -> UH0) = closure26()                                     │

00:00:59 #6999 [Verbose] > │     UH0_0(26.0, v0)                                                          │

00:00:59 #7000 [Verbose] > │ and closure24 () () : UH0 =                                                  │

00:00:59 #7001 [Verbose] > │     let v0 : (unit -> UH0) = closure25()                                     │

00:00:59 #7002 [Verbose] > │     UH0_0(25.0, v0)                                                          │

00:00:59 #7003 [Verbose] > │ and closure23 () () : UH0 =                                                  │

00:00:59 #7004 [Verbose] > │     let v0 : (unit -> UH0) = closure24()                                     │

00:00:59 #7005 [Verbose] > │     UH0_0(24.0, v0)                                                          │

00:00:59 #7006 [Verbose] > │ and closure22 () () : UH0 =                                                  │

00:00:59 #7007 [Verbose] > │     let v0 : (unit -> UH0) = closure23()                                     │

00:00:59 #7008 [Verbose] > │     UH0_0(23.0, v0)                                                          │

00:00:59 #7009 [Verbose] > │ and closure21 () () : UH0 =                                                  │

00:00:59 #7010 [Verbose] > │     let v0 : (unit -> UH0) = closure22()                                     │

00:00:59 #7011 [Verbose] > │     UH0_0(22.0, v0)                                                          │

00:00:59 #7012 [Verbose] > │ and closure20 () () : UH0 =                                                  │

00:00:59 #7013 [Verbose] > │     let v0 : (unit -> UH0) = closure21()                                     │

00:00:59 #7014 [Verbose] > │     UH0_0(21.0, v0)                                                          │

00:00:59 #7015 [Verbose] > │ and closure19 () () : UH0 =                                                  │

00:00:59 #7016 [Verbose] > │     let v0 : (unit -> UH0) = closure20()                                     │

00:00:59 #7017 [Verbose] > │     UH0_0(20.0, v0)                                                          │

00:00:59 #7018 [Verbose] > │ and closure18 () () : UH0 =                                                  │

00:00:59 #7019 [Verbose] > │     let v0 : (unit -> UH0) = closure19()                                     │

00:00:59 #7020 [Verbose] > │     UH0_0(19.0, v0)                                                          │

00:00:59 #7021 [Verbose] > │ and closure17 () () : UH0 =                                                  │

00:00:59 #7022 [Verbose] > │     let v0 : (unit -> UH0) = closure18()                                     │

00:00:59 #7023 [Verbose] > │     UH0_0(18.0, v0)                                                          │

00:00:59 #7024 [Verbose] > │ and closure16 () () : UH0 =                                                  │

00:00:59 #7025 [Verbose] > │     let v0 : (unit -> UH0) = closure17()                                     │

00:00:59 #7026 [Verbose] > │     UH0_0(17.0, v0)                                                          │

00:00:59 #7027 [Verbose] > │ and closure15 () () : UH0 =                                                  │

00:00:59 #7028 [Verbose] > │     let v0 : (unit -> UH0) = closure16()                                     │

00:00:59 #7029 [Verbose] > │     UH0_0(16.0, v0)                                                          │

00:00:59 #7030 [Verbose] > │ and closure14 () () : UH0 =                                                  │

00:00:59 #7031 [Verbose] > │     let v0 : (unit -> UH0) = closure15()                                     │

00:00:59 #7032 [Verbose] > │     UH0_0(15.0, v0)                                                          │

00:00:59 #7033 [Verbose] > │ and closure13 () () : UH0 =                                                  │

00:00:59 #7034 [Verbose] > │     let v0 : (unit -> UH0) = closure14()                                     │

00:00:59 #7035 [Verbose] > │     UH0_0(14.0, v0)                                                          │

00:00:59 #7036 [Verbose] > │ and closure12 () () : UH0 =                                                  │

00:00:59 #7037 [Verbose] > │     let v0 : (unit -> UH0) = closure13()                                     │

00:00:59 #7038 [Verbose] > │     UH0_0(13.0, v0)                                                          │

00:00:59 #7039 [Verbose] > │ and closure11 () () : UH0 =                                                  │

00:00:59 #7040 [Verbose] > │     let v0 : (unit -> UH0) = closure12()                                     │

00:00:59 #7041 [Verbose] > │     UH0_0(12.0, v0)                                                          │

00:00:59 #7042 [Verbose] > │ and closure10 () () : UH0 =                                                  │

00:00:59 #7043 [Verbose] > │     let v0 : (unit -> UH0) = closure11()                                     │

00:00:59 #7044 [Verbose] > │     UH0_0(11.0, v0)                                                          │

00:00:59 #7045 [Verbose] > │ and closure9 () () : UH0 =                                                   │

00:00:59 #7046 [Verbose] > │     let v0 : (unit -> UH0) = closure10()                                     │

00:00:59 #7047 [Verbose] > │     UH0_0(10.0, v0)                                                          │

00:00:59 #7048 [Verbose] > │ and closure8 () () : UH0 =                                                   │

00:00:59 #7049 [Verbose] > │     let v0 : (unit -> UH0) = closure9()                                      │

00:00:59 #7050 [Verbose] > │     UH0_0(9.0, v0)                                                           │

00:00:59 #7051 [Verbose] > │ and closure7 () () : UH0 =                                                   │

00:00:59 #7052 [Verbose] > │     let v0 : (unit -> UH0) = closure8()                                      │

00:00:59 #7053 [Verbose] > │     UH0_0(8.0, v0)                                                           │

00:00:59 #7054 [Verbose] > │ and closure6 () () : UH0 =                                                   │

00:00:59 #7055 [Verbose] > │     let v0 : (unit -> UH0) = closure7()                                      │

00:00:59 #7056 [Verbose] > │     UH0_0(7.0, v0)                                                           │

00:00:59 #7057 [Verbose] > │ and closure5 () () : UH0 =                                                   │

00:00:59 #7058 [Verbose] > │     let v0 : (unit -> UH0) = closure6()                                      │

00:00:59 #7059 [Verbose] > │     UH0_0(6.0, v0)                                                           │

00:00:59 #7060 [Verbose] > │ and closure4 () () : UH0 =                                                   │

00:00:59 #7061 [Verbose] > │     let v0 : (unit -> UH0) = closure5()                                      │

00:00:59 #7062 [Verbose] > │     UH0_0(5.0, v0)                                                           │

00:00:59 #7063 [Verbose] > │ and closure3 () () : UH0 =                                                   │

00:00:59 #7064 [Verbose] > │     let v0 : (unit -> UH0) = closure4()                                      │

00:00:59 #7065 [Verbose] > │     UH0_0(4.0, v0)                                                           │

00:00:59 #7066 [Verbose] > │ and closure2 () () : UH0 =                                                   │

00:00:59 #7067 [Verbose] > │     let v0 : (unit -> UH0) = closure3()                                      │

00:00:59 #7068 [Verbose] > │     UH0_0(3.0, v0)                                                           │

00:00:59 #7069 [Verbose] > │ and closure1 () () : UH0 =                                                   │

00:00:59 #7070 [Verbose] > │     let v0 : (unit -> UH0) = closure2()                                      │

00:00:59 #7071 [Verbose] > │     UH0_0(2.0, v0)                                                           │

00:00:59 #7072 [Verbose] > │ and closure0 () () : UH0 =                                                   │

00:00:59 #7073 [Verbose] > │     let v0 : (unit -> UH0) = closure1()                                      │

00:00:59 #7074 [Verbose] > │     UH0_0(1.0, v0)                                                           │

00:00:59 #7075 [Verbose] > │ and closure129 () () : UH1 =                                                 │

00:00:59 #7076 [Verbose] > │     UH1_1                                                                    │

00:00:59 #7077 [Verbose] > │ and closure128 () () : UH1 =                                                 │

00:00:59 #7078 [Verbose] > │     let v0 : (unit -> UH1) = closure129()                                    │

00:00:59 #7079 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.64, 0.0007224452478461016, 0.0, 0.0, 0.0,  │

00:00:59 #7080 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7081 [Verbose] > │ and closure127 () () : UH1 =                                                 │

00:00:59 #7082 [Verbose] > │     let v0 : (unit -> UH1) = closure128()                                    │

00:00:59 #7083 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.63, 0.001429728391993452, 0.0, 0.0, 0.0,   │

00:00:59 #7084 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7085 [Verbose] > │ and closure126 () () : UH1 =                                                 │

00:00:59 #7086 [Verbose] > │     let v0 : (unit -> UH1) = closure127()                                    │

00:00:59 #7087 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.62, 0.0021070055388626528, 0.0, 0.0, 0.0,  │

00:00:59 #7088 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7089 [Verbose] > │ and closure125 () () : UH1 =                                                 │

00:00:59 #7090 [Verbose] > │     let v0 : (unit -> UH1) = closure126()                                    │

00:00:59 #7091 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.61, 0.0027400625367733585, 0.0, 0.0, 0.0,  │

00:00:59 #7092 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7093 [Verbose] > │ and closure124 () () : UH1 =                                                 │

00:00:59 #7094 [Verbose] > │     let v0 : (unit -> UH1) = closure125()                                    │

00:00:59 #7095 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.6, 0.0033156132912039783, 0.0, 0.0, 0.0,   │

00:00:59 #7096 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7097 [Verbose] > │ and closure123 () () : UH1 =                                                 │

00:00:59 #7098 [Verbose] > │     let v0 : (unit -> UH1) = closure124()                                    │

00:00:59 #7099 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.59, 0.003821578602729245, 0.0, 0.0, 0.0,   │

00:00:59 #7100 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7101 [Verbose] > │ and closure122 () () : UH1 =                                                 │

00:00:59 #7102 [Verbose] > │     let v0 : (unit -> UH1) = closure123()                                    │

00:00:59 #7103 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.5800000000000001, 0.004247339675607605,    │

00:00:59 #7104 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7105 [Verbose] > │ and closure121 () () : UH1 =                                                 │

00:00:59 #7106 [Verbose] > │     let v0 : (unit -> UH1) = closure122()                                    │

00:00:59 #7107 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.5700000000000001, 0.004583960976582912,    │

00:00:59 #7108 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7109 [Verbose] > │ and closure120 () () : UH1 =                                                 │

00:00:59 #7110 [Verbose] > │     let v0 : (unit -> UH1) = closure121()                                    │

00:00:59 #7111 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.56, 0.004824377766717758, 0.0, 0.0, 0.0,   │

00:00:59 #7112 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7113 [Verbose] > │ and closure119 () () : UH1 =                                                 │

00:00:59 #7114 [Verbose] > │     let v0 : (unit -> UH1) = closure120()                                    │

00:00:59 #7115 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.55, 0.004963544370490271, 0.0, 0.0, 0.0,   │

00:00:59 #7116 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7117 [Verbose] > │ and closure118 () () : UH1 =                                                 │

00:00:59 #7118 [Verbose] > │     let v0 : (unit -> UH1) = closure119()                                    │

00:00:59 #7119 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.54, 0.004998540070400965, 0.0, 0.0, 0.0,   │

00:00:59 #7120 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7121 [Verbose] > │ and closure117 () () : UH1 =                                                 │

00:00:59 #7122 [Verbose] > │     let v0 : (unit -> UH1) = closure118()                                    │

00:00:59 #7123 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.53, 0.004928630404658255, 0.0, 0.0, 0.0,   │

00:00:59 #7124 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7125 [Verbose] > │ and closure116 () () : UH1 =                                                 │

00:00:59 #7126 [Verbose] > │     let v0 : (unit -> UH1) = closure117()                                    │

00:00:59 #7127 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.52, 0.004755282581475766, 0.0, 0.0, 0.0,   │

00:00:59 #7128 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7129 [Verbose] > │ and closure115 () () : UH1 =                                                 │

00:00:59 #7130 [Verbose] > │     let v0 : (unit -> UH1) = closure116()                                    │

00:00:59 #7131 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.51, 0.0044821346864785195, 0.0, 0.0, 0.0,  │

00:00:59 #7132 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7133 [Verbose] > │ and closure114 () () : UH1 =                                                 │

00:00:59 #7134 [Verbose] > │     let v0 : (unit -> UH1) = closure115()                                    │

00:00:59 #7135 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.5, 0.0041149193294682815, 0.0, 0.0, 0.0,   │

00:00:59 #7136 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7137 [Verbose] > │ and closure113 () () : UH1 =                                                 │

00:00:59 #7138 [Verbose] > │     let v0 : (unit -> UH1) = closure114()                                    │

00:00:59 #7139 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.49, 0.0036613433329888622, 0.0, 0.0, 0.0,  │

00:00:59 #7140 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7141 [Verbose] > │ and closure112 () () : UH1 =                                                 │

00:00:59 #7142 [Verbose] > │     let v0 : (unit -> UH1) = closure113()                                    │

00:00:59 #7143 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.48000000000000004, 0.003130925987691568,   │

00:00:59 #7144 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7145 [Verbose] > │ and closure111 () () : UH1 =                                                 │

00:00:59 #7146 [Verbose] > │     let v0 : (unit -> UH1) = closure112()                                    │

00:00:59 #7147 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.47000000000000003, 0.002534799269067953,   │

00:00:59 #7148 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7149 [Verbose] > │ and closure110 () () : UH1 =                                                 │

00:00:59 #7150 [Verbose] > │     let v0 : (unit -> UH1) = closure111()                                    │

00:00:59 #7151 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.46, 0.0018854742084416021, 0.0, 0.0, 0.0,  │

00:00:59 #7152 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7153 [Verbose] > │ and closure109 () () : UH1 =                                                 │

00:00:59 #7154 [Verbose] > │     let v0 : (unit -> UH1) = closure110()                                    │

00:00:59 #7155 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.45, 0.0011965783214377866, 0.0, 0.0, 0.0,  │

00:00:59 #7156 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7157 [Verbose] > │ and closure108 () () : UH1 =                                                 │

00:00:59 #7158 [Verbose] > │     let v0 : (unit -> UH1) = closure109()                                    │

00:00:59 #7159 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.44, 0.0004825696045725713, 0.0, 0.0, 0.0,  │

00:00:59 #7160 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7161 [Verbose] > │ and closure107 () () : UH1 =                                                 │

00:00:59 #7162 [Verbose] > │     let v0 : (unit -> UH1) = closure108()                                    │

00:00:59 #7163 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.43, -0.00024156689762753724, 0.0, 0.0,     │

00:00:59 #7164 [Verbose] > │ 0.0, 0.0, 0.0, v0)                                                           │

00:00:59 #7165 [Verbose] > │ and closure106 () () : UH1 =                                                 │

00:00:59 #7166 [Verbose] > │     let v0 : (unit -> UH1) = closure107()                                    │

00:00:59 #7167 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.42000000000000004, -0.0009606335867685414, │

00:00:59 #7168 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7169 [Verbose] > │ and closure105 () () : UH1 =                                                 │

00:00:59 #7170 [Verbose] > │     let v0 : (unit -> UH1) = closure106()                                    │

00:00:59 #7171 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.41000000000000003, -0.0016595392656426435, │

00:00:59 #7172 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7173 [Verbose] > │ and closure104 () () : UH1 =                                                 │

00:00:59 #7174 [Verbose] > │     let v0 : (unit -> UH1) = closure105()                                    │

00:00:59 #7175 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.4, -0.002323615860218846, 0.0, 0.0, 0.0,   │

00:00:59 #7176 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7177 [Verbose] > │ and closure103 () () : UH1 =                                                 │

00:00:59 #7178 [Verbose] > │     let v0 : (unit -> UH1) = closure104()                                    │

00:00:59 #7179 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.39, -0.002938926261462367, 0.0, 0.0, 0.0,  │

00:00:59 #7180 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7181 [Verbose] > │ and closure102 () () : UH1 =                                                 │

00:00:59 #7182 [Verbose] > │     let v0 : (unit -> UH1) = closure103()                                    │

00:00:59 #7183 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.38, -0.0034925568262446837, 0.0, 0.0, 0.0, │

00:00:59 #7184 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7185 [Verbose] > │ and closure101 () () : UH1 =                                                 │

00:00:59 #7186 [Verbose] > │     let v0 : (unit -> UH1) = closure102()                                    │

00:00:59 #7187 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.37, -0.003972888398568774, 0.0, 0.0, 0.0,  │

00:00:59 #7188 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7189 [Verbose] > │ and closure100 () () : UH1 =                                                 │

00:00:59 #7190 [Verbose] > │     let v0 : (unit -> UH1) = closure101()                                    │

00:00:59 #7191 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.36000000000000004, -0.004369840163132589,  │

00:00:59 #7192 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7193 [Verbose] > │ and closure99 () () : UH1 =                                                  │

00:00:59 #7194 [Verbose] > │     let v0 : (unit -> UH1) = closure100()                                    │

00:00:59 #7195 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.35000000000000003, -0.004675081213427074,  │

00:00:59 #7196 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7197 [Verbose] > │ and closure98 () () : UH1 =                                                  │

00:00:59 #7198 [Verbose] > │     let v0 : (unit -> UH1) = closure99()                                     │

00:00:59 #7199 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.34, -0.004882205394146361, 0.0, 0.0, 0.0,  │

00:00:59 #7200 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7201 [Verbose] > │ and closure97 () () : UH1 =                                                  │

00:00:59 #7202 [Verbose] > │     let v0 : (unit -> UH1) = closure98()                                     │

00:00:59 #7203 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.33, -0.004986865748457456, 0.0, 0.0, 0.0,  │

00:00:59 #7204 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7205 [Verbose] > │ and closure96 () () : UH1 =                                                  │

00:00:59 #7206 [Verbose] > │     let v0 : (unit -> UH1) = closure97()                                     │

00:00:59 #7207 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.32, -0.004986865748457456, 0.0, 0.0, 0.0,  │

00:00:59 #7208 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7209 [Verbose] > │ and closure95 () () : UH1 =                                                  │

00:00:59 #7210 [Verbose] > │     let v0 : (unit -> UH1) = closure96()                                     │

00:00:59 #7211 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.31, -0.004882205394146359, 0.0, 0.0, 0.0,  │

00:00:59 #7212 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7213 [Verbose] > │ and closure94 () () : UH1 =                                                  │

00:00:59 #7214 [Verbose] > │     let v0 : (unit -> UH1) = closure95()                                     │

00:00:59 #7215 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.3, -0.004675081213427074, 0.0, 0.0, 0.0,   │

00:00:59 #7216 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7217 [Verbose] > │ and closure93 () () : UH1 =                                                  │

00:00:59 #7218 [Verbose] > │     let v0 : (unit -> UH1) = closure94()                                     │

00:00:59 #7219 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.29000000000000004, -0.00436984016313259,   │

00:00:59 #7220 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7221 [Verbose] > │ and closure92 () () : UH1 =                                                  │

00:00:59 #7222 [Verbose] > │     let v0 : (unit -> UH1) = closure93()                                     │

00:00:59 #7223 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.28, -0.003972888398568771, 0.0, 0.0, 0.0,  │

00:00:59 #7224 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7225 [Verbose] > │ and closure91 () () : UH1 =                                                  │

00:00:59 #7226 [Verbose] > │     let v0 : (unit -> UH1) = closure92()                                     │

00:00:59 #7227 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.27, -0.003492556826244686, 0.0, 0.0, 0.0,  │

00:00:59 #7228 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7229 [Verbose] > │ and closure90 () () : UH1 =                                                  │

00:00:59 #7230 [Verbose] > │     let v0 : (unit -> UH1) = closure91()                                     │

00:00:59 #7231 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.26, -0.0029389262614623636, 0.0, 0.0, 0.0, │

00:00:59 #7232 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7233 [Verbose] > │ and closure89 () () : UH1 =                                                  │

00:00:59 #7234 [Verbose] > │     let v0 : (unit -> UH1) = closure90()                                     │

00:00:59 #7235 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.25, -0.002323615860218842, 0.0, 0.0, 0.0,  │

00:00:59 #7236 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7237 [Verbose] > │ and closure88 () () : UH1 =                                                  │

00:00:59 #7238 [Verbose] > │     let v0 : (unit -> UH1) = closure89()                                     │

00:00:59 #7239 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.24000000000000002, -0.001659539265642642,  │

00:00:59 #7240 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7241 [Verbose] > │ and closure87 () () : UH1 =                                                  │

00:00:59 #7242 [Verbose] > │     let v0 : (unit -> UH1) = closure88()                                     │

00:00:59 #7243 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.23, -0.0009606335867685418, 0.0, 0.0, 0.0, │

00:00:59 #7244 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7245 [Verbose] > │ and closure86 () () : UH1 =                                                  │

00:00:59 #7246 [Verbose] > │     let v0 : (unit -> UH1) = closure87()                                     │

00:00:59 #7247 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.22, -0.00024156689762753317, 0.0, 0.0,     │

00:00:59 #7248 [Verbose] > │ 0.0, 0.0, 0.0, v0)                                                           │

00:00:59 #7249 [Verbose] > │ and closure85 () () : UH1 =                                                  │

00:00:59 #7250 [Verbose] > │     let v0 : (unit -> UH1) = closure86()                                     │

00:00:59 #7251 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.21000000000000002, 0.00048256960457257535, │

00:00:59 #7252 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7253 [Verbose] > │ and closure84 () () : UH1 =                                                  │

00:00:59 #7254 [Verbose] > │     let v0 : (unit -> UH1) = closure85()                                     │

00:00:59 #7255 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.2, 0.0011965783214377905, 0.0, 0.0, 0.0,   │

00:00:59 #7256 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7257 [Verbose] > │ and closure83 () () : UH1 =                                                  │

00:00:59 #7258 [Verbose] > │     let v0 : (unit -> UH1) = closure84()                                     │

00:00:59 #7259 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.19, 0.0018854742084416015, 0.0, 0.0, 0.0,  │

00:00:59 #7260 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7261 [Verbose] > │ and closure82 () () : UH1 =                                                  │

00:00:59 #7262 [Verbose] > │     let v0 : (unit -> UH1) = closure83()                                     │

00:00:59 #7263 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.18000000000000002, 0.002534799269067951,   │

00:00:59 #7264 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7265 [Verbose] > │ and closure81 () () : UH1 =                                                  │

00:00:59 #7266 [Verbose] > │     let v0 : (unit -> UH1) = closure82()                                     │

00:00:59 #7267 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.17, 0.0031309259876915697, 0.0, 0.0, 0.0,  │

00:00:59 #7268 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7269 [Verbose] > │ and closure80 () () : UH1 =                                                  │

00:00:59 #7270 [Verbose] > │     let v0 : (unit -> UH1) = closure81()                                     │

00:00:59 #7271 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.16, 0.0036613433329888666, 0.0, 0.0, 0.0,  │

00:00:59 #7272 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7273 [Verbose] > │ and closure79 () () : UH1 =                                                  │

00:00:59 #7274 [Verbose] > │     let v0 : (unit -> UH1) = closure80()                                     │

00:00:59 #7275 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.15000000000000002, 0.0041149193294682815,  │

00:00:59 #7276 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7277 [Verbose] > │ and closure78 () () : UH1 =                                                  │

00:00:59 #7278 [Verbose] > │     let v0 : (unit -> UH1) = closure79()                                     │

00:00:59 #7279 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.14, 0.004482134686478519, 0.0, 0.0, 0.0,   │

00:00:59 #7280 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7281 [Verbose] > │ and closure77 () () : UH1 =                                                  │

00:00:59 #7282 [Verbose] > │     let v0 : (unit -> UH1) = closure78()                                     │

00:00:59 #7283 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.13, 0.004755282581475768, 0.0, 0.0, 0.0,   │

00:00:59 #7284 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7285 [Verbose] > │ and closure76 () () : UH1 =                                                  │

00:00:59 #7286 [Verbose] > │     let v0 : (unit -> UH1) = closure77()                                     │

00:00:59 #7287 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.12, 0.004928630404658255, 0.0, 0.0, 0.0,   │

00:00:59 #7288 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7289 [Verbose] > │ and closure75 () () : UH1 =                                                  │

00:00:59 #7290 [Verbose] > │     let v0 : (unit -> UH1) = closure76()                                     │

00:00:59 #7291 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.11, 0.004998540070400965, 0.0, 0.0, 0.0,   │

00:00:59 #7292 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7293 [Verbose] > │ and closure74 () () : UH1 =                                                  │

00:00:59 #7294 [Verbose] > │     let v0 : (unit -> UH1) = closure75()                                     │

00:00:59 #7295 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.09999999999999999, 0.00496354437049027,    │

00:00:59 #7296 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7297 [Verbose] > │ and closure73 () () : UH1 =                                                  │

00:00:59 #7298 [Verbose] > │     let v0 : (unit -> UH1) = closure74()                                     │

00:00:59 #7299 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.09, 0.004824377766717757, 0.0, 0.0, 0.0,   │

00:00:59 #7300 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7301 [Verbose] > │ and closure72 () () : UH1 =                                                  │

00:00:59 #7302 [Verbose] > │     let v0 : (unit -> UH1) = closure73()                                     │

00:00:59 #7303 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.08, 0.004583960976582912, 0.0, 0.0, 0.0,   │

00:00:59 #7304 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7305 [Verbose] > │ and closure71 () () : UH1 =                                                  │

00:00:59 #7306 [Verbose] > │     let v0 : (unit -> UH1) = closure72()                                     │

00:00:59 #7307 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.06999999999999999, 0.004247339675607605,   │

00:00:59 #7308 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7309 [Verbose] > │ and closure70 () () : UH1 =                                                  │

00:00:59 #7310 [Verbose] > │     let v0 : (unit -> UH1) = closure71()                                     │

00:00:59 #7311 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.060000000000000005, 0.0038215786027292415, │

00:00:59 #7312 [Verbose] > │ 0.0, 0.0, 0.0, 0.0, 0.0, v0)                                                 │

00:00:59 #7313 [Verbose] > │ and closure69 () () : UH1 =                                                  │

00:00:59 #7314 [Verbose] > │     let v0 : (unit -> UH1) = closure70()                                     │

00:00:59 #7315 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.05, 0.0033156132912039757, 0.0, 0.0, 0.0,  │

00:00:59 #7316 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7317 [Verbose] > │ and closure68 () () : UH1 =                                                  │

00:00:59 #7318 [Verbose] > │     let v0 : (unit -> UH1) = closure69()                                     │

00:00:59 #7319 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.04, 0.00274006253677335, 0.0, 0.0, 0.0,    │

00:00:59 #7320 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7321 [Verbose] > │ and closure67 () () : UH1 =                                                  │

00:00:59 #7322 [Verbose] > │     let v0 : (unit -> UH1) = closure68()                                     │

00:00:59 #7323 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.03, 0.0021070055388626454, 0.0, 0.0, 0.0,  │

00:00:59 #7324 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7325 [Verbose] > │ and closure66 () () : UH1 =                                                  │

00:00:59 #7326 [Verbose] > │     let v0 : (unit -> UH1) = closure67()                                     │

00:00:59 #7327 [Verbose] > │     UH1_0(0.0, 8.422578125E-06, 0.02, 0.0014297283919934465, 0.0, 0.0, 0.0,  │

00:00:59 #7328 [Verbose] > │ 0.0, 0.0, v0)                                                                │

00:00:59 #7329 [Verbose] > │ and closure132 (v0 : (unit -> UH1), v1 : (unit -> UH3)) () : UH1 =           │

00:00:59 #7330 [Verbose] > │     let v2 : UH3 = v1 ()                                                     │

00:00:59 #7331 [Verbose] > │     let v3 : UH1 = v0 ()                                                     │

00:00:59 #7332 [Verbose] > │     match v2 with                                                            │

00:00:59 #7333 [Verbose] > │     | UH3_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons *)  │

00:00:59 #7334 [Verbose] > │         match v3 with                                                        │

00:00:59 #7335 [Verbose] > │         | UH1_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (*      │

00:00:59 #7336 [Verbose] > │ StreamCons *)                                                                │

00:00:59 #7337 [Verbose] > │             let v24 : float = v9 * 1.25E-05                                  │

00:00:59 #7338 [Verbose] > │             let v25 : float = v19 + v24                                      │

00:00:59 #7339 [Verbose] > │             let v26 : float = 1.25E-05 * v6                                  │

00:00:59 #7340 [Verbose] > │             let v27 : float = 1.25E-05 * v7                                  │

00:00:59 #7341 [Verbose] > │             let v28 : float = 1.25E-05 * v8                                  │

00:00:59 #7342 [Verbose] > │             let v29 : float = v16 + v26                                      │

00:00:59 #7343 [Verbose] > │             let v30 : float = v17 + v27                                      │

00:00:59 #7344 [Verbose] > │             let v31 : float = v18 + v28                                      │

00:00:59 #7345 [Verbose] > │             let v32 : float = 1.25E-05 * v10                                 │

00:00:59 #7346 [Verbose] > │             let v33 : float = 1.25E-05 * v11                                 │

00:00:59 #7347 [Verbose] > │             let v34 : float = 1.25E-05 * v12                                 │

00:00:59 #7348 [Verbose] > │             let v35 : float = v20 + v32                                      │

00:00:59 #7349 [Verbose] > │             let v36 : float = v21 + v33                                      │

00:00:59 #7350 [Verbose] > │             let v37 : float = v22 + v34                                      │

00:00:59 #7351 [Verbose] > │             let v38 : (unit -> UH1) = closure132(v23, v13)                   │

00:00:59 #7352 [Verbose] > │             UH1_0(v14, v15, v29, v30, v31, v25, v35, v36, v37, v38)          │

00:00:59 #7353 [Verbose] > │         | UH1_1 -> (* StreamNil *)                                           │

00:00:59 #7354 [Verbose] > │             UH1_1                                                            │

00:00:59 #7355 [Verbose] > │     | UH3_1 -> (* StreamNil *)                                               │

00:00:59 #7356 [Verbose] > │         UH1_1                                                                │

00:00:59 #7357 [Verbose] > │ and closure133 (v0 : UH1) () : UH1 =                                         │

00:00:59 #7358 [Verbose] > │     v0                                                                       │

00:00:59 #7359 [Verbose] > │ and closure134 (v0 : UH1, v1 : Mut0) () : UH1 =                              │

00:00:59 #7360 [Verbose] > │     let v2 : US0 = v1.l0                                                     │

00:00:59 #7361 [Verbose] > │     match v2 with                                                            │

00:00:59 #7362 [Verbose] > │     | US0_0(v3) -> (* Computed *)                                            │

00:00:59 #7363 [Verbose] > │         v3                                                                   │

00:00:59 #7364 [Verbose] > │     | US0_1(v4) -> (* NotComputed *)                                         │

00:00:59 #7365 [Verbose] > │         let v5 : UH1 = v4 ()                                                 │

00:00:59 #7366 [Verbose] > │         let v20 : UH1 =                                                      │

00:00:59 #7367 [Verbose] > │             match v5 with                                                    │

00:00:59 #7368 [Verbose] > │             | UH1_0(v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) -> (*     │

00:00:59 #7369 [Verbose] > │ StreamCons *)                                                                │

00:00:59 #7370 [Verbose] > │                 let v17 : (unit -> UH1) = method3(v0, v16)                   │

00:00:59 #7371 [Verbose] > │                 UH1_0(v7, v8, v9, v10, v11, v12, v13, v14, v15, v17)         │

00:00:59 #7372 [Verbose] > │             | UH1_1 -> (* StreamNil *)                                       │

00:00:59 #7373 [Verbose] > │                 UH1_1                                                        │

00:00:59 #7374 [Verbose] > │         let v21 : US0 = US0_0(v20)                                           │

00:00:59 #7375 [Verbose] > │         v1.l0 <- v21                                                         │

00:00:59 #7376 [Verbose] > │         v20                                                                  │

00:00:59 #7377 [Verbose] > │ and method3 (v0 : UH1, v1 : (unit -> UH1)) : (unit -> UH1) =                 │

00:00:59 #7378 [Verbose] > │     let v2 : US0 = US0_1(v1)                                                 │

00:00:59 #7379 [Verbose] > │     let v3 : Mut0 = {l0 = v2} : Mut0                                         │

00:00:59 #7380 [Verbose] > │     closure134(v0, v3)                                                       │

00:00:59 #7381 [Verbose] > │ and closure135 (v0 : (unit -> UH1), v1 : (unit -> UH3)) () : UH1 =           │

00:00:59 #7382 [Verbose] > │     let v2 : UH3 = v1 ()                                                     │

00:00:59 #7383 [Verbose] > │     let v3 : UH1 = v0 ()                                                     │

00:00:59 #7384 [Verbose] > │     match v2 with                                                            │

00:00:59 #7385 [Verbose] > │     | UH3_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons *)  │

00:00:59 #7386 [Verbose] > │         match v3 with                                                        │

00:00:59 #7387 [Verbose] > │         | UH1_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (*      │

00:00:59 #7388 [Verbose] > │ StreamCons *)                                                                │

00:00:59 #7389 [Verbose] > │             let v24 : float = v9 * 2.5E-05                                   │

00:00:59 #7390 [Verbose] > │             let v25 : float = v19 + v24                                      │

00:00:59 #7391 [Verbose] > │             let v26 : float = 2.5E-05 * v6                                   │

00:00:59 #7392 [Verbose] > │             let v27 : float = 2.5E-05 * v7                                   │

00:00:59 #7393 [Verbose] > │             let v28 : float = 2.5E-05 * v8                                   │

00:00:59 #7394 [Verbose] > │             let v29 : float = v16 + v26                                      │

00:00:59 #7395 [Verbose] > │             let v30 : float = v17 + v27                                      │

00:00:59 #7396 [Verbose] > │             let v31 : float = v18 + v28                                      │

00:00:59 #7397 [Verbose] > │             let v32 : float = 2.5E-05 * v10                                  │

00:00:59 #7398 [Verbose] > │             let v33 : float = 2.5E-05 * v11                                  │

00:00:59 #7399 [Verbose] > │             let v34 : float = 2.5E-05 * v12                                  │

00:00:59 #7400 [Verbose] > │             let v35 : float = v20 + v32                                      │

00:00:59 #7401 [Verbose] > │             let v36 : float = v21 + v33                                      │

00:00:59 #7402 [Verbose] > │             let v37 : float = v22 + v34                                      │

00:00:59 #7403 [Verbose] > │             let v38 : (unit -> UH1) = closure135(v23, v13)                   │

00:00:59 #7404 [Verbose] > │             UH1_0(v14, v15, v29, v30, v31, v25, v35, v36, v37, v38)          │

00:00:59 #7405 [Verbose] > │         | UH1_1 -> (* StreamNil *)                                           │

00:00:59 #7406 [Verbose] > │             UH1_1                                                            │

00:00:59 #7407 [Verbose] > │     | UH3_1 -> (* StreamNil *)                                               │

00:00:59 #7408 [Verbose] > │         UH1_1                                                                │

00:00:59 #7409 [Verbose] > │ and closure136 (v0 : (unit -> UH3), v1 : (unit -> UH3)) () : UH3 =           │

00:00:59 #7410 [Verbose] > │     let v2 : UH3 = v1 ()                                                     │

00:00:59 #7411 [Verbose] > │     let v3 : UH3 = v0 ()                                                     │

00:00:59 #7412 [Verbose] > │     match v2 with                                                            │

00:00:59 #7413 [Verbose] > │     | UH3_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons *)  │

00:00:59 #7414 [Verbose] > │         match v3 with                                                        │

00:00:59 #7415 [Verbose] > │         | UH3_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (*      │

00:00:59 #7416 [Verbose] > │ StreamCons *)                                                                │

00:00:59 #7417 [Verbose] > │             let v24 : float = v4 + v14                                       │

00:00:59 #7418 [Verbose] > │             let v25 : float = v5 + v15                                       │

00:00:59 #7419 [Verbose] > │             let v26 : float = v9 + v19                                       │

00:00:59 #7420 [Verbose] > │             let v27 : float = v6 + v16                                       │

00:00:59 #7421 [Verbose] > │             let v28 : float = v7 + v17                                       │

00:00:59 #7422 [Verbose] > │             let v29 : float = v8 + v18                                       │

00:00:59 #7423 [Verbose] > │             let v30 : float = v10 + v20                                      │

00:00:59 #7424 [Verbose] > │             let v31 : float = v11 + v21                                      │

00:00:59 #7425 [Verbose] > │             let v32 : float = v12 + v22                                      │

00:00:59 #7426 [Verbose] > │             let v33 : (unit -> UH3) = closure136(v23, v13)                   │

00:00:59 #7427 [Verbose] > │             UH3_0(v24, v25, v27, v28, v29, v26, v30, v31, v32, v33)          │

00:00:59 #7428 [Verbose] > │         | UH3_1 -> (* StreamNil *)                                           │

00:00:59 #7429 [Verbose] > │             UH3_1                                                            │

00:00:59 #7430 [Verbose] > │     | UH3_1 -> (* StreamNil *)                                               │

00:00:59 #7431 [Verbose] > │         UH3_1                                                                │

00:00:59 #7432 [Verbose] > │ and closure137 (v0 : (unit -> UH1), v1 : (unit -> UH3)) () : UH1 =           │

00:00:59 #7433 [Verbose] > │     let v2 : UH3 = v1 ()                                                     │

00:00:59 #7434 [Verbose] > │     let v3 : UH1 = v0 ()                                                     │

00:00:59 #7435 [Verbose] > │     match v2 with                                                            │

00:00:59 #7436 [Verbose] > │     | UH3_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) -> (* StreamCons *)  │

00:00:59 #7437 [Verbose] > │         match v3 with                                                        │

00:00:59 #7438 [Verbose] > │         | UH1_0(v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) -> (*      │

00:00:59 #7439 [Verbose] > │ StreamCons *)                                                                │

00:00:59 #7440 [Verbose] > │             let v24 : float = v9 * 4.166666666666667E-06                     │

00:00:59 #7441 [Verbose] > │             let v25 : float = v19 + v24                                      │

00:00:59 #7442 [Verbose] > │             let v26 : float = 4.166666666666667E-06 * v6                     │

00:00:59 #7443 [Verbose] > │             let v27 : float = 4.166666666666667E-06 * v7                     │

00:00:59 #7444 [Verbose] > │             let v28 : float = 4.166666666666667E-06 * v8                     │

00:00:59 #7445 [Verbose] > │             let v29 : float = v16 + v26                                      │

00:00:59 #7446 [Verbose] > │             let v30 : float = v17 + v27                                      │

00:00:59 #7447 [Verbose] > │             let v31 : float = v18 + v28                                      │

00:00:59 #7448 [Verbose] > │             let v32 : float = 4.166666666666667E-06 * v10                    │

00:00:59 #7449 [Verbose] > │             let v33 : float = 4.166666666666667E-06 * v11                    │

00:00:59 #7450 [Verbose] > │             let v34 : float = 4.166666666666667E-06 * v12                    │

00:00:59 #7451 [Verbose] > │             let v35 : float = v20 + v32                                      │

00:00:59 #7452 [Verbose] > │             let v36 : float = v21 + v33                                      │

00:00:59 #7453 [Verbose] > │             let v37 : float = v22 + v34                                      │

00:00:59 #7454 [Verbose] > │             let v38 : (unit -> UH1) = closure137(v23, v13)                   │

00:00:59 #7455 [Verbose] > │             UH1_0(v14, v15, v29, v30, v31, v25, v35, v36, v37, v38)          │

00:00:59 #7456 [Verbose] > │         | UH1_1 -> (* StreamNil *)                                           │

00:00:59 #7457 [Verbose] > │             UH1_1                                                            │

00:00:59 #7458 [Verbose] > │     | UH3_1 -> (* StreamNil *)                                               │

00:00:59 #7459 [Verbose] > │         UH1_1                                                                │

00:00:59 #7460 [Verbose] > │ and closure131 (v0 : (UH1 -> UH3)) (v1 : UH1) : UH1 =                        │

00:00:59 #7461 [Verbose] > │     let v2 : UH3 = v0 v1                                                     │

00:00:59 #7462 [Verbose] > │     let v44 : UH1 =                                                          │

00:00:59 #7463 [Verbose] > │         match v2 with                                                        │

00:00:59 #7464 [Verbose] > │         | UH3_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* StreamCons  │

00:00:59 #7465 [Verbose] > │ *)                                                                           │

00:00:59 #7466 [Verbose] > │             match v1 with                                                    │

00:00:59 #7467 [Verbose] > │             | UH1_0(v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) -> (*  │

00:00:59 #7468 [Verbose] > │ StreamCons *)                                                                │

00:00:59 #7469 [Verbose] > │                 let v23 : float = v8 * 1.25E-05                              │

00:00:59 #7470 [Verbose] > │                 let v24 : float = v18 + v23                                  │

00:00:59 #7471 [Verbose] > │                 let v25 : float = 1.25E-05 * v5                              │

00:00:59 #7472 [Verbose] > │                 let v26 : float = 1.25E-05 * v6                              │

00:00:59 #7473 [Verbose] > │                 let v27 : float = 1.25E-05 * v7                              │

00:00:59 #7474 [Verbose] > │                 let v28 : float = v15 + v25                                  │

00:00:59 #7475 [Verbose] > │                 let v29 : float = v16 + v26                                  │

00:00:59 #7476 [Verbose] > │                 let v30 : float = v17 + v27                                  │

00:00:59 #7477 [Verbose] > │                 let v31 : float = 1.25E-05 * v9                              │

00:00:59 #7478 [Verbose] > │                 let v32 : float = 1.25E-05 * v10                             │

00:00:59 #7479 [Verbose] > │                 let v33 : float = 1.25E-05 * v11                             │

00:00:59 #7480 [Verbose] > │                 let v34 : float = v19 + v31                                  │

00:00:59 #7481 [Verbose] > │                 let v35 : float = v20 + v32                                  │

00:00:59 #7482 [Verbose] > │                 let v36 : float = v21 + v33                                  │

00:00:59 #7483 [Verbose] > │                 let v37 : (unit -> UH1) = closure132(v22, v12)               │

00:00:59 #7484 [Verbose] > │                 UH1_0(v13, v14, v28, v29, v30, v24, v34, v35, v36, v37)      │

00:00:59 #7485 [Verbose] > │             | UH1_1 -> (* StreamNil *)                                       │

00:00:59 #7486 [Verbose] > │                 UH1_1                                                        │

00:00:59 #7487 [Verbose] > │         | UH3_1 -> (* StreamNil *)                                           │

00:00:59 #7488 [Verbose] > │             UH1_1                                                            │

00:00:59 #7489 [Verbose] > │     let v45 : (unit -> UH1) = closure133(v44)                                │

00:00:59 #7490 [Verbose] > │     let v46 : (unit -> UH1) = method3(v44, v45)                              │

00:00:59 #7491 [Verbose] > │     let v47 : UH1 = v46 ()                                                   │

00:00:59 #7492 [Verbose] > │     let v48 : UH3 = v0 v47                                                   │

00:00:59 #7493 [Verbose] > │     let v90 : UH1 =                                                          │

00:00:59 #7494 [Verbose] > │         match v48 with                                                       │

00:00:59 #7495 [Verbose] > │         | UH3_0(v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) -> (*      │

00:00:59 #7496 [Verbose] > │ StreamCons *)                                                                │

00:00:59 #7497 [Verbose] > │             match v1 with                                                    │

00:00:59 #7498 [Verbose] > │             | UH1_0(v59, v60, v61, v62, v63, v64, v65, v66, v67, v68) -> (*  │

00:00:59 #7499 [Verbose] > │ StreamCons *)                                                                │

00:00:59 #7500 [Verbose] > │                 let v69 : float = v54 * 1.25E-05                             │

00:00:59 #7501 [Verbose] > │                 let v70 : float = v64 + v69                                  │

00:00:59 #7502 [Verbose] > │                 let v71 : float = 1.25E-05 * v51                             │

00:00:59 #7503 [Verbose] > │                 let v72 : float = 1.25E-05 * v52                             │

00:00:59 #7504 [Verbose] > │                 let v73 : float = 1.25E-05 * v53                             │

00:00:59 #7505 [Verbose] > │                 let v74 : float = v61 + v71                                  │

00:00:59 #7506 [Verbose] > │                 let v75 : float = v62 + v72                                  │

00:00:59 #7507 [Verbose] > │                 let v76 : float = v63 + v73                                  │

00:00:59 #7508 [Verbose] > │                 let v77 : float = 1.25E-05 * v55                             │

00:00:59 #7509 [Verbose] > │                 let v78 : float = 1.25E-05 * v56                             │

00:00:59 #7510 [Verbose] > │                 let v79 : float = 1.25E-05 * v57                             │

00:00:59 #7511 [Verbose] > │                 let v80 : float = v65 + v77                                  │

00:00:59 #7512 [Verbose] > │                 let v81 : float = v66 + v78                                  │

00:00:59 #7513 [Verbose] > │                 let v82 : float = v67 + v79                                  │

00:00:59 #7514 [Verbose] > │                 let v83 : (unit -> UH1) = closure132(v68, v58)               │

00:00:59 #7515 [Verbose] > │                 UH1_0(v59, v60, v74, v75, v76, v70, v80, v81, v82, v83)      │

00:00:59 #7516 [Verbose] > │             | UH1_1 -> (* StreamNil *)                                       │

00:00:59 #7517 [Verbose] > │                 UH1_1                                                        │

00:00:59 #7518 [Verbose] > │         | UH3_1 -> (* StreamNil *)                                           │

00:00:59 #7519 [Verbose] > │             UH1_1                                                            │

00:00:59 #7520 [Verbose] > │     let v91 : (unit -> UH1) = closure133(v90)                                │

00:00:59 #7521 [Verbose] > │     let v92 : (unit -> UH1) = method3(v90, v91)                              │

00:00:59 #7522 [Verbose] > │     let v93 : UH1 = v92 ()                                                   │

00:00:59 #7523 [Verbose] > │     let v94 : UH3 = v0 v93                                                   │

00:00:59 #7524 [Verbose] > │     let v136 : UH1 =                                                         │

00:00:59 #7525 [Verbose] > │         match v94 with                                                       │

00:00:59 #7526 [Verbose] > │         | UH3_0(v95, v96, v97, v98, v99, v100, v101, v102, v103, v104) -> (* │

00:00:59 #7527 [Verbose] > │ StreamCons *)                                                                │

00:00:59 #7528 [Verbose] > │             match v1 with                                                    │

00:00:59 #7529 [Verbose] > │             | UH1_0(v105, v106, v107, v108, v109, v110, v111, v112, v113,    │

00:00:59 #7530 [Verbose] > │ v114) -> (* StreamCons *)                                                    │

00:00:59 #7531 [Verbose] > │                 let v115 : float = v100 * 2.5E-05                            │

00:00:59 #7532 [Verbose] > │                 let v116 : float = v110 + v115                               │

00:00:59 #7533 [Verbose] > │                 let v117 : float = 2.5E-05 * v97                             │

00:00:59 #7534 [Verbose] > │                 let v118 : float = 2.5E-05 * v98                             │

00:00:59 #7535 [Verbose] > │                 let v119 : float = 2.5E-05 * v99                             │

00:00:59 #7536 [Verbose] > │                 let v120 : float = v107 + v117                               │

00:00:59 #7537 [Verbose] > │                 let v121 : float = v108 + v118                               │

00:00:59 #7538 [Verbose] > │                 let v122 : float = v109 + v119                               │

00:00:59 #7539 [Verbose] > │                 let v123 : float = 2.5E-05 * v101                            │

00:00:59 #7540 [Verbose] > │                 let v124 : float = 2.5E-05 * v102                            │

00:00:59 #7541 [Verbose] > │                 let v125 : float = 2.5E-05 * v103                            │

00:00:59 #7542 [Verbose] > │                 let v126 : float = v111 + v123                               │

00:00:59 #7543 [Verbose] > │                 let v127 : float = v112 + v124                               │

00:00:59 #7544 [Verbose] > │                 let v128 : float = v113 + v125                               │

00:00:59 #7545 [Verbose] > │                 let v129 : (unit -> UH1) = closure135(v114, v104)            │

00:00:59 #7546 [Verbose] > │                 UH1_0(v105, v106, v120, v121, v122, v116, v126, v127, v128,  │

00:00:59 #7547 [Verbose] > │ v129)                                                                        │

00:00:59 #7548 [Verbose] > │             | UH1_1 -> (* StreamNil *)                                       │

00:00:59 #7549 [Verbose] > │                 UH1_1                                                        │

00:00:59 #7550 [Verbose] > │         | UH3_1 -> (* StreamNil *)                                           │

00:00:59 #7551 [Verbose] > │             UH1_1                                                            │

00:00:59 #7552 [Verbose] > │     let v137 : (unit -> UH1) = closure133(v136)                              │

00:00:59 #7553 [Verbose] > │     let v138 : (unit -> UH1) = method3(v136, v137)                           │

00:00:59 #7554 [Verbose] > │     let v139 : UH1 = v138 ()                                                 │

00:00:59 #7555 [Verbose] > │     let v140 : UH3 = v0 v139                                                 │

00:00:59 #7556 [Verbose] > │     let v177 : UH3 =                                                         │

00:00:59 #7557 [Verbose] > │         match v2 with                                                        │

00:00:59 #7558 [Verbose] > │         | UH3_0(v141, v142, v143, v144, v145, v146, v147, v148, v149, v150)  │

00:00:59 #7559 [Verbose] > │ -> (* StreamCons *)                                                          │

00:00:59 #7560 [Verbose] > │             match v48 with                                                   │

00:00:59 #7561 [Verbose] > │             | UH3_0(v151, v152, v153, v154, v155, v156, v157, v158, v159,    │

00:00:59 #7562 [Verbose] > │ v160) -> (* StreamCons *)                                                    │

00:00:59 #7563 [Verbose] > │                 let v161 : float = v141 + v151                               │

00:00:59 #7564 [Verbose] > │                 let v162 : float = v142 + v152                               │

00:00:59 #7565 [Verbose] > │                 let v163 : float = v146 + v156                               │

00:00:59 #7566 [Verbose] > │                 let v164 : float = v143 + v153                               │

00:00:59 #7567 [Verbose] > │                 let v165 : float = v144 + v154                               │

00:00:59 #7568 [Verbose] > │                 let v166 : float = v145 + v155                               │

00:00:59 #7569 [Verbose] > │                 let v167 : float = v147 + v157                               │

00:00:59 #7570 [Verbose] > │                 let v168 : float = v148 + v158                               │

00:00:59 #7571 [Verbose] > │                 let v169 : float = v149 + v159                               │

00:00:59 #7572 [Verbose] > │                 let v170 : (unit -> UH3) = closure136(v160, v150)            │

00:00:59 #7573 [Verbose] > │                 UH3_0(v161, v162, v164, v165, v166, v163, v167, v168, v169,  │

00:00:59 #7574 [Verbose] > │ v170)                                                                        │

00:00:59 #7575 [Verbose] > │             | UH3_1 -> (* StreamNil *)                                       │

00:00:59 #7576 [Verbose] > │                 UH3_1                                                        │

00:00:59 #7577 [Verbose] > │         | UH3_1 -> (* StreamNil *)                                           │

00:00:59 #7578 [Verbose] > │             UH3_1                                                            │

00:00:59 #7579 [Verbose] > │     let v214 : UH3 =                                                         │

00:00:59 #7580 [Verbose] > │         match v177 with                                                      │

00:00:59 #7581 [Verbose] > │         | UH3_0(v178, v179, v180, v181, v182, v183, v184, v185, v186, v187)  │

00:00:59 #7582 [Verbose] > │ -> (* StreamCons *)                                                          │

00:00:59 #7583 [Verbose] > │             match v48 with                                                   │

00:00:59 #7584 [Verbose] > │             | UH3_0(v188, v189, v190, v191, v192, v193, v194, v195, v196,    │

00:00:59 #7585 [Verbose] > │ v197) -> (* StreamCons *)                                                    │

00:00:59 #7586 [Verbose] > │                 let v198 : float = v178 + v188                               │

00:00:59 #7587 [Verbose] > │                 let v199 : float = v179 + v189                               │

00:00:59 #7588 [Verbose] > │                 let v200 : float = v183 + v193                               │

00:00:59 #7589 [Verbose] > │                 let v201 : float = v180 + v190                               │

00:00:59 #7590 [Verbose] > │                 let v202 : float = v181 + v191                               │

00:00:59 #7591 [Verbose] > │                 let v203 : float = v182 + v192                               │

00:00:59 #7592 [Verbose] > │                 let v204 : float = v184 + v194                               │

00:00:59 #7593 [Verbose] > │                 let v205 : float = v185 + v195                               │

00:00:59 #7594 [Verbose] > │                 let v206 : float = v186 + v196                               │

00:00:59 #7595 [Verbose] > │                 let v207 : (unit -> UH3) = closure136(v197, v187)            │

00:00:59 #7596 [Verbose] > │                 UH3_0(v198, v199, v201, v202, v203, v200, v204, v205, v206,  │

00:00:59 #7597 [Verbose] > │ v207)                                                                        │

00:00:59 #7598 [Verbose] > │             | UH3_1 -> (* StreamNil *)                                       │

00:00:59 #7599 [Verbose] > │                 UH3_1                                                        │

00:00:59 #7600 [Verbose] > │         | UH3_1 -> (* StreamNil *)                                           │

00:00:59 #7601 [Verbose] > │             UH3_1                                                            │

00:00:59 #7602 [Verbose] > │     let v251 : UH3 =                                                         │

00:00:59 #7603 [Verbose] > │         match v214 with                                                      │

00:00:59 #7604 [Verbose] > │         | UH3_0(v215, v216, v217, v218, v219, v220, v221, v222, v223, v224)  │

00:00:59 #7605 [Verbose] > │ -> (* StreamCons *)                                                          │

00:00:59 #7606 [Verbose] > │             match v94 with                                                   │

00:00:59 #7607 [Verbose] > │             | UH3_0(v225, v226, v227, v228, v229, v230, v231, v232, v233,    │

00:00:59 #7608 [Verbose] > │ v234) -> (* StreamCons *)                                                    │

00:00:59 #7609 [Verbose] > │                 let v235 : float = v215 + v225                               │

00:00:59 #7610 [Verbose] > │                 let v236 : float = v216 + v226                               │

00:00:59 #7611 [Verbose] > │                 let v237 : float = v220 + v230                               │

00:00:59 #7612 [Verbose] > │                 let v238 : float = v217 + v227                               │

00:00:59 #7613 [Verbose] > │                 let v239 : float = v218 + v228                               │

00:00:59 #7614 [Verbose] > │                 let v240 : float = v219 + v229                               │

00:00:59 #7615 [Verbose] > │                 let v241 : float = v221 + v231                               │

00:00:59 #7616 [Verbose] > │                 let v242 : float = v222 + v232                               │

00:00:59 #7617 [Verbose] > │                 let v243 : float = v223 + v233                               │

00:00:59 #7618 [Verbose] > │                 let v244 : (unit -> UH3) = closure136(v234, v224)            │

00:00:59 #7619 [Verbose] > │                 UH3_0(v235, v236, v238, v239, v240, v237, v241, v242, v243,  │

00:00:59 #7620 [Verbose] > │ v244)                                                                        │

00:00:59 #7621 [Verbose] > │             | UH3_1 -> (* StreamNil *)                                       │

00:00:59 #7622 [Verbose] > │                 UH3_1                                                        │

00:00:59 #7623 [Verbose] > │         | UH3_1 -> (* StreamNil *)                                           │

00:00:59 #7624 [Verbose] > │             UH3_1                                                            │

00:00:59 #7625 [Verbose] > │     let v288 : UH3 =                                                         │

00:00:59 #7626 [Verbose] > │         match v251 with                                                      │

00:00:59 #7627 [Verbose] > │         | UH3_0(v252, v253, v254, v255, v256, v257, v258, v259, v260, v261)  │

00:00:59 #7628 [Verbose] > │ -> (* StreamCons *)                                                          │

00:00:59 #7629 [Verbose] > │             match v94 with                                                   │

00:00:59 #7630 [Verbose] > │             | UH3_0(v262, v263, v264, v265, v266, v267, v268, v269, v270,    │

00:00:59 #7631 [Verbose] > │ v271) -> (* StreamCons *)                                                    │

00:00:59 #7632 [Verbose] > │                 let v272 : float = v252 + v262                               │

00:00:59 #7633 [Verbose] > │                 let v273 : float = v253 + v263                               │

00:00:59 #7634 [Verbose] > │                 let v274 : float = v257 + v267                               │

00:00:59 #7635 [Verbose] > │                 let v275 : float = v254 + v264                               │

00:00:59 #7636 [Verbose] > │                 let v276 : float = v255 + v265                               │

00:00:59 #7637 [Verbose] > │                 let v277 : float = v256 + v266                               │

00:00:59 #7638 [Verbose] > │                 let v278 : float = v258 + v268                               │

00:00:59 #7639 [Verbose] > │                 let v279 : float = v259 + v269                               │

00:00:59 #7640 [Verbose] > │                 let v280 : float = v260 + v270                               │

00:00:59 #7641 [Verbose] > │                 let v281 : (unit -> UH3) = closure136(v271, v261)            │

00:00:59 #7642 [Verbose] > │                 UH3_0(v272, v273, v275, v276, v277, v274, v278, v279, v280,  │

00:00:59 #7643 [Verbose] > │ v281)                                                                        │

00:00:59 #7644 [Verbose] > │             | UH3_1 -> (* StreamNil *)                                       │

00:00:59 #7645 [Verbose] > │                 UH3_1                                                        │

00:00:59 #7646 [Verbose] > │         | UH3_1 -> (* StreamNil *)                                           │

00:00:59 #7647 [Verbose] > │             UH3_1                                                            │

00:00:59 #7648 [Verbose] > │     let v325 : UH3 =                                                         │

00:00:59 #7649 [Verbose] > │         match v288 with                                                      │

00:00:59 #7650 [Verbose] > │         | UH3_0(v289, v290, v291, v292, v293, v294, v295, v296, v297, v298)  │

00:00:59 #7651 [Verbose] > │ -> (* StreamCons *)                                                          │

00:00:59 #7652 [Verbose] > │             match v140 with                                                  │

00:00:59 #7653 [Verbose] > │             | UH3_0(v299, v300, v301, v302, v303, v304, v305, v306, v307,    │

00:00:59 #7654 [Verbose] > │ v308) -> (* StreamCons *)                                                    │

00:00:59 #7655 [Verbose] > │                 let v309 : float = v289 + v299                               │

00:00:59 #7656 [Verbose] > │                 let v310 : float = v290 + v300                               │

00:00:59 #7657 [Verbose] > │                 let v311 : float = v294 + v304                               │

00:00:59 #7658 [Verbose] > │                 let v312 : float = v291 + v301                               │

00:00:59 #7659 [Verbose] > │                 let v313 : float = v292 + v302                               │

00:00:59 #7660 [Verbose] > │                 let v314 : float = v293 + v303                               │

00:00:59 #7661 [Verbose] > │                 let v315 : float = v295 + v305                               │

00:00:59 #7662 [Verbose] > │                 let v316 : float = v296 + v306                               │

00:00:59 #7663 [Verbose] > │                 let v317 : float = v297 + v307                               │

00:00:59 #7664 [Verbose] > │                 let v318 : (unit -> UH3) = closure136(v308, v298)            │

00:00:59 #7665 [Verbose] > │                 UH3_0(v309, v310, v312, v313, v314, v311, v315, v316, v317,  │

00:00:59 #7666 [Verbose] > │ v318)                                                                        │

00:00:59 #7667 [Verbose] > │             | UH3_1 -> (* StreamNil *)                                       │

00:00:59 #7668 [Verbose] > │                 UH3_1                                                        │

00:00:59 #7669 [Verbose] > │         | UH3_1 -> (* StreamNil *)                                           │

00:00:59 #7670 [Verbose] > │             UH3_1                                                            │

00:00:59 #7671 [Verbose] > │     let v367 : UH1 =                                                         │

00:00:59 #7672 [Verbose] > │         match v325 with                                                      │

00:00:59 #7673 [Verbose] > │         | UH3_0(v326, v327, v328, v329, v330, v331, v332, v333, v334, v335)  │

00:00:59 #7674 [Verbose] > │ -> (* StreamCons *)                                                          │

00:00:59 #7675 [Verbose] > │             match v1 with                                                    │

00:00:59 #7676 [Verbose] > │             | UH1_0(v336, v337, v338, v339, v340, v341, v342, v343, v344,    │

00:00:59 #7677 [Verbose] > │ v345) -> (* StreamCons *)                                                    │

00:00:59 #7678 [Verbose] > │                 let v346 : float = v331 * 4.166666666666667E-06              │

00:00:59 #7679 [Verbose] > │                 let v347 : float = v341 + v346                               │

00:00:59 #7680 [Verbose] > │                 let v348 : float = 4.166666666666667E-06 * v328              │

00:00:59 #7681 [Verbose] > │                 let v349 : float = 4.166666666666667E-06 * v329              │

00:00:59 #7682 [Verbose] > │                 let v350 : float = 4.166666666666667E-06 * v330              │

00:00:59 #7683 [Verbose] > │                 let v351 : float = v338 + v348                               │

00:00:59 #7684 [Verbose] > │                 let v352 : float = v339 + v349                               │

00:00:59 #7685 [Verbose] > │                 let v353 : float = v340 + v350                               │

00:00:59 #7686 [Verbose] > │                 let v354 : float = 4.166666666666667E-06 * v332              │

00:00:59 #7687 [Verbose] > │                 let v355 : float = 4.166666666666667E-06 * v333              │

00:00:59 #7688 [Verbose] > │                 let v356 : float = 4.166666666666667E-06 * v334              │

00:00:59 #7689 [Verbose] > │                 let v357 : float = v342 + v354                               │

00:00:59 #7690 [Verbose] > │                 let v358 : float = v343 + v355                               │

00:00:59 #7691 [Verbose] > │                 let v359 : float = v344 + v356                               │

00:00:59 #7692 [Verbose] > │                 let v360 : (unit -> UH1) = closure137(v345, v335)            │

00:00:59 #7693 [Verbose] > │                 UH1_0(v336, v337, v351, v352, v353, v347, v357, v358, v359,  │

00:00:59 #7694 [Verbose] > │ v360)                                                                        │

00:00:59 #7695 [Verbose] > │             | UH1_1 -> (* StreamNil *)                                       │

00:00:59 #7696 [Verbose] > │                 UH1_1                                                        │

00:00:59 #7697 [Verbose] > │         | UH3_1 -> (* StreamNil *)                                           │

00:00:59 #7698 [Verbose] > │             UH1_1                                                            │

00:00:59 #7699 [Verbose] > │     let v368 : (unit -> UH1) = closure133(v367)                              │

00:00:59 #7700 [Verbose] > │     let v369 : (unit -> UH1) = method3(v367, v368)                           │

00:00:59 #7701 [Verbose] > │     let v370 : UH1 = v369 ()                                                 │

00:00:59 #7702 [Verbose] > │     v370                                                                     │

00:00:59 #7703 [Verbose] > │ and closure130 () (v0 : (UH1 -> UH3)) : (UH1 -> UH1) =                       │

00:00:59 #7704 [Verbose] > │     closure131(v0)                                                           │

00:00:59 #7705 [Verbose] > │ and method2 () : ((UH1 -> UH3) -> (UH1 -> UH1)) =                            │

00:00:59 #7706 [Verbose] > │     closure130()                                                             │

00:00:59 #7707 [Verbose] > │ and closure138 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 │

00:00:59 #7708 [Verbose] > │ : float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *   │

00:00:59 #7709 [Verbose] > │ float * float) =                                                             │

00:00:59 #7710 [Verbose] > │     let v9 : float = v2 * v2                                                 │

00:00:59 #7711 [Verbose] > │     let v10 : float = v3 * v3                                                │

00:00:59 #7712 [Verbose] > │     let v11 : float = v9 + v10                                               │

00:00:59 #7713 [Verbose] > │     let v12 : float = v4 * v4                                                │

00:00:59 #7714 [Verbose] > │     let v13 : float = v11 + v12                                              │

00:00:59 #7715 [Verbose] > │     let v14 : float = sqrt v13                                               │

00:00:59 #7716 [Verbose] > │     let v15 : float = -5384.0 * v14                                          │

00:00:59 #7717 [Verbose] > │     let v16 : float = v15 * v2                                               │

00:00:59 #7718 [Verbose] > │     let v17 : float = v15 * v3                                               │

00:00:59 #7719 [Verbose] > │     let v18 : float = v15 * v4                                               │

00:00:59 #7720 [Verbose] > │     let v19 : float = v16 / v14                                              │

00:00:59 #7721 [Verbose] > │     let v20 : float = v17 / v14                                              │

00:00:59 #7722 [Verbose] > │     let v21 : float = v18 / v14                                              │

00:00:59 #7723 [Verbose] > │     struct (v19, v20, v21)                                                   │

00:00:59 #7724 [Verbose] > │ and closure139 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 │

00:00:59 #7725 [Verbose] > │ : float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *   │

00:00:59 #7726 [Verbose] > │ float * float) =                                                             │

00:00:59 #7727 [Verbose] > │     let v9 : float = v2 + -0.65                                              │

00:00:59 #7728 [Verbose] > │     let v10 : float = v9 * v9                                                │

00:00:59 #7729 [Verbose] > │     let v11 : float = v3 * v3                                                │

00:00:59 #7730 [Verbose] > │     let v12 : float = v10 + v11                                              │

00:00:59 #7731 [Verbose] > │     let v13 : float = v4 * v4                                                │

00:00:59 #7732 [Verbose] > │     let v14 : float = v12 + v13                                              │

00:00:59 #7733 [Verbose] > │     let v15 : float = sqrt v14                                               │

00:00:59 #7734 [Verbose] > │     let v16 : float = -5384.0 * v15                                          │

00:00:59 #7735 [Verbose] > │     let v17 : float = v16 * v9                                               │

00:00:59 #7736 [Verbose] > │     let v18 : float = v16 * v3                                               │

00:00:59 #7737 [Verbose] > │     let v19 : float = v16 * v4                                               │

00:00:59 #7738 [Verbose] > │     let v20 : float = v17 / v15                                              │

00:00:59 #7739 [Verbose] > │     let v21 : float = v18 / v15                                              │

00:00:59 #7740 [Verbose] > │     let v22 : float = v19 / v15                                              │

00:00:59 #7741 [Verbose] > │     struct (v20, v21, v22)                                                   │

00:00:59 #7742 [Verbose] > │ and closure141 (v0 : float, v1 : float, v2 : float, v3 : float, v4 : float,  │

00:00:59 #7743 [Verbose] > │ v5 : float, v6 : float, v7 : float, v8 : float) struct (v9 : float, v10 :    │

00:00:59 #7744 [Verbose] > │ float, v11 : float, v12 : float, v13 : float, v14 : float, v15 : float, v16  │

00:00:59 #7745 [Verbose] > │ : float, v17 : float) : struct (float * float * float) =                     │

00:00:59 #7746 [Verbose] > │     let v18 : float = -1.0 * v2                                              │

00:00:59 #7747 [Verbose] > │     let v19 : float = -1.0 * v3                                              │

00:00:59 #7748 [Verbose] > │     let v20 : float = -1.0 * v4                                              │

00:00:59 #7749 [Verbose] > │     let v21 : float = v11 + v18                                              │

00:00:59 #7750 [Verbose] > │     let v22 : float = v12 + v19                                              │

00:00:59 #7751 [Verbose] > │     let v23 : float = v13 + v20                                              │

00:00:59 #7752 [Verbose] > │     let v24 : float = v21 * v21                                              │

00:00:59 #7753 [Verbose] > │     let v25 : float = v22 * v22                                              │

00:00:59 #7754 [Verbose] > │     let v26 : float = v24 + v25                                              │

00:00:59 #7755 [Verbose] > │     let v27 : float = v23 * v23                                              │

00:00:59 #7756 [Verbose] > │     let v28 : float = v26 + v27                                              │

00:00:59 #7757 [Verbose] > │     let v29 : float = sqrt v28                                               │

00:00:59 #7758 [Verbose] > │     let v30 : float = -5384.0 * v29                                          │

00:00:59 #7759 [Verbose] > │     let v31 : float = v30 * v21                                              │

00:00:59 #7760 [Verbose] > │     let v32 : float = v30 * v22                                              │

00:00:59 #7761 [Verbose] > │     let v33 : float = v30 * v23                                              │

00:00:59 #7762 [Verbose] > │     let v34 : float = v31 / v29                                              │

00:00:59 #7763 [Verbose] > │     let v35 : float = v32 / v29                                              │

00:00:59 #7764 [Verbose] > │     let v36 : float = v33 / v29                                              │

00:00:59 #7765 [Verbose] > │     struct (v34, v35, v36)                                                   │

00:00:59 #7766 [Verbose] > │ and closure140 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 │

00:00:59 #7767 [Verbose] > │ : float, v5 : float, v6 : float, v7 : float, v8 : float) : (struct (float *  │

00:00:59 #7768 [Verbose] > │ float * float * float * float * float * float * float * float) -> struct     │

00:00:59 #7769 [Verbose] > │ (float * float * float)) =                                                   │

00:00:59 #7770 [Verbose] > │     closure141(v0, v1, v2, v3, v4, v5, v6, v7, v8)                           │

00:00:59 #7771 [Verbose] > │ and method4 () : UH4 =                                                       │

00:00:59 #7772 [Verbose] > │     let v0 : (struct (float * float * float * float * float * float * float  │

00:00:59 #7773 [Verbose] > │ * float * float) -> struct (float * float * float)) = closure138()           │

00:00:59 #7774 [Verbose] > │     let v1 : US1 = US1_0(0, v0)                                              │

00:00:59 #7775 [Verbose] > │     let v2 : (struct (float * float * float * float * float * float * float  │

00:00:59 #7776 [Verbose] > │ * float * float) -> struct (float * float * float)) = closure139()           │

00:00:59 #7777 [Verbose] > │     let v3 : US1 = US1_0(63, v2)                                             │

00:00:59 #7778 [Verbose] > │     let v4 : (struct (float * float * float * float * float * float * float  │

00:00:59 #7779 [Verbose] > │ * float * float) -> (struct (float * float * float * float * float * float * │

00:00:59 #7780 [Verbose] > │ float * float * float) -> struct (float * float * float))) = closure140()    │

00:00:59 #7781 [Verbose] > │     let v5 : US1 = US1_1(0, 1, v4)                                           │

00:00:59 #7782 [Verbose] > │     let v6 : US1 = US1_1(1, 2, v4)                                           │

00:00:59 #7783 [Verbose] > │     let v7 : US1 = US1_1(2, 3, v4)                                           │

00:00:59 #7784 [Verbose] > │     let v8 : US1 = US1_1(3, 4, v4)                                           │

00:00:59 #7785 [Verbose] > │     let v9 : US1 = US1_1(4, 5, v4)                                           │

00:00:59 #7786 [Verbose] > │     let v10 : US1 = US1_1(5, 6, v4)                                          │

00:00:59 #7787 [Verbose] > │     let v11 : US1 = US1_1(6, 7, v4)                                          │

00:00:59 #7788 [Verbose] > │     let v12 : US1 = US1_1(7, 8, v4)                                          │

00:00:59 #7789 [Verbose] > │     let v13 : US1 = US1_1(8, 9, v4)                                          │

00:00:59 #7790 [Verbose] > │     let v14 : US1 = US1_1(9, 10, v4)                                         │

00:00:59 #7791 [Verbose] > │     let v15 : US1 = US1_1(10, 11, v4)                                        │

00:00:59 #7792 [Verbose] > │     let v16 : US1 = US1_1(11, 12, v4)                                        │

00:00:59 #7793 [Verbose] > │     let v17 : US1 = US1_1(12, 13, v4)                                        │

00:00:59 #7794 [Verbose] > │     let v18 : US1 = US1_1(13, 14, v4)                                        │

00:00:59 #7795 [Verbose] > │     let v19 : US1 = US1_1(14, 15, v4)                                        │

00:00:59 #7796 [Verbose] > │     let v20 : US1 = US1_1(15, 16, v4)                                        │

00:00:59 #7797 [Verbose] > │     let v21 : US1 = US1_1(16, 17, v4)                                        │

00:00:59 #7798 [Verbose] > │     let v22 : US1 = US1_1(17, 18, v4)                                        │

00:00:59 #7799 [Verbose] > │     let v23 : US1 = US1_1(18, 19, v4)                                        │

00:00:59 #7800 [Verbose] > │     let v24 : US1 = US1_1(19, 20, v4)                                        │

00:00:59 #7801 [Verbose] > │     let v25 : US1 = US1_1(20, 21, v4)                                        │

00:00:59 #7802 [Verbose] > │     let v26 : US1 = US1_1(21, 22, v4)                                        │

00:00:59 #7803 [Verbose] > │     let v27 : US1 = US1_1(22, 23, v4)                                        │

00:00:59 #7804 [Verbose] > │     let v28 : US1 = US1_1(23, 24, v4)                                        │

00:00:59 #7805 [Verbose] > │     let v29 : US1 = US1_1(24, 25, v4)                                        │

00:00:59 #7806 [Verbose] > │     let v30 : US1 = US1_1(25, 26, v4)                                        │

00:00:59 #7807 [Verbose] > │     let v31 : US1 = US1_1(26, 27, v4)                                        │

00:00:59 #7808 [Verbose] > │     let v32 : US1 = US1_1(27, 28, v4)                                        │

00:00:59 #7809 [Verbose] > │     let v33 : US1 = US1_1(28, 29, v4)                                        │

00:00:59 #7810 [Verbose] > │     let v34 : US1 = US1_1(29, 30, v4)                                        │

00:00:59 #7811 [Verbose] > │     let v35 : US1 = US1_1(30, 31, v4)                                        │

00:00:59 #7812 [Verbose] > │     let v36 : US1 = US1_1(31, 32, v4)                                        │

00:00:59 #7813 [Verbose] > │     let v37 : US1 = US1_1(32, 33, v4)                                        │

00:00:59 #7814 [Verbose] > │     let v38 : US1 = US1_1(33, 34, v4)                                        │

00:00:59 #7815 [Verbose] > │     let v39 : US1 = US1_1(34, 35, v4)                                        │

00:00:59 #7816 [Verbose] > │     let v40 : US1 = US1_1(35, 36, v4)                                        │

00:00:59 #7817 [Verbose] > │     let v41 : US1 = US1_1(36, 37, v4)                                        │

00:00:59 #7818 [Verbose] > │     let v42 : US1 = US1_1(37, 38, v4)                                        │

00:00:59 #7819 [Verbose] > │     let v43 : US1 = US1_1(38, 39, v4)                                        │

00:00:59 #7820 [Verbose] > │     let v44 : US1 = US1_1(39, 40, v4)                                        │

00:00:59 #7821 [Verbose] > │     let v45 : US1 = US1_1(40, 41, v4)                                        │

00:00:59 #7822 [Verbose] > │     let v46 : US1 = US1_1(41, 42, v4)                                        │

00:00:59 #7823 [Verbose] > │     let v47 : US1 = US1_1(42, 43, v4)                                        │

00:00:59 #7824 [Verbose] > │     let v48 : US1 = US1_1(43, 44, v4)                                        │

00:00:59 #7825 [Verbose] > │     let v49 : US1 = US1_1(44, 45, v4)                                        │

00:00:59 #7826 [Verbose] > │     let v50 : US1 = US1_1(45, 46, v4)                                        │

00:00:59 #7827 [Verbose] > │     let v51 : US1 = US1_1(46, 47, v4)                                        │

00:00:59 #7828 [Verbose] > │     let v52 : US1 = US1_1(47, 48, v4)                                        │

00:00:59 #7829 [Verbose] > │     let v53 : US1 = US1_1(48, 49, v4)                                        │

00:00:59 #7830 [Verbose] > │     let v54 : US1 = US1_1(49, 50, v4)                                        │

00:00:59 #7831 [Verbose] > │     let v55 : US1 = US1_1(50, 51, v4)                                        │

00:00:59 #7832 [Verbose] > │     let v56 : US1 = US1_1(51, 52, v4)                                        │

00:00:59 #7833 [Verbose] > │     let v57 : US1 = US1_1(52, 53, v4)                                        │

00:00:59 #7834 [Verbose] > │     let v58 : US1 = US1_1(53, 54, v4)                                        │

00:00:59 #7835 [Verbose] > │     let v59 : US1 = US1_1(54, 55, v4)                                        │

00:00:59 #7836 [Verbose] > │     let v60 : US1 = US1_1(55, 56, v4)                                        │

00:00:59 #7837 [Verbose] > │     let v61 : US1 = US1_1(56, 57, v4)                                        │

00:00:59 #7838 [Verbose] > │     let v62 : US1 = US1_1(57, 58, v4)                                        │

00:00:59 #7839 [Verbose] > │     let v63 : US1 = US1_1(58, 59, v4)                                        │

00:00:59 #7840 [Verbose] > │     let v64 : US1 = US1_1(59, 60, v4)                                        │

00:00:59 #7841 [Verbose] > │     let v65 : UH4 = UH4_1                                                    │

00:00:59 #7842 [Verbose] > │     let v66 : UH4 = UH4_0(v64, v65)                                          │

00:00:59 #7843 [Verbose] > │     let v67 : UH4 = UH4_0(v63, v66)                                          │

00:00:59 #7844 [Verbose] > │     let v68 : UH4 = UH4_0(v62, v67)                                          │

00:00:59 #7845 [Verbose] > │     let v69 : UH4 = UH4_0(v61, v68)                                          │

00:00:59 #7846 [Verbose] > │     let v70 : UH4 = UH4_0(v60, v69)                                          │

00:00:59 #7847 [Verbose] > │     let v71 : UH4 = UH4_0(v59, v70)                                          │

00:00:59 #7848 [Verbose] > │     let v72 : UH4 = UH4_0(v58, v71)                                          │

00:00:59 #7849 [Verbose] > │     let v73 : UH4 = UH4_0(v57, v72)                                          │

00:00:59 #7850 [Verbose] > │     let v74 : UH4 = UH4_0(v56, v73)                                          │

00:00:59 #7851 [Verbose] > │     let v75 : UH4 = UH4_0(v55, v74)                                          │

00:00:59 #7852 [Verbose] > │     let v76 : UH4 = UH4_0(v54, v75)                                          │

00:00:59 #7853 [Verbose] > │     let v77 : UH4 = UH4_0(v53, v76)                                          │

00:00:59 #7854 [Verbose] > │     let v78 : UH4 = UH4_0(v52, v77)                                          │

00:00:59 #7855 [Verbose] > │     let v79 : UH4 = UH4_0(v51, v78)                                          │

00:00:59 #7856 [Verbose] > │     let v80 : UH4 = UH4_0(v50, v79)                                          │

00:00:59 #7857 [Verbose] > │     let v81 : UH4 = UH4_0(v49, v80)                                          │

00:00:59 #7858 [Verbose] > │     let v82 : UH4 = UH4_0(v48, v81)                                          │

00:00:59 #7859 [Verbose] > │     let v83 : UH4 = UH4_0(v47, v82)                                          │

00:00:59 #7860 [Verbose] > │     let v84 : UH4 = UH4_0(v46, v83)                                          │

00:00:59 #7861 [Verbose] > │     let v85 : UH4 = UH4_0(v45, v84)                                          │

00:00:59 #7862 [Verbose] > │     let v86 : UH4 = UH4_0(v44, v85)                                          │

00:00:59 #7863 [Verbose] > │     let v87 : UH4 = UH4_0(v43, v86)                                          │

00:00:59 #7864 [Verbose] > │     let v88 : UH4 = UH4_0(v42, v87)                                          │

00:00:59 #7865 [Verbose] > │     let v89 : UH4 = UH4_0(v41, v88)                                          │

00:00:59 #7866 [Verbose] > │     let v90 : UH4 = UH4_0(v40, v89)                                          │

00:00:59 #7867 [Verbose] > │     let v91 : UH4 = UH4_0(v39, v90)                                          │

00:00:59 #7868 [Verbose] > │     let v92 : UH4 = UH4_0(v38, v91)                                          │

00:00:59 #7869 [Verbose] > │     let v93 : UH4 = UH4_0(v37, v92)                                          │

00:00:59 #7870 [Verbose] > │     let v94 : UH4 = UH4_0(v36, v93)                                          │

00:00:59 #7871 [Verbose] > │     let v95 : UH4 = UH4_0(v35, v94)                                          │

00:00:59 #7872 [Verbose] > │     let v96 : UH4 = UH4_0(v34, v95)                                          │

00:00:59 #7873 [Verbose] > │     let v97 : UH4 = UH4_0(v33, v96)                                          │

00:00:59 #7874 [Verbose] > │     let v98 : UH4 = UH4_0(v32, v97)                                          │

00:00:59 #7875 [Verbose] > │     let v99 : UH4 = UH4_0(v31, v98)                                          │

00:00:59 #7876 [Verbose] > │     let v100 : UH4 = UH4_0(v30, v99)                                         │

00:00:59 #7877 [Verbose] > │     let v101 : UH4 = UH4_0(v29, v100)                                        │

00:00:59 #7878 [Verbose] > │     let v102 : UH4 = UH4_0(v28, v101)                                        │

00:00:59 #7879 [Verbose] > │     let v103 : UH4 = UH4_0(v27, v102)                                        │

00:00:59 #7880 [Verbose] > │     let v104 : UH4 = UH4_0(v26, v103)                                        │

00:00:59 #7881 [Verbose] > │     let v105 : UH4 = UH4_0(v25, v104)                                        │

00:00:59 #7882 [Verbose] > │     let v106 : UH4 = UH4_0(v24, v105)                                        │

00:00:59 #7883 [Verbose] > │     let v107 : UH4 = UH4_0(v23, v106)                                        │

00:00:59 #7884 [Verbose] > │     let v108 : UH4 = UH4_0(v22, v107)                                        │

00:00:59 #7885 [Verbose] > │     let v109 : UH4 = UH4_0(v21, v108)                                        │

00:00:59 #7886 [Verbose] > │     let v110 : UH4 = UH4_0(v20, v109)                                        │

00:00:59 #7887 [Verbose] > │     let v111 : UH4 = UH4_0(v19, v110)                                        │

00:00:59 #7888 [Verbose] > │     let v112 : UH4 = UH4_0(v18, v111)                                        │

00:00:59 #7889 [Verbose] > │     let v113 : UH4 = UH4_0(v17, v112)                                        │

00:00:59 #7890 [Verbose] > │     let v114 : UH4 = UH4_0(v16, v113)                                        │

00:00:59 #7891 [Verbose] > │     let v115 : UH4 = UH4_0(v15, v114)                                        │

00:00:59 #7892 [Verbose] > │     let v116 : UH4 = UH4_0(v14, v115)                                        │

00:00:59 #7893 [Verbose] > │     let v117 : UH4 = UH4_0(v13, v116)                                        │

00:00:59 #7894 [Verbose] > │     let v118 : UH4 = UH4_0(v12, v117)                                        │

00:00:59 #7895 [Verbose] > │     let v119 : UH4 = UH4_0(v11, v118)                                        │

00:00:59 #7896 [Verbose] > │     let v120 : UH4 = UH4_0(v10, v119)                                        │

00:00:59 #7897 [Verbose] > │     let v121 : UH4 = UH4_0(v9, v120)                                         │

00:00:59 #7898 [Verbose] > │     let v122 : UH4 = UH4_0(v8, v121)                                         │

00:00:59 #7899 [Verbose] > │     let v123 : UH4 = UH4_0(v7, v122)                                         │

00:00:59 #7900 [Verbose] > │     let v124 : UH4 = UH4_0(v6, v123)                                         │

00:00:59 #7901 [Verbose] > │     let v125 : UH4 = UH4_0(v5, v124)                                         │

00:00:59 #7902 [Verbose] > │     let v126 : UH4 = UH4_0(v3, v125)                                         │

00:00:59 #7903 [Verbose] > │     UH4_0(v1, v126)                                                          │

00:00:59 #7904 [Verbose] > │ and closure143 (v0 : UH5) () : UH5 =                                         │

00:00:59 #7905 [Verbose] > │     v0                                                                       │

00:00:59 #7906 [Verbose] > │ and method5 (v0 : UH1, v1 : UH5, v2 : int32) : struct (UH5 * int32) =        │

00:00:59 #7907 [Verbose] > │     match v0 with                                                            │

00:00:59 #7908 [Verbose] > │     | UH1_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* StreamCons *)   │

00:00:59 #7909 [Verbose] > │         let v13 : int32 = v2 + 1                                             │

00:00:59 #7910 [Verbose] > │         let v14 : UH1 = v12 ()                                               │

00:00:59 #7911 [Verbose] > │         let v15 : (unit -> UH5) = closure143(v1)                             │

00:00:59 #7912 [Verbose] > │         let v16 : UH5 = UH5_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v15) │

00:00:59 #7913 [Verbose] > │         method5(v14, v16, v13)                                               │

00:00:59 #7914 [Verbose] > │     | UH1_1 -> (* StreamNil *)                                               │

00:00:59 #7915 [Verbose] > │         struct (v1, v2)                                                      │

00:00:59 #7916 [Verbose] > │ and closure144 (v0 : UH5) () : UH5 =                                         │

00:00:59 #7917 [Verbose] > │     v0                                                                       │

00:00:59 #7918 [Verbose] > │ and method6 (v0 : UH5, v1 : UH5) : UH5 =                                     │

00:00:59 #7919 [Verbose] > │     match v0 with                                                            │

00:00:59 #7920 [Verbose] > │     | UH5_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) -> (* StreamCons  │

00:00:59 #7921 [Verbose] > │ *)                                                                           │

00:00:59 #7922 [Verbose] > │         let v13 : UH5 = v12 ()                                               │

00:00:59 #7923 [Verbose] > │         let v14 : (unit -> UH5) = closure144(v1)                             │

00:00:59 #7924 [Verbose] > │         let v15 : UH5 = UH5_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v14) │

00:00:59 #7925 [Verbose] > │         method6(v13, v15)                                                    │

00:00:59 #7926 [Verbose] > │     | UH5_1 -> (* StreamNil *)                                               │

00:00:59 #7927 [Verbose] > │         v1                                                                   │

00:00:59 #7928 [Verbose] > │ and closure145 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 │

00:00:59 #7929 [Verbose] > │ : float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *   │

00:00:59 #7930 [Verbose] > │ float * float) =                                                             │

00:00:59 #7931 [Verbose] > │     struct (0.0, 0.0, 0.0)                                                   │

00:00:59 #7932 [Verbose] > │ and method9 (v0 : int32, v1 : UH1) : US3 =                                   │

00:00:59 #7933 [Verbose] > │     match v1 with                                                            │

00:00:59 #7934 [Verbose] > │     | UH1_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* StreamCons *)    │

00:00:59 #7935 [Verbose] > │         let v12 : bool = v0 <= 0                                             │

00:00:59 #7936 [Verbose] > │         if v12 then                                                          │

00:00:59 #7937 [Verbose] > │             US3_1(v2, v3, v4, v5, v6, v7, v8, v9, v10)                       │

00:00:59 #7938 [Verbose] > │         else                                                                 │

00:00:59 #7939 [Verbose] > │             let v14 : int32 = v0 - 1                                         │

00:00:59 #7940 [Verbose] > │             let v15 : UH1 = v11 ()                                           │

00:00:59 #7941 [Verbose] > │             method9(v14, v15)                                                │

00:00:59 #7942 [Verbose] > │     | UH1_1 -> (* StreamNil *)                                               │

00:00:59 #7943 [Verbose] > │         US3_0                                                                │

00:00:59 #7944 [Verbose] > │ and closure146 () struct (v0 : float, v1 : float, v2 : float, v3 : float, v4 │

00:00:59 #7945 [Verbose] > │ : float, v5 : float, v6 : float, v7 : float, v8 : float) : struct (float *   │

00:00:59 #7946 [Verbose] > │ float * float) =                                                             │

00:00:59 #7947 [Verbose] > │     struct (0.0, 0.0, 0.0)                                                   │

00:00:59 #7948 [Verbose] > │ and method8 (v0 : int32, v1 : UH1, v2 : UH4, v3 : UH6) : UH6 =               │

00:00:59 #7949 [Verbose] > │     match v2 with                                                            │

00:00:59 #7950 [Verbose] > │     | UH4_0(v4, v5) -> (* Cons *)                                            │

00:00:59 #7951 [Verbose] > │         let v6 : UH6 = method8(v0, v1, v5, v3)                               │

00:00:59 #7952 [Verbose] > │         let v55 : (struct (float * float * float * float * float * float *   │

00:00:59 #7953 [Verbose] > │ float * float * float) -> struct (float * float * float)) =                  │

00:00:59 #7954 [Verbose] > │             match v4 with                                                    │

00:00:59 #7955 [Verbose] > │             | US1_0(v7, v8) -> (* ExternalForce *)                           │

00:00:59 #7956 [Verbose] > │                 let v9 : bool = v0 = v7                                      │

00:00:59 #7957 [Verbose] > │                 if v9 then                                                   │

00:00:59 #7958 [Verbose] > │                     v8                                                       │

00:00:59 #7959 [Verbose] > │                 else                                                         │

00:00:59 #7960 [Verbose] > │                     closure145()                                             │

00:00:59 #7961 [Verbose] > │             | US1_1(v12, v13, v14) -> (* InternalForce *)                    │

00:00:59 #7962 [Verbose] > │                 let v15 : bool = v0 = v12                                    │

00:00:59 #7963 [Verbose] > │                 let v49 : US2 =                                              │

00:00:59 #7964 [Verbose] > │                     if v15 then                                              │

00:00:59 #7965 [Verbose] > │                         let v16 : US3 = method9(v13, v1)                     │

00:00:59 #7966 [Verbose] > │                         match v16 with                                       │

00:00:59 #7967 [Verbose] > │                         | US3_0 -> (* None *)                                │

00:00:59 #7968 [Verbose] > │                             US2_0                                            │

00:00:59 #7969 [Verbose] > │                         | US3_1(v17, v18, v19, v20, v21, v22, v23, v24, v25) │

00:00:59 #7970 [Verbose] > │ -> (* Some *)                                                                │

00:00:59 #7971 [Verbose] > │                             let v26 : (struct (float * float * float * float │

00:00:59 #7972 [Verbose] > │ * float * float * float * float * float) -> struct (float * float * float))  │

00:00:59 #7973 [Verbose] > │ = v14 struct (v17, v18, v19, v20, v21, v22, v23, v24, v25)                   │

00:00:59 #7974 [Verbose] > │                             US2_1(v26)                                       │

00:00:59 #7975 [Verbose] > │                     else                                                     │

00:00:59 #7976 [Verbose] > │                         let v31 : bool = v0 = v13                            │

00:00:59 #7977 [Verbose] > │                         if v31 then                                          │

00:00:59 #7978 [Verbose] > │                             let v32 : US3 = method9(v12, v1)                 │

00:00:59 #7979 [Verbose] > │                             match v32 with                                   │

00:00:59 #7980 [Verbose] > │                             | US3_0 -> (* None *)                            │

00:00:59 #7981 [Verbose] > │                                 US2_0                                        │

00:00:59 #7982 [Verbose] > │                             | US3_1(v33, v34, v35, v36, v37, v38, v39, v40,  │

00:00:59 #7983 [Verbose] > │ v41) -> (* Some *)                                                           │

00:00:59 #7984 [Verbose] > │                                 let v42 : (struct (float * float * float *   │

00:00:59 #7985 [Verbose] > │ float * float * float * float * float * float) -> struct (float * float *    │

00:00:59 #7986 [Verbose] > │ float)) = v14 struct (v33, v34, v35, v36, v37, v38, v39, v40, v41)           │

00:00:59 #7987 [Verbose] > │                                 US2_1(v42)                                   │

00:00:59 #7988 [Verbose] > │                         else                                                 │

00:00:59 #7989 [Verbose] > │                             US2_0                                            │

00:00:59 #7990 [Verbose] > │                 match v49 with                                               │

00:00:59 #7991 [Verbose] > │                 | US2_0 -> (* None *)                                        │

00:00:59 #7992 [Verbose] > │                     closure146()                                             │

00:00:59 #7993 [Verbose] > │                 | US2_1(v50) -> (* Some *)                                   │

00:00:59 #7994 [Verbose] > │                     v50                                                      │

00:00:59 #7995 [Verbose] > │         UH6_0(v55, v6)                                                       │

00:00:59 #7996 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:00:59 #7997 [Verbose] > │         v3                                                                   │

00:00:59 #7998 [Verbose] > │ and method10 (v0 : float, v1 : float, v2 : float, v3 : float, v4 : float, v5 │

00:00:59 #7999 [Verbose] > │ : float, v6 : float, v7 : float, v8 : float, v9 : UH6, v10 : UH7) : UH7 =    │

00:00:59 #8000 [Verbose] > │     match v9 with                                                            │

00:00:59 #8001 [Verbose] > │     | UH6_0(v11, v12) -> (* Cons *)                                          │

00:00:59 #8002 [Verbose] > │         let v13 : UH7 = method10(v0, v1, v2, v3, v4, v5, v6, v7, v8, v12,    │

00:00:59 #8003 [Verbose] > │ v10)                                                                         │

00:00:59 #8004 [Verbose] > │         let struct (v14 : float, v15 : float, v16 : float) = v11 struct (v0, │

00:00:59 #8005 [Verbose] > │ v1, v2, v3, v4, v5, v6, v7, v8)                                              │

00:00:59 #8006 [Verbose] > │         UH7_0(v14, v15, v16, v13)                                            │

00:00:59 #8007 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:00:59 #8008 [Verbose] > │         v10                                                                  │

00:00:59 #8009 [Verbose] > │ and method11 (v0 : UH7, v1 : float, v2 : float, v3 : float) : struct (float  │

00:00:59 #8010 [Verbose] > │ * float * float) =                                                           │

00:00:59 #8011 [Verbose] > │     match v0 with                                                            │

00:00:59 #8012 [Verbose] > │     | UH7_0(v4, v5, v6, v7) -> (* Cons *)                                    │

00:00:59 #8013 [Verbose] > │         let v8 : float = v1 + v4                                             │

00:00:59 #8014 [Verbose] > │         let v9 : float = v2 + v5                                             │

00:00:59 #8015 [Verbose] > │         let v10 : float = v3 + v6                                            │

00:00:59 #8016 [Verbose] > │         method11(v7, v8, v9, v10)                                            │

00:00:59 #8017 [Verbose] > │     | UH7_1 -> (* Nil *)                                                     │

00:00:59 #8018 [Verbose] > │         struct (v1, v2, v3)                                                  │

00:00:59 #8019 [Verbose] > │ and closure147 (v0 : UH3) () : UH3 =                                         │

00:00:59 #8020 [Verbose] > │     v0                                                                       │

00:00:59 #8021 [Verbose] > │ and method7 (v0 : UH4, v1 : UH1, v2 : UH5, v3 : UH3) : UH3 =                 │

00:00:59 #8022 [Verbose] > │     match v2 with                                                            │

00:00:59 #8023 [Verbose] > │     | UH5_0(v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) -> (*           │

00:00:59 #8024 [Verbose] > │ StreamCons *)                                                                │

00:00:59 #8025 [Verbose] > │         let v15 : UH5 = v14 ()                                               │

00:00:59 #8026 [Verbose] > │         let v16 : UH3 = method7(v0, v1, v15, v3)                             │

00:00:59 #8027 [Verbose] > │         let v17 : UH6 = UH6_1                                                │

00:00:59 #8028 [Verbose] > │         let v18 : UH6 = method8(v4, v1, v0, v17)                             │

00:00:59 #8029 [Verbose] > │         let v19 : UH7 = UH7_1                                                │

00:00:59 #8030 [Verbose] > │         let v20 : UH7 = method10(v5, v6, v7, v8, v9, v10, v11, v12, v13,     │

00:00:59 #8031 [Verbose] > │ v18, v19)                                                                    │

00:00:59 #8032 [Verbose] > │         let v21 : float = 0.0                                                │

00:00:59 #8033 [Verbose] > │         let v22 : float = 0.0                                                │

00:00:59 #8034 [Verbose] > │         let v23 : float = 0.0                                                │

00:00:59 #8035 [Verbose] > │         let struct (v24 : float, v25 : float, v26 : float) = method11(v20,   │

00:00:59 #8036 [Verbose] > │ v21, v22, v23)                                                               │

00:00:59 #8037 [Verbose] > │         let v27 : float = v24 / v6                                           │

00:00:59 #8038 [Verbose] > │         let v28 : float = v25 / v6                                           │

00:00:59 #8039 [Verbose] > │         let v29 : float = v26 / v6                                           │

00:00:59 #8040 [Verbose] > │         let v30 : (unit -> UH3) = closure147(v16)                            │

00:00:59 #8041 [Verbose] > │         UH3_0(0.0, 0.0, v11, v12, v13, 1.0, v27, v28, v29, v30)              │

00:00:59 #8042 [Verbose] > │     | UH5_1 -> (* StreamNil *)                                               │

00:00:59 #8043 [Verbose] > │         v3                                                                   │

00:00:59 #8044 [Verbose] > │ and closure142 (v0 : UH4) (v1 : UH1) : UH3 =                                 │

00:00:59 #8045 [Verbose] > │     let v2 : UH5 = UH5_1                                                     │

00:00:59 #8046 [Verbose] > │     let v3 : int32 = 0                                                       │

00:00:59 #8047 [Verbose] > │     let struct (v4 : UH5, v5 : int32) = method5(v1, v2, v3)                  │

00:00:59 #8048 [Verbose] > │     let v6 : UH5 = UH5_1                                                     │

00:00:59 #8049 [Verbose] > │     let v7 : UH5 = method6(v4, v6)                                           │

00:00:59 #8050 [Verbose] > │     let v8 : UH3 = UH3_1                                                     │

00:00:59 #8051 [Verbose] > │     let v9 : UH3 = method7(v0, v1, v7, v8)                                   │

00:00:59 #8052 [Verbose] > │     v9                                                                       │

00:00:59 #8053 [Verbose] > │ and closure148 (v0 : (UH1 -> UH1), v1 : UH1, v2 : UH1) () : UH8 =            │

00:00:59 #8054 [Verbose] > │     let v3 : UH1 = v0 v2                                                     │

00:00:59 #8055 [Verbose] > │     let v4 : (unit -> UH8) = closure148(v0, v1, v3)                          │

00:00:59 #8056 [Verbose] > │     UH8_0(v2, v4)                                                            │

00:00:59 #8057 [Verbose] > │ and method12 (v0 : float, v1 : UH8) : US4 =                                  │

00:00:59 #8058 [Verbose] > │     match v1 with                                                            │

00:00:59 #8059 [Verbose] > │     | UH8_0(v2, v3) -> (* StreamCons *)                                      │

00:00:59 #8060 [Verbose] > │         let v4 : bool = v0 <= 0.0                                            │

00:00:59 #8061 [Verbose] > │         if v4 then                                                           │

00:00:59 #8062 [Verbose] > │             US4_1(v2)                                                        │

00:00:59 #8063 [Verbose] > │         else                                                                 │

00:00:59 #8064 [Verbose] > │             let v6 : float = v0 - 1.0                                        │

00:00:59 #8065 [Verbose] > │             let v7 : UH8 = v3 ()                                             │

00:00:59 #8066 [Verbose] > │             method12(v6, v7)                                                 │

00:00:59 #8067 [Verbose] > │     | UH8_1 -> (* StreamNil *)                                               │

00:00:59 #8068 [Verbose] > │         US4_0                                                                │

00:00:59 #8069 [Verbose] > │ and closure149 (v0 : UH9) () : UH9 =                                         │

00:00:59 #8070 [Verbose] > │     v0                                                                       │

00:00:59 #8071 [Verbose] > │ and method13 (v0 : UH1, v1 : UH9) : UH9 =                                    │

00:00:59 #8072 [Verbose] > │     match v0 with                                                            │

00:00:59 #8073 [Verbose] > │     | UH1_0(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) -> (* StreamCons *)    │

00:00:59 #8074 [Verbose] > │         let v12 : UH1 = v11 ()                                               │

00:00:59 #8075 [Verbose] > │         let v13 : UH9 = method13(v12, v1)                                    │

00:00:59 #8076 [Verbose] > │         let v14 : (unit -> UH9) = closure149(v13)                            │

00:00:59 #8077 [Verbose] > │         UH9_0(v4, v5, v6, v14)                                               │

00:00:59 #8078 [Verbose] > │     | UH1_1 -> (* StreamNil *)                                               │

00:00:59 #8079 [Verbose] > │         v1                                                                   │

00:00:59 #8080 [Verbose] > │ and method14 (v0 : UH9, v1 : UH7) : UH7 =                                    │

00:00:59 #8081 [Verbose] > │     match v0 with                                                            │

00:00:59 #8082 [Verbose] > │     | UH9_0(v2, v3, v4, v5) -> (* StreamCons *)                              │

00:00:59 #8083 [Verbose] > │         let v6 : UH9 = v5 ()                                                 │

00:00:59 #8084 [Verbose] > │         let v7 : UH7 = method14(v6, v1)                                      │

00:00:59 #8085 [Verbose] > │         UH7_0(v2, v3, v4, v7)                                                │

00:00:59 #8086 [Verbose] > │     | UH9_1 -> (* StreamNil *)                                               │

00:00:59 #8087 [Verbose] > │         v1                                                                   │

00:00:59 #8088 [Verbose] > │ and method15 (v0 : UH7, v1 : UH7) : UH7 =                                    │

00:00:59 #8089 [Verbose] > │     match v0 with                                                            │

00:00:59 #8090 [Verbose] > │     | UH7_0(v2, v3, v4, v5) -> (* Cons *)                                    │

00:00:59 #8091 [Verbose] > │         let v6 : UH7 = method15(v5, v1)                                      │

00:00:59 #8092 [Verbose] > │         UH7_0(v2, v3, v4, v6)                                                │

00:00:59 #8093 [Verbose] > │     | UH7_1 -> (* Nil *)                                                     │

00:00:59 #8094 [Verbose] > │         v1                                                                   │

00:00:59 #8095 [Verbose] > │ and method16 (v0 : UH7, v1 : UH10) : UH10 =                                  │

00:00:59 #8096 [Verbose] > │     match v0 with                                                            │

00:00:59 #8097 [Verbose] > │     | UH7_0(v2, v3, v4, v5) -> (* Cons *)                                    │

00:00:59 #8098 [Verbose] > │         let v6 : UH10 = method16(v5, v1)                                     │

00:00:59 #8099 [Verbose] > │         UH10_0(v2, v3, v6)                                                   │

00:00:59 #8100 [Verbose] > │     | UH7_1 -> (* Nil *)                                                     │

00:00:59 #8101 [Verbose] > │         v1                                                                   │

00:00:59 #8102 [Verbose] > │ and closure150 (v0 : UH11) () : UH11 =                                       │

00:00:59 #8103 [Verbose] > │     v0                                                                       │

00:00:59 #8104 [Verbose] > │ and method17 (v0 : UH10, v1 : UH11) : UH11 =                                 │

00:00:59 #8105 [Verbose] > │     match v0 with                                                            │

00:00:59 #8106 [Verbose] > │     | UH10_0(v2, v3, v4) -> (* Cons *)                                       │

00:00:59 #8107 [Verbose] > │         let v5 : UH11 = method17(v4, v1)                                     │

00:00:59 #8108 [Verbose] > │         let v6 : (unit -> UH11) = closure150(v5)                             │

00:00:59 #8109 [Verbose] > │         UH11_0(v2, v3, v6)                                                   │

00:00:59 #8110 [Verbose] > │     | UH10_1 -> (* Nil *)                                                    │

00:00:59 #8111 [Verbose] > │         v1                                                                   │

00:00:59 #8112 [Verbose] > │ and closure151 (v0 : UH0) () : UH0 =                                         │

00:00:59 #8113 [Verbose] > │     v0                                                                       │

00:00:59 #8114 [Verbose] > │ and closure152 (v0 : UH0) () : UH0 =                                         │

00:00:59 #8115 [Verbose] > │     v0                                                                       │

00:00:59 #8116 [Verbose] > │ and method18 (v0 : UH11) : struct (UH0 * UH0) =                              │

00:00:59 #8117 [Verbose] > │     match v0 with                                                            │

00:00:59 #8118 [Verbose] > │     | UH11_0(v1, v2, v3) -> (* StreamCons *)                                 │

00:00:59 #8119 [Verbose] > │         let v4 : UH11 = v3 ()                                                │

00:00:59 #8120 [Verbose] > │         let struct (v5 : UH0, v6 : UH0) = method18(v4)                       │

00:00:59 #8121 [Verbose] > │         let v7 : (unit -> UH0) = closure151(v5)                              │

00:00:59 #8122 [Verbose] > │         let v8 : UH0 = UH0_0(v1, v7)                                         │

00:00:59 #8123 [Verbose] > │         let v9 : (unit -> UH0) = closure152(v6)                              │

00:00:59 #8124 [Verbose] > │         let v10 : UH0 = UH0_0(v2, v9)                                        │

00:00:59 #8125 [Verbose] > │         struct (v8, v10)                                                     │

00:00:59 #8126 [Verbose] > │     | UH11_1 -> (* StreamNil *)                                              │

00:00:59 #8127 [Verbose] > │         let v11 : UH0 = UH0_1                                                │

00:00:59 #8128 [Verbose] > │         let v12 : UH0 = UH0_1                                                │

00:00:59 #8129 [Verbose] > │         struct (v11, v12)                                                    │

00:00:59 #8130 [Verbose] > │ and method19 (v0 : UH0, v1 : UH12) : UH12 =                                  │

00:00:59 #8131 [Verbose] > │     match v0 with                                                            │

00:00:59 #8132 [Verbose] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

00:00:59 #8133 [Verbose] > │         let v4 : UH0 = v3 ()                                                 │

00:00:59 #8134 [Verbose] > │         let v5 : UH12 = method19(v4, v1)                                     │

00:00:59 #8135 [Verbose] > │         UH12_0(v2, v5)                                                       │

00:00:59 #8136 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:59 #8137 [Verbose] > │         v1                                                                   │

00:00:59 #8138 [Verbose] > │ and method21 (v0 : UH12, v1 : int32) : int32 =                               │

00:00:59 #8139 [Verbose] > │     match v0 with                                                            │

00:00:59 #8140 [Verbose] > │     | UH12_0(v2, v3) -> (* Cons *)                                           │

00:00:59 #8141 [Verbose] > │         let v4 : int32 = v1 + 1                                              │

00:00:59 #8142 [Verbose] > │         method21(v3, v4)                                                     │

00:00:59 #8143 [Verbose] > │     | UH12_1 -> (* Nil *)                                                    │

00:00:59 #8144 [Verbose] > │         v1                                                                   │

00:00:59 #8145 [Verbose] > │ and method22 (v0 : (float []), v1 : UH12, v2 : int32) : int32 =              │

00:00:59 #8146 [Verbose] > │     match v1 with                                                            │

00:00:59 #8147 [Verbose] > │     | UH12_0(v3, v4) -> (* Cons *)                                           │

00:00:59 #8148 [Verbose] > │         v0.[int v2] <- v3                                                    │

00:00:59 #8149 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:00:59 #8150 [Verbose] > │         method22(v0, v4, v5)                                                 │

00:00:59 #8151 [Verbose] > │     | UH12_1 -> (* Nil *)                                                    │

00:00:59 #8152 [Verbose] > │         v2                                                                   │

00:00:59 #8153 [Verbose] > │ and method20 (v0 : UH12) : (float []) =                                      │

00:00:59 #8154 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:59 #8155 [Verbose] > │     let v2 : int32 = method21(v0, v1)                                        │

00:00:59 #8156 [Verbose] > │     let v3 : (float []) = Array.zeroCreate<float> (v2)                       │

00:00:59 #8157 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:59 #8158 [Verbose] > │     let v5 : int32 = method22(v3, v0, v4)                                    │

00:00:59 #8159 [Verbose] > │     v3                                                                       │

00:00:59 #8160 [Verbose] > │ and closure153 (v0 : UH2) () : UH2 =                                         │

00:00:59 #8161 [Verbose] > │     v0                                                                       │

00:00:59 #8162 [Verbose] > │ and method1 (v0 : UH1, v1 : UH0, v2 : UH2) : UH2 =                           │

00:00:59 #8163 [Verbose] > │     match v1 with                                                            │

00:00:59 #8164 [Verbose] > │     | UH0_0(v3, v4) -> (* StreamCons *)                                      │

00:00:59 #8165 [Verbose] > │         let v5 : UH0 = v4 ()                                                 │

00:00:59 #8166 [Verbose] > │         let v6 : UH2 = method1(v0, v5, v2)                                   │

00:00:59 #8167 [Verbose] > │         let v7 : ((UH1 -> UH3) -> (UH1 -> UH1)) = method2()                  │

00:00:59 #8168 [Verbose] > │         let v8 : UH4 = method4()                                             │

00:00:59 #8169 [Verbose] > │         let v9 : (UH1 -> UH3) = closure142(v8)                               │

00:00:59 #8170 [Verbose] > │         let v10 : (UH1 -> UH1) = v7 v9                                       │

00:00:59 #8171 [Verbose] > │         let v11 : UH1 = v10 v0                                               │

00:00:59 #8172 [Verbose] > │         let v12 : (unit -> UH8) = closure148(v10, v0, v11)                   │

00:00:59 #8173 [Verbose] > │         let v13 : UH8 = UH8_0(v0, v12)                                       │

00:00:59 #8174 [Verbose] > │         let v14 : US4 = method12(v3, v13)                                    │

00:00:59 #8175 [Verbose] > │         let v18 : UH1 =                                                      │

00:00:59 #8176 [Verbose] > │             match v14 with                                                   │

00:00:59 #8177 [Verbose] > │             | US4_0 -> (* None *)                                            │

00:00:59 #8178 [Verbose] > │                 failwith<UH1> "Option does not have a value."                │

00:00:59 #8179 [Verbose] > │             | US4_1(v15) -> (* Some *)                                       │

00:00:59 #8180 [Verbose] > │                 v15                                                          │

00:00:59 #8181 [Verbose] > │         let v19 : UH9 = UH9_1                                                │

00:00:59 #8182 [Verbose] > │         let v20 : UH9 = method13(v18, v19)                                   │

00:00:59 #8183 [Verbose] > │         let v21 : UH7 = UH7_1                                                │

00:00:59 #8184 [Verbose] > │         let v22 : UH7 = method14(v20, v21)                                   │

00:00:59 #8185 [Verbose] > │         let v23 : float = 0.65                                               │

00:00:59 #8186 [Verbose] > │         let v24 : float = 0.0                                                │

00:00:59 #8187 [Verbose] > │         let v25 : float = 0.0                                                │

00:00:59 #8188 [Verbose] > │         let v26 : UH7 = UH7_1                                                │

00:00:59 #8189 [Verbose] > │         let v27 : UH7 = UH7_0(v23, v24, v25, v26)                            │

00:00:59 #8190 [Verbose] > │         let v28 : UH7 = method15(v22, v27)                                   │

00:00:59 #8191 [Verbose] > │         let v29 : UH10 = UH10_1                                              │

00:00:59 #8192 [Verbose] > │         let v30 : UH10 = method16(v28, v29)                                  │

00:00:59 #8193 [Verbose] > │         let v31 : UH11 = UH11_1                                              │

00:00:59 #8194 [Verbose] > │         let v32 : UH11 = method17(v30, v31)                                  │

00:00:59 #8195 [Verbose] > │         let struct (v33 : UH0, v34 : UH0) = method18(v32)                    │

00:00:59 #8196 [Verbose] > │         let v35 : UH12 = UH12_1                                              │

00:00:59 #8197 [Verbose] > │         let v36 : UH12 = method19(v33, v35)                                  │

00:00:59 #8198 [Verbose] > │         let v37 : float = 0.0                                                │

00:00:59 #8199 [Verbose] > │         let v38 : UH12 = UH12_0(v37, v36)                                    │

00:00:59 #8200 [Verbose] > │         let v39 : (float []) = method20(v38)                                 │

00:00:59 #8201 [Verbose] > │         let v40 : UH12 = UH12_1                                              │

00:00:59 #8202 [Verbose] > │         let v41 : UH12 = method19(v34, v40)                                  │

00:00:59 #8203 [Verbose] > │         let v42 : float = 0.0                                                │

00:00:59 #8204 [Verbose] > │         let v43 : UH12 = UH12_0(v42, v41)                                    │

00:00:59 #8205 [Verbose] > │         let v44 : (float []) = method20(v43)                                 │

00:00:59 #8206 [Verbose] > │         let v45 : (unit -> UH2) = closure153(v6)                             │

00:00:59 #8207 [Verbose] > │         UH2_0(v39, v44, v45)                                                 │

00:00:59 #8208 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:59 #8209 [Verbose] > │         v2                                                                   │

00:00:59 #8210 [Verbose] > │ and closure154 (v0 : UH13) () : UH13 =                                       │

00:00:59 #8211 [Verbose] > │     v0                                                                       │

00:00:59 #8212 [Verbose] > │ and method23 (v0 : UH2, v1 : UH13, v2 : int32) : struct (UH13 * int32) =     │

00:00:59 #8213 [Verbose] > │     match v0 with                                                            │

00:00:59 #8214 [Verbose] > │     | UH2_0(v3, v4, v5) -> (* StreamCons *)                                  │

00:00:59 #8215 [Verbose] > │         let v6 : int32 = v2 + 1                                              │

00:00:59 #8216 [Verbose] > │         let v7 : UH2 = v5 ()                                                 │

00:00:59 #8217 [Verbose] > │         let v8 : (unit -> UH13) = closure154(v1)                             │

00:00:59 #8218 [Verbose] > │         let v9 : UH13 = UH13_0(v2, v3, v4, v8)                               │

00:00:59 #8219 [Verbose] > │         method23(v7, v9, v6)                                                 │

00:00:59 #8220 [Verbose] > │     | UH2_1 -> (* StreamNil *)                                               │

00:00:59 #8221 [Verbose] > │         struct (v1, v2)                                                      │

00:00:59 #8222 [Verbose] > │ and closure155 (v0 : UH13) () : UH13 =                                       │

00:00:59 #8223 [Verbose] > │     v0                                                                       │

00:00:59 #8224 [Verbose] > │ and method24 (v0 : UH13, v1 : UH13) : UH13 =                                 │

00:00:59 #8225 [Verbose] > │     match v0 with                                                            │

00:00:59 #8226 [Verbose] > │     | UH13_0(v2, v3, v4, v5) -> (* StreamCons *)                             │

00:00:59 #8227 [Verbose] > │         let v6 : UH13 = v5 ()                                                │

00:00:59 #8228 [Verbose] > │         let v7 : (unit -> UH13) = closure155(v1)                             │

00:00:59 #8229 [Verbose] > │         let v8 : UH13 = UH13_0(v2, v3, v4, v7)                               │

00:00:59 #8230 [Verbose] > │         method24(v6, v8)                                                     │

00:00:59 #8231 [Verbose] > │     | UH13_1 -> (* StreamNil *)                                              │

00:00:59 #8232 [Verbose] > │         v1                                                                   │

00:00:59 #8233 [Verbose] > │ and method26 (v0 : (struct (string * (float []) * (float [])) [])) : (struct │

00:00:59 #8234 [Verbose] > │ (string * (float []) * (float [])) []) =                                     │

00:00:59 #8235 [Verbose] > │     v0                                                                       │

00:00:59 #8236 [Verbose] > │ and closure156 (v0 : UH14) () : UH14 =                                       │

00:00:59 #8237 [Verbose] > │     v0                                                                       │

00:00:59 #8238 [Verbose] > │ and method25 (v0 : UH13, v1 : UH14) : UH14 =                                 │

00:00:59 #8239 [Verbose] > │     match v0 with                                                            │

00:00:59 #8240 [Verbose] > │     | UH13_0(v2, v3, v4, v5) -> (* StreamCons *)                             │

00:00:59 #8241 [Verbose] > │         let v6 : UH13 = v5 ()                                                │

00:00:59 #8242 [Verbose] > │         let v7 : UH14 = method25(v6, v1)                                     │

00:00:59 #8243 [Verbose] > │         let v8 : string = $"{v2}"                                            │

00:00:59 #8244 [Verbose] > │         let v9 : (struct (string * (float []) * (float [])) []) = [|struct   │

00:00:59 #8245 [Verbose] > │ (v8, v3, v4)|]                                                               │

00:00:59 #8246 [Verbose] > │         let v10 : (struct (string * (float []) * (float [])) []) =           │

00:00:59 #8247 [Verbose] > │ method26(v9)                                                                 │

00:00:59 #8248 [Verbose] > │         let v11 : string = "wave"                                            │

00:00:59 #8249 [Verbose] > │         let v12 : string = "position (m)"                                    │

00:00:59 #8250 [Verbose] > │         let v13 : string = "displacement (m)"                                │

00:00:59 #8251 [Verbose] > │         let v14 : (unit -> UH14) = closure156(v7)                            │

00:00:59 #8252 [Verbose] > │         UH14_0(v11, v12, v13, v10, v14)                                      │

00:00:59 #8253 [Verbose] > │     | UH13_1 -> (* StreamNil *)                                              │

00:00:59 #8254 [Verbose] > │         v1                                                                   │

00:00:59 #8255 [Verbose] > │ and method27 (v0 : UH14, v1 : UH15) : UH15 =                                 │

00:00:59 #8256 [Verbose] > │     match v0 with                                                            │

00:00:59 #8257 [Verbose] > │     | UH14_0(v2, v3, v4, v5, v6) -> (* StreamCons *)                         │

00:00:59 #8258 [Verbose] > │         let v7 : UH14 = v6 ()                                                │

00:00:59 #8259 [Verbose] > │         let v8 : UH15 = method27(v7, v1)                                     │

00:00:59 #8260 [Verbose] > │         UH15_0(v2, v3, v4, v5, v8)                                           │

00:00:59 #8261 [Verbose] > │     | UH14_1 -> (* StreamNil *)                                              │

00:00:59 #8262 [Verbose] > │         v1                                                                   │

00:00:59 #8263 [Verbose] > │ and method29 (v0 : UH15, v1 : int32) : int32 =                               │

00:00:59 #8264 [Verbose] > │     match v0 with                                                            │

00:00:59 #8265 [Verbose] > │     | UH15_0(v2, v3, v4, v5, v6) -> (* Cons *)                               │

00:00:59 #8266 [Verbose] > │         let v7 : int32 = v1 + 1                                              │

00:00:59 #8267 [Verbose] > │         method29(v6, v7)                                                     │

00:00:59 #8268 [Verbose] > │     | UH15_1 -> (* Nil *)                                                    │

00:00:59 #8269 [Verbose] > │         v1                                                                   │

00:00:59 #8270 [Verbose] > │ and method30 (v0 : (struct (string * string * string * (struct (string *     │

00:00:59 #8271 [Verbose] > │ (float []) * (float [])) [])) []), v1 : UH15, v2 : int32) : int32 =          │

00:00:59 #8272 [Verbose] > │     match v1 with                                                            │

00:00:59 #8273 [Verbose] > │     | UH15_0(v3, v4, v5, v6, v7) -> (* Cons *)                               │

00:00:59 #8274 [Verbose] > │         v0.[int v2] <- struct (v3, v4, v5, v6)                               │

00:00:59 #8275 [Verbose] > │         let v8 : int32 = v2 + 1                                              │

00:00:59 #8276 [Verbose] > │         method30(v0, v7, v8)                                                 │

00:00:59 #8277 [Verbose] > │     | UH15_1 -> (* Nil *)                                                    │

00:00:59 #8278 [Verbose] > │         v2                                                                   │

00:00:59 #8279 [Verbose] > │ and method28 (v0 : UH15) : (struct (string * string * string * (struct       │

00:00:59 #8280 [Verbose] > │ (string * (float []) * (float [])) [])) []) =                                │

00:00:59 #8281 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:59 #8282 [Verbose] > │     let v2 : int32 = method29(v0, v1)                                        │

00:00:59 #8283 [Verbose] > │     let v3 : (struct (string * string * string * (struct (string * (float [  │

00:00:59 #8284 [Verbose] > │ ]) * (float [])) [])) []) = Array.zeroCreate<struct (string * string *       │

00:00:59 #8285 [Verbose] > │ string * (struct (string * (float []) * (float [])) []))> (v2)               │

00:00:59 #8286 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:59 #8287 [Verbose] > │     let v5 : int32 = method30(v3, v0, v4)                                    │

00:00:59 #8288 [Verbose] > │     v3                                                                       │

00:00:59 #8289 [Verbose] > │ and method0 () : (struct (string * string * string * (struct (string *       │

00:00:59 #8290 [Verbose] > │ (float []) * (float [])) [])) []) =                                          │

00:00:59 #8291 [Verbose] > │     let v0 : float = 0.0                                                     │

00:00:59 #8292 [Verbose] > │     let v1 : (unit -> UH0) = closure0()                                      │

00:00:59 #8293 [Verbose] > │     let v2 : UH0 = UH0_0(v0, v1)                                             │

00:00:59 #8294 [Verbose] > │     let v3 : float = 0.0                                                     │

00:00:59 #8295 [Verbose] > │     let v4 : float = 8.422578125E-06                                         │

00:00:59 #8296 [Verbose] > │     let v5 : float = 0.01                                                    │

00:00:59 #8297 [Verbose] > │     let v6 : float = 0.0007224452478461068                                   │

00:00:59 #8298 [Verbose] > │     let v7 : float = 0.0                                                     │

00:00:59 #8299 [Verbose] > │     let v8 : float = 0.0                                                     │

00:00:59 #8300 [Verbose] > │     let v9 : float = 0.0                                                     │

00:00:59 #8301 [Verbose] > │     let v10 : float = 0.0                                                    │

00:00:59 #8302 [Verbose] > │     let v11 : float = 0.0                                                    │

00:00:59 #8303 [Verbose] > │     let v12 : (unit -> UH1) = closure66()                                    │

00:00:59 #8304 [Verbose] > │     let v13 : UH1 = UH1_0(v3, v4, v5, v6, v7, v8, v9, v10, v11, v12)         │

00:00:59 #8305 [Verbose] > │     let v14 : UH2 = UH2_1                                                    │

00:00:59 #8306 [Verbose] > │     let v15 : UH2 = method1(v13, v2, v14)                                    │

00:00:59 #8307 [Verbose] > │     let v16 : UH13 = UH13_1                                                  │

00:00:59 #8308 [Verbose] > │     let v17 : int32 = 0                                                      │

00:00:59 #8309 [Verbose] > │     let struct (v18 : UH13, v19 : int32) = method23(v15, v16, v17)           │

00:00:59 #8310 [Verbose] > │     let v20 : UH13 = UH13_1                                                  │

00:00:59 #8311 [Verbose] > │     let v21 : UH13 = method24(v18, v20)                                      │

00:00:59 #8312 [Verbose] > │     let v22 : UH14 = UH14_1                                                  │

00:00:59 #8313 [Verbose] > │     let v23 : UH14 = method25(v21, v22)                                      │

00:00:59 #8314 [Verbose] > │     let v24 : UH15 = UH15_1                                                  │

00:00:59 #8315 [Verbose] > │     let v25 : UH15 = method27(v23, v24)                                      │

00:00:59 #8316 [Verbose] > │     method28(v25)                                                            │

00:00:59 #8317 [Verbose] > │ method0()                                                                    │

00:00:59 #8318 [Verbose] > │                                                                              │

00:00:59 #8319 [Verbose] > │                                                                              │

00:00:59 #8320 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:59 #8321 [Verbose] >

00:00:59 #8322 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:59 #8323 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:59 #8324 [Verbose] > │ ## end                                                                       │

00:00:59 #8325 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:01:03 #8326 [Verbose] > [NbConvertApp] Converting notebook physics.dib.ipynb to html

00:01:03 #8327 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:01:03 #8328 [Verbose] >   validate(nb)

00:01:04 #8329 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:01:04 #8330 [Verbose] >   return _pygments_highlight(

00:01:08 #8331 [Verbose] > [NbConvertApp] Writing 2732161 bytes to physics.dib.html

00:01:09 #8332 [Debug] executeAsync / exitCode: 0 / output.Length: 568877

00:01:09 #8333 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] writeDibCode / output: Spi / path: common.dib

00:00:00 #1 [Debug] writeDibCode / output: Spi / path: console.dib

00:00:00 #1 [Debug] writeDibCode / output: Spi / path: am'.dib

00:00:00 #1 [Debug] writeDibCode / output: Spi / path: listm'.dib

00:00:00 #1 [Debug] writeDibCode / output: Spi / path: optionm'.dib

00:00:00 #1 [Debug] writeDibCode / output: Spi / path: math.dib

00:00:00 #1 [Debug] writeDibCode / output: Spi / path: benchmark.dib

00:00:00 #1 [Debug] writeDibCode / output: Spi / path: testing.dib

00:00:00 #4 [Debug] parseDibCode / output: Spi / file: common.dib

00:00:00 #7 [Debug] parseDibCode / output: Spi / file: math.dib

00:00:00 #9 [Debug] parseDibCode / output: Spi / file: testing.dib

00:00:00 #8 [Debug] parseDibCode / output: Spi / file: benchmark.dib

00:00:00 #4 [Debug] parseDibCode / output: Spi / file: listm'.dib

00:00:00 #4 [Debug] parseDibCode / output: Spi / file: optionm'.dib

00:00:00 #5 [Debug] parseDibCode / output: Spi / file: console.dib

00:00:00 #6 [Debug] parseDibCode / output: Spi / file: am'.dib

00:00:00 #12 [Debug] writeDibCode / output: Spi / path: rust.dib

00:00:00 #13 [Debug] writeDibCode / output: Spi / path: physics.dib

00:00:00 #12 [Debug] writeDibCode / output: Spi / path: util.dib

00:00:00 #12 [Debug] writeDibCode / output: Spi / path: stream.dib

00:00:00 #12 [Debug] writeDibCode / output: Spi / path: seq.dib

00:00:00 #16 [Debug] parseDibCode / output: Spi / file: util.dib

00:00:00 #14 [Debug] parseDibCode / output: Spi / file: rust.dib

00:00:00 #15 [Debug] parseDibCode / output: Spi / file: physics.dib

00:00:00 #17 [Debug] parseDibCode / output: Spi / file: stream.dib

00:00:00 #18 [Debug] parseDibCode / output: Spi / file: seq.dib

In [ ]:
{ . "$ScriptDir/../apps/chat/build.ps1" } | Invoke-Block
    Finished release [optimized] target(s) in 2.17s

    Finished release [optimized] target(s) in 15.98s

     Running `/mnt/c/home/git/polyglot/target/release/chat_contract_tests`

Updated the logging layer according to `log_config.json`





new: ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 5295886175250,

    },

    transaction: ExecutionOutcome {

        transaction_hash: 8WMDYzhn9pwQ75tTpzrA5LhAqiCFQkR62djUuBE2TJdn,

        block_hash: 5bf1gZQsMM5wYBenD5xKpk4CbEntpApyPbybDF35hzC,

        logs: [],

        receipt_ids: [

            6Qi2sCpB8LkuyGuTpV3MHApbPpNiRqVvfvjiQ6kbxsD3,

        ],

        gas_burnt: NearGas {

            inner: 2427927707802,

        },

        tokens_burnt: NearToken {

            inner: 242792770780200000000,

        },

        executor_id: AccountId(

            "dev-20240208204107-21898857356583",

        ),

        status: SuccessReceiptId(6Qi2sCpB8LkuyGuTpV3MHApbPpNiRqVvfvjiQ6kbxsD3),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: 6Qi2sCpB8LkuyGuTpV3MHApbPpNiRqVvfvjiQ6kbxsD3,

            block_hash: 5bf1gZQsMM5wYBenD5xKpk4CbEntpApyPbybDF35hzC,

            logs: [],

            receipt_ids: [

                GkpviVR5yiPpnJhbJbeBCL8ef9uuZZ3TQBH7G1ZNzhqz,

            ],

            gas_burnt: NearGas {

                inner: 2644775904948,

            },

            tokens_burnt: NearToken {

                inner: 264477590494800000000,

            },

            executor_id: AccountId(

                "dev-20240208204107-21898857356583",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: GkpviVR5yiPpnJhbJbeBCL8ef9uuZZ3TQBH7G1ZNzhqz,

            block_hash: DHUN1p3e8QTyifUVvoUXa2XgBJbu5FnprjqKVAAiSsGg,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: NearToken {

                inner: 0,

            },

            executor_id: AccountId(

                "dev-20240208204107-21898857356583",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.003537651965067

outcome (success: true):

  outcome_gas_burnt_usd: 0.001621855708811736

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.001766710304505264

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





claim_alias(contract, ''): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 5295377250040,

    },

    transaction: ExecutionOutcome {

        transaction_hash: zmoiU2feU5HtDb7UHukpLwH1RKah79gVcMC6M6UDUDC,

        block_hash: EdntLZFfzGMtzAvsPyBH9aUWYDqxj3bVheD5j9VLm6w1,

        logs: [],

        receipt_ids: [

            32YiFk9Fj4W5myrEFDnYCoftufrtZ3A3Fy1RtCK5CzYE,

        ],

        gas_burnt: NearGas {

            inner: 2427972426482,

        },

        tokens_burnt: NearToken {

            inner: 242797242648200000000,

        },

        executor_id: AccountId(

            "dev-20240208204107-21898857356583",

        ),

        status: SuccessReceiptId(32YiFk9Fj4W5myrEFDnYCoftufrtZ3A3Fy1RtCK5CzYE),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: 32YiFk9Fj4W5myrEFDnYCoftufrtZ3A3Fy1RtCK5CzYE,

            block_hash: EdntLZFfzGMtzAvsPyBH9aUWYDqxj3bVheD5j9VLm6w1,

            logs: [

                "claim_alias / alias: \"\" / account_id: AccountId(\n    \"dev-20240208204107-21898857356583\",\n) / timestamp: 1707424869338415503",

            ],

            receipt_ids: [

                E1E6sPcN7rRvEGEXP3NbvTRCkPrNYjfcak4AyCyVT6F2,

            ],

            gas_burnt: NearGas {

                inner: 2644222261058,

            },

            tokens_burnt: NearToken {

                inner: 264422226105800000000,

            },

            executor_id: AccountId(

                "dev-20240208204107-21898857356583",

            ),

            status: Failure(ActionError(ActionError { index: Some(0), kind: FunctionCallError(ExecutionError("Smart contract panicked: Invalid alias")) })),

        },

        ExecutionOutcome {

            transaction_hash: E1E6sPcN7rRvEGEXP3NbvTRCkPrNYjfcak4AyCyVT6F2,

            block_hash: AUHN8heGDjLnJLRxHdFcWtMb6BKid3Eyb23VPn2gv8TC,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: NearToken {

                inner: 0,

            },

            executor_id: AccountId(

                "dev-20240208204107-21898857356583",

            ),

            status: SuccessValue(''),

        },

    ],

    status: Failure(ActionError(ActionError { index: Some(0), kind: FunctionCallError(ExecutionError("Smart contract panicked: Invalid alias")) })),

}

total_gas_burnt_usd: 0.0035373120030267203

outcome (success: true):

  outcome_gas_burnt_usd: 0.001621885580889976

  outcome_tokens_burnt_usd: 0.0

outcome (success: false):

  outcome_gas_burnt_usd: 0.0017663404703867438

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





dev_create_account(account1): Account {

    id: AccountId(

        "dev-20240208204109-44780491049241",

    ),

}





generate_cid_borsh(account1): ViewResultDetails {

    result: [

        59,

        0,

        0,

        0,

        98,

        97,

        102,

        107,

        114,

        101,

        105,

        104,

        100,

        119,

        100,

        99,

        101,

        102,

        103,

        104,

        52,

        100,

        113,

        107,

        106,

        118,

        54,

        55,

        117,

        122,

        99,

        109,

        119,

        55,

        111,

        106,

        101,

        101,

        54,

        120,

        101,

        100,

        122,

        100,

        101,

        116,

        111,

        106,

        117,

        122,

        106,

        101,

        118,

        116,

        101,

        110,

        120,

        113,

        117,

        118,

        121,

        107,

        117,

    ],

    logs: [],

}





claim_alias(account1, alias1): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 5922810298441,

    },

    transaction: ExecutionOutcome {

        transaction_hash: BK73gHa5h4Tja9ra1vQRrqAZpkVKnqYALfnUn7kEkmFb,

        block_hash: 9T4Q9wXTSSj94T7ZKMg1AQDu1hC8hK6wHnCcGxfJ7i2q,

        logs: [],

        receipt_ids: [

            HByxZFCUeK8bSumT9jr2J4Nwvhwh3q7Cmg8QHxCMk6cc,

        ],

        gas_burnt: NearGas {

            inner: 2427985842086,

        },

        tokens_burnt: NearToken {

            inner: 242798584208600000000,

        },

        executor_id: AccountId(

            "dev-20240208204109-44780491049241",

        ),

        status: SuccessReceiptId(HByxZFCUeK8bSumT9jr2J4Nwvhwh3q7Cmg8QHxCMk6cc),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: HByxZFCUeK8bSumT9jr2J4Nwvhwh3q7Cmg8QHxCMk6cc,

            block_hash: 5jGxrfvqZ39hLjNqPKA81W4ZjxnSTapDLeQBTx2mxWr9,

            logs: [

                "claim_alias / alias: \"alias1\" / account_id: AccountId(\n    \"dev-20240208204109-44780491049241\",\n) / timestamp: 1707424871587878773",

            ],

            receipt_ids: [

                AUY6WcrA7uQBAZAHuMXDvu5pNADsvmTfNkGv4GfcN18e,

            ],

            gas_burnt: NearGas {

                inner: 3271641893855,

            },

            tokens_burnt: NearToken {

                inner: 327164189385500000000,

            },

            executor_id: AccountId(

                "dev-20240208204107-21898857356583",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: AUY6WcrA7uQBAZAHuMXDvu5pNADsvmTfNkGv4GfcN18e,

            block_hash: HyV1QGx8yZNvg5kxYYPin7ZVuCZw9ugtKeSRN9hcwf5g,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: NearToken {

                inner: 0,

            },

            executor_id: AccountId(

                "dev-20240208204109-44780491049241",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.003956437279358588

outcome (success: true):

  outcome_gas_burnt_usd: 0.0016218945425134478

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00218545678509514

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





claim_alias(account1, alias1): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 5565263354596,

    },

    transaction: ExecutionOutcome {

        transaction_hash: BfSexK3a6R8JVa6o3B8qeEYqKK11Dd9aNZVGzai6wYEK,

        block_hash: JCNVCmptN5SScrqJjrGMjGg8dHRDGjDfGF6apL1bpjQf,

        logs: [],

        receipt_ids: [

            GqzEPrsjrwC5EsKKwRbhHpsMvYwgDqJ6dXg6SdUJfdy8,

        ],

        gas_burnt: NearGas {

            inner: 2427985842086,

        },

        tokens_burnt: NearToken {

            inner: 242798584208600000000,

        },

        executor_id: AccountId(

            "dev-20240208204109-44780491049241",

        ),

        status: SuccessReceiptId(GqzEPrsjrwC5EsKKwRbhHpsMvYwgDqJ6dXg6SdUJfdy8),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: GqzEPrsjrwC5EsKKwRbhHpsMvYwgDqJ6dXg6SdUJfdy8,

            block_hash: BEu34F8Smh8Q44p6s4TDQKNsR9wq1KKk1xRVpTXCo88Z,

            logs: [

                "claim_alias / alias: \"alias1\" / account_id: AccountId(\n    \"dev-20240208204109-44780491049241\",\n) / timestamp: 1707424872599480785",

                "Alias already claimed",

            ],

            receipt_ids: [

                AqYFoqenZJ9gyBWaeU24aBM59xf6kNCECxHwZ4otnvzr,

            ],

            gas_burnt: NearGas {

                inner: 2914094950010,

            },

            tokens_burnt: NearToken {

                inner: 291409495001000000000,

            },

            executor_id: AccountId(

                "dev-20240208204107-21898857356583",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: AqYFoqenZJ9gyBWaeU24aBM59xf6kNCECxHwZ4otnvzr,

            block_hash: CG1aRd8d95X1bmLqkhECYTmyRD5G1jSTvdHdWCxFtgDX,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: NearToken {

                inner: 0,

            },

            executor_id: AccountId(

                "dev-20240208204109-44780491049241",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.0037175959208701277

outcome (success: true):

  outcome_gas_burnt_usd: 0.0016218945425134478

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00194661542660668

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





get_account_info(account1): Some(

    (

        "alias1",

        (

            1707424871587878773,

            0,

        ),

    ),

)





get_alias_map(account1, alias1): Some(

    {

        AccountId(

            "dev-20240208204109-44780491049241",

        ): (

            1707424871587878773,

            0,

        ),

    },

)





dev_create_account(account2): Account {

    id: AccountId(

        "dev-20240208204113-54399876101307",

    ),

}





claim_alias(alias2): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 6035382033997,

    },

    transaction: ExecutionOutcome {

        transaction_hash: 5qbDdcJqbT22JPXQZwoNmNXWMXnUGxG2PFVpnE9f8T6Z,

        block_hash: AnvNrW86rjeAqEro6pxtJcMH7mnHTmemFKRrE1wKmNEC,

        logs: [],

        receipt_ids: [

            oGeDbutoPRiDLswLamgpmHEeSCx9aGroDoHyUcxMJT6,

        ],

        gas_burnt: NearGas {

            inner: 2427985842086,

        },

        tokens_burnt: NearToken {

            inner: 242798584208600000000,

        },

        executor_id: AccountId(

            "dev-20240208204113-54399876101307",

        ),

        status: SuccessReceiptId(oGeDbutoPRiDLswLamgpmHEeSCx9aGroDoHyUcxMJT6),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: oGeDbutoPRiDLswLamgpmHEeSCx9aGroDoHyUcxMJT6,

            block_hash: 9KN2j46d3pGSrQ1rBFHnHzRbwmxMQdjtqpgLUghhoeF8,

            logs: [

                "claim_alias / alias: \"alias2\" / account_id: AccountId(\n    \"dev-20240208204113-54399876101307\",\n) / timestamp: 1707424874621849118",

            ],

            receipt_ids: [

                cgfmhaQvzt2u7hKe1ypJ6aBxfozeDn3iSvFZFZFEQTY,

            ],

            gas_burnt: NearGas {

                inner: 3384213629411,

            },

            tokens_burnt: NearToken {

                inner: 338421362941100000000,

            },

            executor_id: AccountId(

                "dev-20240208204107-21898857356583",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: cgfmhaQvzt2u7hKe1ypJ6aBxfozeDn3iSvFZFZFEQTY,

            block_hash: CozGwME77dZf7mRgHLHLVEZocLeiDGn14crTHjuUQcu4,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: NearToken {

                inner: 0,

            },

            executor_id: AccountId(

                "dev-20240208204113-54399876101307",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.004031635198709996

outcome (success: true):

  outcome_gas_burnt_usd: 0.0016218945425134478

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.002260654704446548

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





get_account_info(account2): Some(

    (

        "alias2",

        (

            1707424874621849118,

            0,

        ),

    ),

)





get_alias_map_borsh(alias2): Some(

    {

        AccountId(

            "dev-20240208204113-54399876101307",

        ): (

            1707424874621849118,

            0,

        ),

    },

)





claim_alias(account2, alias1): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 6131800955728,

    },

    transaction: ExecutionOutcome {

        transaction_hash: EXg3yuF887A5YXgJfdm384i3j8DJuEXMheVJT7M5cM2a,

        block_hash: 6wxPaEAvQC8R67MiTs6h3DJN8hR1smVh5EL9KxZ6Eg7d,

        logs: [],

        receipt_ids: [

            EUeiMkduiD6JoV8RYMFP5zFmiCi95BvD8zfKqhYNN7ZU,

        ],

        gas_burnt: NearGas {

            inner: 2427985842086,

        },

        tokens_burnt: NearToken {

            inner: 242798584208600000000,

        },

        executor_id: AccountId(

            "dev-20240208204113-54399876101307",

        ),

        status: SuccessReceiptId(EUeiMkduiD6JoV8RYMFP5zFmiCi95BvD8zfKqhYNN7ZU),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: EUeiMkduiD6JoV8RYMFP5zFmiCi95BvD8zfKqhYNN7ZU,

            block_hash: 6hcvNUNpeJBmeSngQTZE2HJBxLro47U2AjANK9Xpc8yf,

            logs: [

                "claim_alias / alias: \"alias1\" / account_id: AccountId(\n    \"dev-20240208204113-54399876101307\",\n) / timestamp: 1707424875637023533",

            ],

            receipt_ids: [

                G6GZcLeC8UEfaR5ZD89aXVQKzQu8DVNw6FEahTcLa1nd,

            ],

            gas_burnt: NearGas {

                inner: 3480632551142,

            },

            tokens_burnt: NearToken {

                inner: 348063255114200000000,

            },

            executor_id: AccountId(

                "dev-20240208204107-21898857356583",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: G6GZcLeC8UEfaR5ZD89aXVQKzQu8DVNw6FEahTcLa1nd,

            block_hash: CCMtq9URqNJT1JbPCDnAtDzjQHGuVDd1wjp7kfhhVXGS,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: NearToken {

                inner: 0,

            },

            executor_id: AccountId(

                "dev-20240208204113-54399876101307",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.0040960430384263035

outcome (success: true):

  outcome_gas_burnt_usd: 0.0016218945425134478

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.002325062544162856

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





get_account_info(account2): Some(

    (

        "alias1",

        (

            1707424875637023533,

            1,

        ),

    ),

)





get_alias_map(account2, alias1): Some(

    {

        AccountId(

            "dev-20240208204109-44780491049241",

        ): (

            1707424871587878773,

            0,

        ),

        AccountId(

            "dev-20240208204113-54399876101307",

        ): (

            1707424875637023533,

            1,

        ),

    },

)





get_alias_map(account2, alias2): Some(

    {},

)





claim_alias(account1, alias2): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 6094939422160,

    },

    transaction: ExecutionOutcome {

        transaction_hash: DovKGYSACbkrWy54RZfoy95K2Pk1iFUbqeFGQdhjjd7g,

        block_hash: wG9rFWNpepbdwHHbMBevnygh1myNi6orzEwfuAjbaEm,

        logs: [],

        receipt_ids: [

            CDWXSNcpPMK99X4MzPgxnbRNGcDcN3W4B5C94MX73RPG,

        ],

        gas_burnt: NearGas {

            inner: 2427985842086,

        },

        tokens_burnt: NearToken {

            inner: 242798584208600000000,

        },

        executor_id: AccountId(

            "dev-20240208204109-44780491049241",

        ),

        status: SuccessReceiptId(CDWXSNcpPMK99X4MzPgxnbRNGcDcN3W4B5C94MX73RPG),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: CDWXSNcpPMK99X4MzPgxnbRNGcDcN3W4B5C94MX73RPG,

            block_hash: ufajTY3prKX1bmsYaJStGuCK1rmZGwbjS1LduPTbCsD,

            logs: [

                "claim_alias / alias: \"alias2\" / account_id: AccountId(\n    \"dev-20240208204109-44780491049241\",\n) / timestamp: 1707424876648396047",

            ],

            receipt_ids: [

                5zqaPTxAFtXZ4KYCubtqmmFE1Nj7Nyfv1pLupvW9F1ae,

            ],

            gas_burnt: NearGas {

                inner: 3443771017574,

            },

            tokens_burnt: NearToken {

                inner: 344377101757400000000,

            },

            executor_id: AccountId(

                "dev-20240208204107-21898857356583",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: 5zqaPTxAFtXZ4KYCubtqmmFE1Nj7Nyfv1pLupvW9F1ae,

            block_hash: 8kghZDkqpE4kCgn97nEvY7ScfEhgTqyMyDxMjmovskaB,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: NearToken {

                inner: 0,

            },

            executor_id: AccountId(

                "dev-20240208204109-44780491049241",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.00407141953400288

outcome (success: true):

  outcome_gas_burnt_usd: 0.0016218945425134478

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.002300439039739432

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





get_account_info(account1): Some(

    (

        "alias2",

        (

            1707424876648396047,

            0,

        ),

    ),

)





get_alias_map(account1, alias2): Some(

    {

        AccountId(

            "dev-20240208204109-44780491049241",

        ): (

            1707424876648396047,

            0,

        ),

    },

)





get_alias_map(account1, alias1): Some(

    {

        AccountId(

            "dev-20240208204113-54399876101307",

        ): (

            1707424875637023533,

            1,

        ),

    },

)





claim_alias(account1, alias1): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 6099597043876,

    },

    transaction: ExecutionOutcome {

        transaction_hash: 3DrBwMtjQWE2GAC8PSVCaFhxZecWwxxia3QNK3ub3TVb,

        block_hash: 7dDsVTMv5oyiUhgTDqXHE4Pu32jNrFbF6VD7YGHMJkHR,

        logs: [],

        receipt_ids: [

            2JH1WgfBAgpRjzkxr7Q7TNBfjf2UC89WzxzAFyRduNex,

        ],

        gas_burnt: NearGas {

            inner: 2427985842086,

        },

        tokens_burnt: NearToken {

            inner: 242798584208600000000,

        },

        executor_id: AccountId(

            "dev-20240208204109-44780491049241",

        ),

        status: SuccessReceiptId(2JH1WgfBAgpRjzkxr7Q7TNBfjf2UC89WzxzAFyRduNex),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: 2JH1WgfBAgpRjzkxr7Q7TNBfjf2UC89WzxzAFyRduNex,

            block_hash: Hbo2XWo1sN966jKyxtuD9rrgeBzCXZV657v52Ap4bqRz,

            logs: [

                "claim_alias / alias: \"alias1\" / account_id: AccountId(\n    \"dev-20240208204109-44780491049241\",\n) / timestamp: 1707424877662168561",

            ],

            receipt_ids: [

                CGCQ2sFZMZL7vzvQYz1RyikWNEp2mah8f7CiafRF9ihY,

            ],

            gas_burnt: NearGas {

                inner: 3448428639290,

            },

            tokens_burnt: NearToken {

                inner: 344842863929000000000,

            },

            executor_id: AccountId(

                "dev-20240208204107-21898857356583",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: CGCQ2sFZMZL7vzvQYz1RyikWNEp2mah8f7CiafRF9ihY,

            block_hash: 2kyYL2ifSNKxvQ1a4NJv8TLQuPhTJZgSoJmFgySg39bX,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: NearToken {

                inner: 0,

            },

            executor_id: AccountId(

                "dev-20240208204109-44780491049241",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.004074530825309168

outcome (success: true):

  outcome_gas_burnt_usd: 0.0016218945425134478

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00230355033104572

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





get_account_info(account1): Some(

    (

        "alias1",

        (

            1707424877662168561,

            1,

        ),

    ),

)





get_alias_map(account1, alias1): Some(

    {

        AccountId(

            "dev-20240208204113-54399876101307",

        ): (

            1707424875637023533,

            0,

        ),

        AccountId(

            "dev-20240208204109-44780491049241",

        ): (

            1707424877662168561,

            1,

        ),

    },

)





get_alias_map(account1, alias2): Some(

    {},

)

In [ ]:
{ . "$ScriptDir/../apps/dice/build.ps1" } | Invoke-Block
Complexidade: Simple, Duração: Short    

Complexidade: Simple, Duração: Short    

Complexidade: Simple, Duração: Medium   

Complexidade: Moderate, Duração: Medium 

Complexidade: Complex, Duração: Long    

Complexidade: Complex, Duração: Long    

[16:41:21 INF] EXPECTO? Running tests... <Expecto>

[16:41:26 INF] EXPECTO! 7 tests run in 00:00:05.2302884 for FsCheck samples – 7 passed, 0 ignored, 0 failed, 0 errored. Success! <Expecto>



00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\apps\dice

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 dice.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:03 #11 [Verbose] >

00:00:03 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:03 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:03 #14 [Verbose] > │ # dice (Polyglot)                                                            │

00:00:03 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:04 #16 [Verbose] >

00:00:04 #17 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:04 #18 [Verbose] > // // test

00:00:04 #19 [Verbose] >

00:00:04 #20 [Verbose] > open testing

00:00:07 #21 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-3371-7161-7bb40080bcf3\main.spi

00:00:10 #22 [Verbose] >

00:00:10 #23 [Verbose] > ╭─[ 6.19s - stdout ]───────────────────────────────────────────────────────────╮

00:00:10 #24 [Verbose] > │ ()                                                                           │

00:00:10 #25 [Verbose] > │                                                                              │

00:00:10 #26 [Verbose] > │                                                                              │

00:00:10 #27 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:10 #28 [Verbose] >

00:00:10 #29 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:10 #30 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:10 #31 [Verbose] > │ ## sixth_power_sequence                                                      │

00:00:10 #32 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:10 #33 [Verbose] >

00:00:10 #34 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:10 #35 [Verbose] > inl sixth_power_sequence () =

00:00:10 #36 [Verbose] >     stream.iterate ((*) 6) 1

00:00:10 #37 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-3753-5318-5f545bb9806d\main.spi

00:00:10 #38 [Verbose] >

00:00:10 #39 [Verbose] > ╭─[ 237.49ms - stdout ]────────────────────────────────────────────────────────╮

00:00:10 #40 [Verbose] > │ ()                                                                           │

00:00:10 #41 [Verbose] > │                                                                              │

00:00:10 #42 [Verbose] > │                                                                              │

00:00:10 #43 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:10 #44 [Verbose] >

00:00:10 #45 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:10 #46 [Verbose] > // // test

00:00:10 #47 [Verbose] >

00:00:10 #48 [Verbose] > sixth_power_sequence ()

00:00:10 #49 [Verbose] > |> stream.take_while (fun _ i => i <= 7i32)

00:00:10 #50 [Verbose] > |> stream.to_list

00:00:10 #51 [Verbose] > |> _equal [[ 1i32; 6; 36; 216; 1296; 7776; 46656; 279936 ]]

00:00:10 #52 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-3776-7660-75c69dc18b42\main.spi

00:00:11 #53 [Verbose] >

00:00:11 #54 [Verbose] > ╭─[ 1.55s - stdout ]───────────────────────────────────────────────────────────╮

00:00:11 #55 [Verbose] > │ type UH0 =                                                                   │

00:00:11 #56 [Verbose] > │     | UH0_0 of int32 * UH0                                                   │

00:00:11 #57 [Verbose] > │     | UH0_1                                                                  │

00:00:11 #58 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:11 #59 [Verbose] > │     let v0 : UH0 = UH0_1                                                     │

00:00:11 #60 [Verbose] > │     let v1 : UH0 = UH0_0(279936, v0)                                         │

00:00:11 #61 [Verbose] > │     let v2 : UH0 = UH0_0(46656, v1)                                          │

00:00:11 #62 [Verbose] > │     let v3 : UH0 = UH0_0(7776, v2)                                           │

00:00:11 #63 [Verbose] > │     let v4 : UH0 = UH0_0(1296, v3)                                           │

00:00:11 #64 [Verbose] > │     let v5 : UH0 = UH0_0(216, v4)                                            │

00:00:11 #65 [Verbose] > │     let v6 : UH0 = UH0_0(36, v5)                                             │

00:00:11 #66 [Verbose] > │     let v7 : UH0 = UH0_0(6, v6)                                              │

00:00:11 #67 [Verbose] > │     let v8 : UH0 = UH0_0(1, v7)                                              │

00:00:11 #68 [Verbose] > │     let v9 : UH0 = UH0_1                                                     │

00:00:11 #69 [Verbose] > │     let v10 : UH0 = UH0_0(279936, v9)                                        │

00:00:11 #70 [Verbose] > │     let v11 : UH0 = UH0_0(46656, v10)                                        │

00:00:11 #71 [Verbose] > │     let v12 : UH0 = UH0_0(7776, v11)                                         │

00:00:11 #72 [Verbose] > │     let v13 : UH0 = UH0_0(1296, v12)                                         │

00:00:11 #73 [Verbose] > │     let v14 : UH0 = UH0_0(216, v13)                                          │

00:00:11 #74 [Verbose] > │     let v15 : UH0 = UH0_0(36, v14)                                           │

00:00:11 #75 [Verbose] > │     let v16 : UH0 = UH0_0(6, v15)                                            │

00:00:11 #76 [Verbose] > │     let v17 : UH0 = UH0_0(1, v16)                                            │

00:00:11 #77 [Verbose] > │     let v18 : string = $"__expect / actual: %A{v8} / expected: %A{v17}"      │

00:00:11 #78 [Verbose] > │     ()                                                                       │

00:00:11 #79 [Verbose] > │ method0()                                                                    │

00:00:11 #80 [Verbose] > │                                                                              │

00:00:11 #81 [Verbose] > │                                                                              │

00:00:11 #82 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #83 [Verbose] >

00:00:11 #84 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:11 #85 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:11 #86 [Verbose] > │ ## accumulate_dice_rolls                                                     │

00:00:11 #87 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #88 [Verbose] >

00:00:11 #89 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:11 #90 [Verbose] > inl accumulate_dice_rolls

00:00:11 #91 [Verbose] >     (log : option (string -> ()))

00:00:11 #92 [Verbose] >     (rolls : list u8)

00:00:11 #93 [Verbose] >     (power : i8)

00:00:11 #94 [Verbose] >     acc

00:00:11 #95 [Verbose] >     =

00:00:11 #96 [Verbose] >     inl rec body acc power rolls =

00:00:11 #97 [Verbose] >         match rolls with

00:00:11 #98 [Verbose] >         | _ when power < 0 =>

00:00:11 #99 [Verbose] >             log |> optionm'.iter ((|>) $"$\"accumulate_dice_rolls / power:

00:00:11 #100 [Verbose] > {!power} / acc: {!acc}\"")

00:00:11 #101 [Verbose] >             Some (acc + 1, rolls)

00:00:11 #102 [Verbose] >         | [[]] => None

00:00:11 #103 [Verbose] >         | roll :: rest when roll > 1 =>

00:00:11 #104 [Verbose] >             inl coeff = sixth_power_sequence () |> stream.item power

00:00:11 #105 [Verbose] >             inl value = conv (roll - 1) * coeff

00:00:11 #106 [Verbose] >             log |> optionm'.iter ((|>) $"$\"accumulate_dice_rolls / power:

00:00:11 #107 [Verbose] > {!power} / acc: {!acc} / roll: {!roll} / value: {!value}\""

00:00:11 #108 [Verbose] >             )

00:00:11 #109 [Verbose] >             loop (acc + value) (power - 1) rest

00:00:11 #110 [Verbose] >         | roll :: rest =>

00:00:11 #111 [Verbose] >             log |> optionm'.iter ((|>) $"$\"accumulate_dice_rolls / power:

00:00:11 #112 [Verbose] > {!power} / acc: {!acc} / roll: {!roll}\"")

00:00:11 #113 [Verbose] >             loop acc (power - 1) rest

00:00:11 #114 [Verbose] >     and inl loop acc power rolls =

00:00:11 #115 [Verbose] >         if var_is rolls |> not

00:00:11 #116 [Verbose] >         then body acc power rolls

00:00:11 #117 [Verbose] >         else

00:00:11 #118 [Verbose] >             inl acc = dyn acc

00:00:11 #119 [Verbose] >             join body acc power rolls

00:00:11 #120 [Verbose] >     loop acc power rolls

00:00:12 #121 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-3933-3367-33422382b8d6\main.spi

00:00:12 #122 [Verbose] >

00:00:12 #123 [Verbose] > ╭─[ 218.92ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #124 [Verbose] > │ ()                                                                           │

00:00:12 #125 [Verbose] > │                                                                              │

00:00:12 #126 [Verbose] > │                                                                              │

00:00:12 #127 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #128 [Verbose] >

00:00:12 #129 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #130 [Verbose] > // // test

00:00:12 #131 [Verbose] >

00:00:12 #132 [Verbose] > accumulate_dice_rolls (Some console.write_line) [[ 6; 5; 4; 3; 2 ]] 0 1000i32

00:00:12 #133 [Verbose] > |> _equal (Some (1006, [[ 5; 4; 3; 2 ]]))

00:00:12 #134 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-3955-5533-5ad20fc2cd5a\main.spi

00:00:12 #135 [Verbose] >

00:00:12 #136 [Verbose] > ╭─[ 687.27ms - stdout ]────────────────────────────────────────────────────────╮

00:00:12 #137 [Verbose] > │ type UH0 =                                                                   │

00:00:12 #138 [Verbose] > │     | UH0_0 of uint8 * UH0                                                   │

00:00:12 #139 [Verbose] > │     | UH0_1                                                                  │

00:00:12 #140 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:12 #141 [Verbose] > │     | US0_0                                                                  │

00:00:12 #142 [Verbose] > │     | US0_1 of f1_0 : int32 * f1_1 : UH0                                     │

00:00:12 #143 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:12 #144 [Verbose] > │     let v0 : string = $"accumulate_dice_rolls / power: {0y} / acc: {1000} /  │

00:00:12 #145 [Verbose] > │ roll: {6uy} / value: {5}"                                                    │

00:00:12 #146 [Verbose] > │     System.Console.WriteLine v0                                              │

00:00:12 #147 [Verbose] > │     let v1 : string = $"accumulate_dice_rolls / power: {-1y} / acc: {1005}"  │

00:00:12 #148 [Verbose] > │     System.Console.WriteLine v1                                              │

00:00:12 #149 [Verbose] > │     let v2 : UH0 = UH0_1                                                     │

00:00:12 #150 [Verbose] > │     let v3 : UH0 = UH0_0(2uy, v2)                                            │

00:00:12 #151 [Verbose] > │     let v4 : UH0 = UH0_0(3uy, v3)                                            │

00:00:12 #152 [Verbose] > │     let v5 : UH0 = UH0_0(4uy, v4)                                            │

00:00:12 #153 [Verbose] > │     let v6 : UH0 = UH0_0(5uy, v5)                                            │

00:00:12 #154 [Verbose] > │     let v7 : US0 = US0_1(1006, v6)                                           │

00:00:12 #155 [Verbose] > │     let v8 : UH0 = UH0_1                                                     │

00:00:12 #156 [Verbose] > │     let v9 : UH0 = UH0_0(2uy, v8)                                            │

00:00:12 #157 [Verbose] > │     let v10 : UH0 = UH0_0(3uy, v9)                                           │

00:00:12 #158 [Verbose] > │     let v11 : UH0 = UH0_0(4uy, v10)                                          │

00:00:12 #159 [Verbose] > │     let v12 : UH0 = UH0_0(5uy, v11)                                          │

00:00:12 #160 [Verbose] > │     let v13 : US0 = US0_1(1006, v12)                                         │

00:00:12 #161 [Verbose] > │     let v14 : string = $"__expect / actual: %A{v7} / expected: %A{v13}"      │

00:00:12 #162 [Verbose] > │     ()                                                                       │

00:00:12 #163 [Verbose] > │ method0()                                                                    │

00:00:12 #164 [Verbose] > │                                                                              │

00:00:12 #165 [Verbose] > │ accumulate_dice_rolls / power: 0 / acc: 1000 / roll: 6 / value: 5            │

00:00:12 #166 [Verbose] > │ accumulate_dice_rolls / power: -1 / acc: 1005                                │

00:00:12 #167 [Verbose] > │                                                                              │

00:00:12 #168 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #169 [Verbose] >

00:00:12 #170 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:12 #171 [Verbose] > // // test

00:00:12 #172 [Verbose] >

00:00:12 #173 [Verbose] > accumulate_dice_rolls (Some console.write_line) [[ 6; 5; 4; 3; 2 ]] 1 1000i32

00:00:12 #174 [Verbose] > |> _equal (Some (1035, [[ 4; 3; 2 ]]))

00:00:13 #175 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4026-2641-2312533c6a35\main.spi

00:00:13 #176 [Verbose] >

00:00:13 #177 [Verbose] > ╭─[ 398.75ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #178 [Verbose] > │ type UH0 =                                                                   │

00:00:13 #179 [Verbose] > │     | UH0_0 of uint8 * UH0                                                   │

00:00:13 #180 [Verbose] > │     | UH0_1                                                                  │

00:00:13 #181 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:13 #182 [Verbose] > │     | US0_0                                                                  │

00:00:13 #183 [Verbose] > │     | US0_1 of f1_0 : int32 * f1_1 : UH0                                     │

00:00:13 #184 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:13 #185 [Verbose] > │     let v0 : string = $"accumulate_dice_rolls / power: {1y} / acc: {1000} /  │

00:00:13 #186 [Verbose] > │ roll: {6uy} / value: {30}"                                                   │

00:00:13 #187 [Verbose] > │     System.Console.WriteLine v0                                              │

00:00:13 #188 [Verbose] > │     let v1 : string = $"accumulate_dice_rolls / power: {0y} / acc: {1030} /  │

00:00:13 #189 [Verbose] > │ roll: {5uy} / value: {4}"                                                    │

00:00:13 #190 [Verbose] > │     System.Console.WriteLine v1                                              │

00:00:13 #191 [Verbose] > │     let v2 : string = $"accumulate_dice_rolls / power: {-1y} / acc: {1034}"  │

00:00:13 #192 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:13 #193 [Verbose] > │     let v3 : UH0 = UH0_1                                                     │

00:00:13 #194 [Verbose] > │     let v4 : UH0 = UH0_0(2uy, v3)                                            │

00:00:13 #195 [Verbose] > │     let v5 : UH0 = UH0_0(3uy, v4)                                            │

00:00:13 #196 [Verbose] > │     let v6 : UH0 = UH0_0(4uy, v5)                                            │

00:00:13 #197 [Verbose] > │     let v7 : US0 = US0_1(1035, v6)                                           │

00:00:13 #198 [Verbose] > │     let v8 : UH0 = UH0_1                                                     │

00:00:13 #199 [Verbose] > │     let v9 : UH0 = UH0_0(2uy, v8)                                            │

00:00:13 #200 [Verbose] > │     let v10 : UH0 = UH0_0(3uy, v9)                                           │

00:00:13 #201 [Verbose] > │     let v11 : UH0 = UH0_0(4uy, v10)                                          │

00:00:13 #202 [Verbose] > │     let v12 : US0 = US0_1(1035, v11)                                         │

00:00:13 #203 [Verbose] > │     let v13 : string = $"__expect / actual: %A{v7} / expected: %A{v12}"      │

00:00:13 #204 [Verbose] > │     ()                                                                       │

00:00:13 #205 [Verbose] > │ method0()                                                                    │

00:00:13 #206 [Verbose] > │                                                                              │

00:00:13 #207 [Verbose] > │ accumulate_dice_rolls / power: 1 / acc: 1000 / roll: 6 / value: 30           │

00:00:13 #208 [Verbose] > │ accumulate_dice_rolls / power: 0 / acc: 1030 / roll: 5 / value: 4            │

00:00:13 #209 [Verbose] > │ accumulate_dice_rolls / power: -1 / acc: 1034                                │

00:00:13 #210 [Verbose] > │                                                                              │

00:00:13 #211 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #212 [Verbose] >

00:00:13 #213 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:13 #214 [Verbose] > // // test

00:00:13 #215 [Verbose] >

00:00:13 #216 [Verbose] > accumulate_dice_rolls (Some console.write_line) [[ 6; 5; 4; 3; 2 ]] 2 1000i32

00:00:13 #217 [Verbose] > |> _equal (Some (1208, [[ 3; 2 ]]))

00:00:13 #218 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4068-6826-6663141401ed\main.spi

00:00:13 #219 [Verbose] >

00:00:13 #220 [Verbose] > ╭─[ 409.92ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #221 [Verbose] > │ type UH0 =                                                                   │

00:00:13 #222 [Verbose] > │     | UH0_0 of uint8 * UH0                                                   │

00:00:13 #223 [Verbose] > │     | UH0_1                                                                  │

00:00:13 #224 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:13 #225 [Verbose] > │     | US0_0                                                                  │

00:00:13 #226 [Verbose] > │     | US0_1 of f1_0 : int32 * f1_1 : UH0                                     │

00:00:13 #227 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:13 #228 [Verbose] > │     let v0 : string = $"accumulate_dice_rolls / power: {2y} / acc: {1000} /  │

00:00:13 #229 [Verbose] > │ roll: {6uy} / value: {180}"                                                  │

00:00:13 #230 [Verbose] > │     System.Console.WriteLine v0                                              │

00:00:13 #231 [Verbose] > │     let v1 : string = $"accumulate_dice_rolls / power: {1y} / acc: {1180} /  │

00:00:13 #232 [Verbose] > │ roll: {5uy} / value: {24}"                                                   │

00:00:13 #233 [Verbose] > │     System.Console.WriteLine v1                                              │

00:00:13 #234 [Verbose] > │     let v2 : string = $"accumulate_dice_rolls / power: {0y} / acc: {1204} /  │

00:00:13 #235 [Verbose] > │ roll: {4uy} / value: {3}"                                                    │

00:00:13 #236 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:13 #237 [Verbose] > │     let v3 : string = $"accumulate_dice_rolls / power: {-1y} / acc: {1207}"  │

00:00:13 #238 [Verbose] > │     System.Console.WriteLine v3                                              │

00:00:13 #239 [Verbose] > │     let v4 : UH0 = UH0_1                                                     │

00:00:13 #240 [Verbose] > │     let v5 : UH0 = UH0_0(2uy, v4)                                            │

00:00:13 #241 [Verbose] > │     let v6 : UH0 = UH0_0(3uy, v5)                                            │

00:00:13 #242 [Verbose] > │     let v7 : US0 = US0_1(1208, v6)                                           │

00:00:13 #243 [Verbose] > │     let v8 : UH0 = UH0_1                                                     │

00:00:13 #244 [Verbose] > │     let v9 : UH0 = UH0_0(2uy, v8)                                            │

00:00:13 #245 [Verbose] > │     let v10 : UH0 = UH0_0(3uy, v9)                                           │

00:00:13 #246 [Verbose] > │     let v11 : US0 = US0_1(1208, v10)                                         │

00:00:13 #247 [Verbose] > │     let v12 : string = $"__expect / actual: %A{v7} / expected: %A{v11}"      │

00:00:13 #248 [Verbose] > │     ()                                                                       │

00:00:13 #249 [Verbose] > │ method0()                                                                    │

00:00:13 #250 [Verbose] > │                                                                              │

00:00:13 #251 [Verbose] > │ accumulate_dice_rolls / power: 2 / acc: 1000 / roll: 6 / value: 180          │

00:00:13 #252 [Verbose] > │ accumulate_dice_rolls / power: 1 / acc: 1180 / roll: 5 / value: 24           │

00:00:13 #253 [Verbose] > │ accumulate_dice_rolls / power: 0 / acc: 1204 / roll: 4 / value: 3            │

00:00:13 #254 [Verbose] > │ accumulate_dice_rolls / power: -1 / acc: 1207                                │

00:00:13 #255 [Verbose] > │                                                                              │

00:00:13 #256 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #257 [Verbose] >

00:00:13 #258 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:13 #259 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:13 #260 [Verbose] > │ ## roll_within_bounds                                                        │

00:00:13 #261 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #262 [Verbose] >

00:00:13 #263 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:13 #264 [Verbose] > inl roll_within_bounds (log : option (string -> ())) max rolls =

00:00:13 #265 [Verbose] >     inl power = listm.length rolls - 1

00:00:13 #266 [Verbose] >     match accumulate_dice_rolls log rolls power 0 with

00:00:13 #267 [Verbose] >     | Some (result, _) when result >= 1 && result <= max => Some result

00:00:13 #268 [Verbose] >     | _ => None

00:00:13 #269 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4111-1182-1db221d41edb\main.spi

00:00:13 #270 [Verbose] >

00:00:13 #271 [Verbose] > ╭─[ 196.11ms - stdout ]────────────────────────────────────────────────────────╮

00:00:13 #272 [Verbose] > │ ()                                                                           │

00:00:13 #273 [Verbose] > │                                                                              │

00:00:13 #274 [Verbose] > │                                                                              │

00:00:13 #275 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:13 #276 [Verbose] >

00:00:13 #277 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:13 #278 [Verbose] > // // test

00:00:13 #279 [Verbose] >

00:00:13 #280 [Verbose] > roll_within_bounds (Some console.write_line) 2000i32 [[ 1; 5; 4; 4; 5 ]]

00:00:13 #281 [Verbose] > |> _equal (Some 995)

00:00:14 #282 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4131-3155-304c4bed46e4\main.spi

00:00:14 #283 [Verbose] >

00:00:14 #284 [Verbose] > ╭─[ 271.40ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #285 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:14 #286 [Verbose] > │     | US0_0                                                                  │

00:00:14 #287 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:14 #288 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:14 #289 [Verbose] > │     let v0 : string = $"accumulate_dice_rolls / power: {4y} / acc: {0} /     │

00:00:14 #290 [Verbose] > │ roll: {1uy}"                                                                 │

00:00:14 #291 [Verbose] > │     System.Console.WriteLine v0                                              │

00:00:14 #292 [Verbose] > │     let v1 : string = $"accumulate_dice_rolls / power: {3y} / acc: {0} /     │

00:00:14 #293 [Verbose] > │ roll: {5uy} / value: {864}"                                                  │

00:00:14 #294 [Verbose] > │     System.Console.WriteLine v1                                              │

00:00:14 #295 [Verbose] > │     let v2 : string = $"accumulate_dice_rolls / power: {2y} / acc: {864} /   │

00:00:14 #296 [Verbose] > │ roll: {4uy} / value: {108}"                                                  │

00:00:14 #297 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:14 #298 [Verbose] > │     let v3 : string = $"accumulate_dice_rolls / power: {1y} / acc: {972} /   │

00:00:14 #299 [Verbose] > │ roll: {4uy} / value: {18}"                                                   │

00:00:14 #300 [Verbose] > │     System.Console.WriteLine v3                                              │

00:00:14 #301 [Verbose] > │     let v4 : string = $"accumulate_dice_rolls / power: {0y} / acc: {990} /   │

00:00:14 #302 [Verbose] > │ roll: {5uy} / value: {4}"                                                    │

00:00:14 #303 [Verbose] > │     System.Console.WriteLine v4                                              │

00:00:14 #304 [Verbose] > │     let v5 : string = $"accumulate_dice_rolls / power: {-1y} / acc: {994}"   │

00:00:14 #305 [Verbose] > │     System.Console.WriteLine v5                                              │

00:00:14 #306 [Verbose] > │     let v6 : US0 = US0_1(995)                                                │

00:00:14 #307 [Verbose] > │     let v7 : US0 = US0_1(995)                                                │

00:00:14 #308 [Verbose] > │     let v8 : string = $"__expect / actual: %A{v6} / expected: %A{v7}"        │

00:00:14 #309 [Verbose] > │     ()                                                                       │

00:00:14 #310 [Verbose] > │ method0()                                                                    │

00:00:14 #311 [Verbose] > │                                                                              │

00:00:14 #312 [Verbose] > │ accumulate_dice_rolls / power: 4 / acc: 0 / roll: 1                          │

00:00:14 #313 [Verbose] > │ accumulate_dice_rolls / power: 3 / acc: 0 / roll: 5 / value: 864             │

00:00:14 #314 [Verbose] > │ accumulate_dice_rolls / power: 2 / acc: 864 / roll: 4 / value: 108           │

00:00:14 #315 [Verbose] > │ accumulate_dice_rolls / power: 1 / acc: 972 / roll: 4 / value: 18            │

00:00:14 #316 [Verbose] > │ accumulate_dice_rolls / power: 0 / acc: 990 / roll: 5 / value: 4             │

00:00:14 #317 [Verbose] > │ accumulate_dice_rolls / power: -1 / acc: 994                                 │

00:00:14 #318 [Verbose] > │                                                                              │

00:00:14 #319 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #320 [Verbose] >

00:00:14 #321 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #322 [Verbose] > // // test

00:00:14 #323 [Verbose] >

00:00:14 #324 [Verbose] > roll_within_bounds (Some console.write_line) 2000i32 [[ 2; 2; 6; 4; 5 ]]

00:00:14 #325 [Verbose] > |> _equal (Some 1715)

00:00:14 #326 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4161-6162-67e21753365b\main.spi

00:00:14 #327 [Verbose] >

00:00:14 #328 [Verbose] > ╭─[ 379.57ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #329 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:14 #330 [Verbose] > │     | US0_0                                                                  │

00:00:14 #331 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:14 #332 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:14 #333 [Verbose] > │     let v0 : string = $"accumulate_dice_rolls / power: {4y} / acc: {0} /     │

00:00:14 #334 [Verbose] > │ roll: {2uy} / value: {1296}"                                                 │

00:00:14 #335 [Verbose] > │     System.Console.WriteLine v0                                              │

00:00:14 #336 [Verbose] > │     let v1 : string = $"accumulate_dice_rolls / power: {3y} / acc: {1296} /  │

00:00:14 #337 [Verbose] > │ roll: {2uy} / value: {216}"                                                  │

00:00:14 #338 [Verbose] > │     System.Console.WriteLine v1                                              │

00:00:14 #339 [Verbose] > │     let v2 : string = $"accumulate_dice_rolls / power: {2y} / acc: {1512} /  │

00:00:14 #340 [Verbose] > │ roll: {6uy} / value: {180}"                                                  │

00:00:14 #341 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:14 #342 [Verbose] > │     let v3 : string = $"accumulate_dice_rolls / power: {1y} / acc: {1692} /  │

00:00:14 #343 [Verbose] > │ roll: {4uy} / value: {18}"                                                   │

00:00:14 #344 [Verbose] > │     System.Console.WriteLine v3                                              │

00:00:14 #345 [Verbose] > │     let v4 : string = $"accumulate_dice_rolls / power: {0y} / acc: {1710} /  │

00:00:14 #346 [Verbose] > │ roll: {5uy} / value: {4}"                                                    │

00:00:14 #347 [Verbose] > │     System.Console.WriteLine v4                                              │

00:00:14 #348 [Verbose] > │     let v5 : string = $"accumulate_dice_rolls / power: {-1y} / acc: {1714}"  │

00:00:14 #349 [Verbose] > │     System.Console.WriteLine v5                                              │

00:00:14 #350 [Verbose] > │     let v6 : US0 = US0_1(1715)                                               │

00:00:14 #351 [Verbose] > │     let v7 : US0 = US0_1(1715)                                               │

00:00:14 #352 [Verbose] > │     let v8 : string = $"__expect / actual: %A{v6} / expected: %A{v7}"        │

00:00:14 #353 [Verbose] > │     ()                                                                       │

00:00:14 #354 [Verbose] > │ method0()                                                                    │

00:00:14 #355 [Verbose] > │                                                                              │

00:00:14 #356 [Verbose] > │ accumulate_dice_rolls / power: 4 / acc: 0 / roll: 2 / value: 1296            │

00:00:14 #357 [Verbose] > │ accumulate_dice_rolls / power: 3 / acc: 1296 / roll: 2 / value: 216          │

00:00:14 #358 [Verbose] > │ accumulate_dice_rolls / power: 2 / acc: 1512 / roll: 6 / value: 180          │

00:00:14 #359 [Verbose] > │ accumulate_dice_rolls / power: 1 / acc: 1692 / roll: 4 / value: 18           │

00:00:14 #360 [Verbose] > │ accumulate_dice_rolls / power: 0 / acc: 1710 / roll: 5 / value: 4            │

00:00:14 #361 [Verbose] > │ accumulate_dice_rolls / power: -1 / acc: 1714                                │

00:00:14 #362 [Verbose] > │                                                                              │

00:00:14 #363 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #364 [Verbose] >

00:00:14 #365 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:14 #366 [Verbose] > // // test

00:00:14 #367 [Verbose] >

00:00:14 #368 [Verbose] > roll_within_bounds (Some console.write_line) 2000i32 [[ 4; 1; 1; 2; 3 ]]

00:00:14 #369 [Verbose] > |> _equal None

00:00:14 #370 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4202-0243-08266dbc8488\main.spi

00:00:14 #371 [Verbose] >

00:00:14 #372 [Verbose] > ╭─[ 313.29ms - stdout ]────────────────────────────────────────────────────────╮

00:00:14 #373 [Verbose] > │ type [<Struct>] US0 =                                                        │

00:00:14 #374 [Verbose] > │     | US0_0                                                                  │

00:00:14 #375 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:00:14 #376 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:14 #377 [Verbose] > │     let v0 : string = $"accumulate_dice_rolls / power: {4y} / acc: {0} /     │

00:00:15 #378 [Verbose] > │ roll: {4uy} / value: {3888}"                                                 │

00:00:15 #379 [Verbose] > │     System.Console.WriteLine v0                                              │

00:00:15 #380 [Verbose] > │     let v1 : string = $"accumulate_dice_rolls / power: {3y} / acc: {3888} /  │

00:00:15 #381 [Verbose] > │ roll: {1uy}"                                                                 │

00:00:15 #382 [Verbose] > │     System.Console.WriteLine v1                                              │

00:00:15 #383 [Verbose] > │     let v2 : string = $"accumulate_dice_rolls / power: {2y} / acc: {3888} /  │

00:00:15 #384 [Verbose] > │ roll: {1uy}"                                                                 │

00:00:15 #385 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:15 #386 [Verbose] > │     let v3 : string = $"accumulate_dice_rolls / power: {1y} / acc: {3888} /  │

00:00:15 #387 [Verbose] > │ roll: {2uy} / value: {6}"                                                    │

00:00:15 #388 [Verbose] > │     System.Console.WriteLine v3                                              │

00:00:15 #389 [Verbose] > │     let v4 : string = $"accumulate_dice_rolls / power: {0y} / acc: {3894} /  │

00:00:15 #390 [Verbose] > │ roll: {3uy} / value: {2}"                                                    │

00:00:15 #391 [Verbose] > │     System.Console.WriteLine v4                                              │

00:00:15 #392 [Verbose] > │     let v5 : string = $"accumulate_dice_rolls / power: {-1y} / acc: {3896}"  │

00:00:15 #393 [Verbose] > │     System.Console.WriteLine v5                                              │

00:00:15 #394 [Verbose] > │     let v6 : US0 = US0_0                                                     │

00:00:15 #395 [Verbose] > │     let v7 : US0 = US0_0                                                     │

00:00:15 #396 [Verbose] > │     let v8 : string = $"__expect / actual: %A{v6} / expected: %A{v7}"        │

00:00:15 #397 [Verbose] > │     ()                                                                       │

00:00:15 #398 [Verbose] > │ method0()                                                                    │

00:00:15 #399 [Verbose] > │                                                                              │

00:00:15 #400 [Verbose] > │ accumulate_dice_rolls / power: 4 / acc: 0 / roll: 4 / value: 3888            │

00:00:15 #401 [Verbose] > │ accumulate_dice_rolls / power: 3 / acc: 3888 / roll: 1                       │

00:00:15 #402 [Verbose] > │ accumulate_dice_rolls / power: 2 / acc: 3888 / roll: 1                       │

00:00:15 #403 [Verbose] > │ accumulate_dice_rolls / power: 1 / acc: 3888 / roll: 2 / value: 6            │

00:00:15 #404 [Verbose] > │ accumulate_dice_rolls / power: 0 / acc: 3894 / roll: 3 / value: 2            │

00:00:15 #405 [Verbose] > │ accumulate_dice_rolls / power: -1 / acc: 3896                                │

00:00:15 #406 [Verbose] > │                                                                              │

00:00:15 #407 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #408 [Verbose] >

00:00:15 #409 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #410 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #411 [Verbose] > │ ## calculate_dice_count                                                      │

00:00:15 #412 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #413 [Verbose] >

00:00:15 #414 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #415 [Verbose] > inl calculate_dice_count (log : option (string -> ())) max =

00:00:15 #416 [Verbose] >     inl rec body n p =

00:00:15 #417 [Verbose] >         inl return () =

00:00:15 #418 [Verbose] >             log |> optionm'.iter ((|>) $"$\"calculate_dice_count / max: {!max}

00:00:15 #419 [Verbose] > n: {!n} / p: {!p}\"")

00:00:15 #420 [Verbose] >             n

00:00:15 #421 [Verbose] >

00:00:15 #422 [Verbose] >         if p < max then

00:00:15 #423 [Verbose] >             inl p' = p * 6

00:00:15 #424 [Verbose] >             if p' > p

00:00:15 #425 [Verbose] >             then loop (n + 1) p'

00:00:15 #426 [Verbose] >             else return ()

00:00:15 #427 [Verbose] >         else return ()

00:00:15 #428 [Verbose] >

00:00:15 #429 [Verbose] >     and inl loop n p =

00:00:15 #430 [Verbose] >         if var_is max |> not

00:00:15 #431 [Verbose] >         then body n p

00:00:15 #432 [Verbose] >         else

00:00:15 #433 [Verbose] >             inl n = dyn n

00:00:15 #434 [Verbose] >             inl p = dyn p

00:00:15 #435 [Verbose] >             join body n p

00:00:15 #436 [Verbose] >     if max = 1

00:00:15 #437 [Verbose] >     then 1

00:00:15 #438 [Verbose] >     else loop 0 1

00:00:15 #439 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4236-3647-36ea0ba97adf\main.spi

00:00:15 #440 [Verbose] >

00:00:15 #441 [Verbose] > ╭─[ 338.09ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #442 [Verbose] > │ ()                                                                           │

00:00:15 #443 [Verbose] > │                                                                              │

00:00:15 #444 [Verbose] > │                                                                              │

00:00:15 #445 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #446 [Verbose] >

00:00:15 #447 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #448 [Verbose] > // // test

00:00:15 #449 [Verbose] >

00:00:15 #450 [Verbose] > calculate_dice_count (Some console.write_line) 36i32

00:00:15 #451 [Verbose] > |> _equal 2i32

00:00:15 #452 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4270-7050-739f9b859700\main.spi

00:00:15 #453 [Verbose] >

00:00:15 #454 [Verbose] > ╭─[ 207.25ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #455 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:15 #456 [Verbose] > │     let v0 : string = $"calculate_dice_count / max: {36} / n: {2} / p: {36}" │

00:00:15 #457 [Verbose] > │     System.Console.WriteLine v0                                              │

00:00:15 #458 [Verbose] > │     let v1 : string = $"__expect / actual: %A{2} / expected: %A{2}"          │

00:00:15 #459 [Verbose] > │     ()                                                                       │

00:00:15 #460 [Verbose] > │ method0()                                                                    │

00:00:15 #461 [Verbose] > │                                                                              │

00:00:15 #462 [Verbose] > │ calculate_dice_count / max: 36 / n: 2 / p: 36                                │

00:00:15 #463 [Verbose] > │                                                                              │

00:00:15 #464 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #465 [Verbose] >

00:00:15 #466 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #467 [Verbose] > // // test

00:00:15 #468 [Verbose] >

00:00:15 #469 [Verbose] > calculate_dice_count (Some console.write_line) 7777i32

00:00:15 #470 [Verbose] > |> _equal 6i32

00:00:15 #471 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4291-9157-90ab00d89d9e\main.spi

00:00:15 #472 [Verbose] >

00:00:15 #473 [Verbose] > ╭─[ 227.95ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #474 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:15 #475 [Verbose] > │     let v0 : string = $"calculate_dice_count / max: {7777} / n: {6} / p:     │

00:00:15 #476 [Verbose] > │ {46656}"                                                                     │

00:00:15 #477 [Verbose] > │     System.Console.WriteLine v0                                              │

00:00:15 #478 [Verbose] > │     let v1 : string = $"__expect / actual: %A{6} / expected: %A{6}"          │

00:00:15 #479 [Verbose] > │     ()                                                                       │

00:00:15 #480 [Verbose] > │ method0()                                                                    │

00:00:15 #481 [Verbose] > │                                                                              │

00:00:15 #482 [Verbose] > │ calculate_dice_count / max: 7777 / n: 6 / p: 46656                           │

00:00:15 #483 [Verbose] > │                                                                              │

00:00:15 #484 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #485 [Verbose] >

00:00:15 #486 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #487 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #488 [Verbose] > │ ## roll_dice                                                                 │

00:00:15 #489 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #490 [Verbose] >

00:00:15 #491 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #492 [Verbose] > inl roll_dice () : u8 =

00:00:15 #493 [Verbose] >     run_target function

00:00:15 #494 [Verbose] >         | Fsharp => fun () => $"System.Random().Next (1, 7) |> uint8"

00:00:15 #495 [Verbose] >         | Rust (Native) => fun () => rust.emit_expr ()

00:00:15 #496 [Verbose] > "rand::Rng::gen_range(&mut rand::thread_rng(), 1..7)"

00:00:15 #497 [Verbose] >         | Rust (Wasm) => fun () => rust.emit_expr () "1"

00:00:15 #498 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4315-1581-19c1712318a9\main.spi

00:00:16 #499 [Verbose] >

00:00:16 #500 [Verbose] > ╭─[ 207.05ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #501 [Verbose] > │ ()                                                                           │

00:00:16 #502 [Verbose] > │                                                                              │

00:00:16 #503 [Verbose] > │                                                                              │

00:00:16 #504 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #505 [Verbose] >

00:00:16 #506 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #507 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #508 [Verbose] > │ ## rotate_number                                                             │

00:00:16 #509 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #510 [Verbose] >

00:00:16 #511 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #512 [Verbose] > inl rotate_number forall t {number}. (max : i64) (n : t) : t =

00:00:16 #513 [Verbose] >     (conv n - 1 + max) % max + 1 |> conv

00:00:16 #514 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4337-3711-391d85f00163\main.spi

00:00:16 #515 [Verbose] >

00:00:16 #516 [Verbose] > ╭─[ 200.60ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #517 [Verbose] > │ ()                                                                           │

00:00:16 #518 [Verbose] > │                                                                              │

00:00:16 #519 [Verbose] > │                                                                              │

00:00:16 #520 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #521 [Verbose] >

00:00:16 #522 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #523 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #524 [Verbose] > │ ## rotate_numbers                                                            │

00:00:16 #525 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #526 [Verbose] >

00:00:16 #527 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #528 [Verbose] > inl rotate_numbers max items =

00:00:16 #529 [Verbose] >     items |> stream.map (rotate_number max)

00:00:16 #530 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4357-5769-5d4706173915\main.spi

00:00:16 #531 [Verbose] >

00:00:16 #532 [Verbose] > ╭─[ 276.48ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #533 [Verbose] > │ ()                                                                           │

00:00:16 #534 [Verbose] > │                                                                              │

00:00:16 #535 [Verbose] > │                                                                              │

00:00:16 #536 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #537 [Verbose] >

00:00:16 #538 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #539 [Verbose] > // // test

00:00:16 #540 [Verbose] >

00:00:16 #541 [Verbose] > listm'.init_series -1 14 1i32

00:00:16 #542 [Verbose] > |> stream.from_list

00:00:16 #543 [Verbose] > |> rotate_numbers 6

00:00:16 #544 [Verbose] > |> stream.to_list

00:00:16 #545 [Verbose] > |> _equal [[ 5; 6; 1; 2; 3; 4; 5; 6; 1; 2; 3; 4; 5; 6; 1; 2 ]]

00:00:16 #546 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4385-8566-8ee024f3aa21\main.spi

00:00:16 #547 [Verbose] >

00:00:16 #548 [Verbose] > ╭─[ 270.50ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #549 [Verbose] > │ type UH0 =                                                                   │

00:00:16 #550 [Verbose] > │     | UH0_0 of int32 * UH0                                                   │

00:00:16 #551 [Verbose] > │     | UH0_1                                                                  │

00:00:16 #552 [Verbose] > │ let rec method0 () : unit =                                                  │

00:00:16 #553 [Verbose] > │     let v0 : UH0 = UH0_1                                                     │

00:00:16 #554 [Verbose] > │     let v1 : UH0 = UH0_0(2, v0)                                              │

00:00:16 #555 [Verbose] > │     let v2 : UH0 = UH0_0(1, v1)                                              │

00:00:16 #556 [Verbose] > │     let v3 : UH0 = UH0_0(6, v2)                                              │

00:00:16 #557 [Verbose] > │     let v4 : UH0 = UH0_0(5, v3)                                              │

00:00:16 #558 [Verbose] > │     let v5 : UH0 = UH0_0(4, v4)                                              │

00:00:16 #559 [Verbose] > │     let v6 : UH0 = UH0_0(3, v5)                                              │

00:00:16 #560 [Verbose] > │     let v7 : UH0 = UH0_0(2, v6)                                              │

00:00:16 #561 [Verbose] > │     let v8 : UH0 = UH0_0(1, v7)                                              │

00:00:16 #562 [Verbose] > │     let v9 : UH0 = UH0_0(6, v8)                                              │

00:00:16 #563 [Verbose] > │     let v10 : UH0 = UH0_0(5, v9)                                             │

00:00:16 #564 [Verbose] > │     let v11 : UH0 = UH0_0(4, v10)                                            │

00:00:16 #565 [Verbose] > │     let v12 : UH0 = UH0_0(3, v11)                                            │

00:00:16 #566 [Verbose] > │     let v13 : UH0 = UH0_0(2, v12)                                            │

00:00:16 #567 [Verbose] > │     let v14 : UH0 = UH0_0(1, v13)                                            │

00:00:16 #568 [Verbose] > │     let v15 : UH0 = UH0_0(6, v14)                                            │

00:00:16 #569 [Verbose] > │     let v16 : UH0 = UH0_0(5, v15)                                            │

00:00:16 #570 [Verbose] > │     let v17 : UH0 = UH0_1                                                    │

00:00:16 #571 [Verbose] > │     let v18 : UH0 = UH0_0(2, v17)                                            │

00:00:16 #572 [Verbose] > │     let v19 : UH0 = UH0_0(1, v18)                                            │

00:00:16 #573 [Verbose] > │     let v20 : UH0 = UH0_0(6, v19)                                            │

00:00:16 #574 [Verbose] > │     let v21 : UH0 = UH0_0(5, v20)                                            │

00:00:16 #575 [Verbose] > │     let v22 : UH0 = UH0_0(4, v21)                                            │

00:00:16 #576 [Verbose] > │     let v23 : UH0 = UH0_0(3, v22)                                            │

00:00:16 #577 [Verbose] > │     let v24 : UH0 = UH0_0(2, v23)                                            │

00:00:16 #578 [Verbose] > │     let v25 : UH0 = UH0_0(1, v24)                                            │

00:00:16 #579 [Verbose] > │     let v26 : UH0 = UH0_0(6, v25)                                            │

00:00:16 #580 [Verbose] > │     let v27 : UH0 = UH0_0(5, v26)                                            │

00:00:16 #581 [Verbose] > │     let v28 : UH0 = UH0_0(4, v27)                                            │

00:00:16 #582 [Verbose] > │     let v29 : UH0 = UH0_0(3, v28)                                            │

00:00:16 #583 [Verbose] > │     let v30 : UH0 = UH0_0(2, v29)                                            │

00:00:16 #584 [Verbose] > │     let v31 : UH0 = UH0_0(1, v30)                                            │

00:00:16 #585 [Verbose] > │     let v32 : UH0 = UH0_0(6, v31)                                            │

00:00:16 #586 [Verbose] > │     let v33 : UH0 = UH0_0(5, v32)                                            │

00:00:16 #587 [Verbose] > │     let v34 : string = $"__expect / actual: %A{v16} / expected: %A{v33}"     │

00:00:16 #588 [Verbose] > │     ()                                                                       │

00:00:16 #589 [Verbose] > │ method0()                                                                    │

00:00:16 #590 [Verbose] > │                                                                              │

00:00:16 #591 [Verbose] > │                                                                              │

00:00:16 #592 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #593 [Verbose] >

00:00:16 #594 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #595 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #596 [Verbose] > │ ## create_sequential_roller                                                  │

00:00:16 #597 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #598 [Verbose] >

00:00:16 #599 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:16 #600 [Verbose] > inl create_sequential_roller (log : option (string -> ())) list =

00:00:16 #601 [Verbose] >     log |> optionm'.iter ((|>) $"$\"create_sequential_roller ()\"")

00:00:16 #602 [Verbose] >     inl s = list |> listm.rev |> listm.append list |> stream.from_list |>

00:00:16 #603 [Verbose] > stream.memoize

00:00:16 #604 [Verbose] >     inl current_index = mut 0i64

00:00:16 #605 [Verbose] >     inl acc = mut 1

00:00:16 #606 [Verbose] >     inl len = mut -1

00:00:16 #607 [Verbose] >     inl last_item = mut None

00:00:16 #608 [Verbose] >     let rec loop () =

00:00:16 #609 [Verbose] >         fun () =>

00:00:16 #610 [Verbose] >             inl current_index = *current_index

00:00:16 #611 [Verbose] >             inl acc = *acc

00:00:16 #612 [Verbose] >             inl len = *len

00:00:16 #613 [Verbose] >             inl last_item = *last_item

00:00:16 #614 [Verbose] >             log |> optionm'.iter ((|>) $"$\"create_sequential_roller / roll

00:00:16 #615 [Verbose] > current_index: {!current_index} / acc: {!acc} / len: {!len} / last_item:

00:00:16 #616 [Verbose] > %A{!last_item}\"")

00:00:16 #617 [Verbose] >         |> fun x => x ()

00:00:16 #618 [Verbose] >         match s () |> stream.try_item *current_index with

00:00:16 #619 [Verbose] >         | Some item =>

00:00:16 #620 [Verbose] >             current_index <- *current_index + 1

00:00:16 #621 [Verbose] >             last_item <- Some item

00:00:16 #622 [Verbose] >             item

00:00:16 #623 [Verbose] >         | None =>

00:00:16 #624 [Verbose] >             log |> optionm'.iter ((|>) $"$\"create_sequential_roller / roll

00:00:16 #625 [Verbose] > None\"")

00:00:16 #626 [Verbose] >             if *len = -1

00:00:16 #627 [Verbose] >             then len <- *current_index

00:00:16 #628 [Verbose] >             acc <-

00:00:16 #629 [Verbose] >                 if *acc >= *len

00:00:16 #630 [Verbose] >                 then 1

00:00:16 #631 [Verbose] >                 else *acc + 1

00:00:16 #632 [Verbose] >             current_index <- *acc - 1

00:00:16 #633 [Verbose] >             last_item <- None

00:00:16 #634 [Verbose] >             loop ()

00:00:16 #635 [Verbose] >     loop

00:00:16 #636 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4416-1616-1d65c063d6c3\main.spi

00:00:17 #637 [Verbose] >

00:00:17 #638 [Verbose] > ╭─[ 220.75ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #639 [Verbose] > │ ()                                                                           │

00:00:17 #640 [Verbose] > │                                                                              │

00:00:17 #641 [Verbose] > │                                                                              │

00:00:17 #642 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #643 [Verbose] >

00:00:17 #644 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:17 #645 [Verbose] > // // test

00:00:17 #646 [Verbose] >

00:00:17 #647 [Verbose] > inl sequential_roll = create_sequential_roller (Some console.write_line) [[

00:00:17 #648 [Verbose] > 1i32; 2; 3; 4 ]]

00:00:17 #649 [Verbose] >

00:00:17 #650 [Verbose] > am.init 50i32 (ignore >> sequential_roll)

00:00:17 #651 [Verbose] > |> _equal (a ;[[ 1; 2; 3; 4; 4; 3; 2; 1; 2; 3; 4; 4; 3; 2; 1; 3; 4; 4; 3; 2; 1;

00:00:17 #652 [Verbose] > 4; 4; 3; 2; 1;

00:00:17 #653 [Verbose] > 4; 3; 2; 1; 3; 2; 1; 2; 1; 1; 1; 2; 3; 4; 4; 3; 2; 1; 2; 3; 4; 4; 3; 2 ]] : a

00:00:17 #654 [Verbose] > i32 i32)

00:00:17 #655 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4438-3825-313f33e3678d\main.spi

00:00:17 #656 [Verbose] >

00:00:18 #657 [Verbose] > ╭─[ 940.25ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #658 [Verbose] > │ type UH0 =                                                                   │

00:00:18 #659 [Verbose] > │     | UH0_0 of int32 * (unit -> UH0)                                         │

00:00:18 #660 [Verbose] > │     | UH0_1                                                                  │

00:00:18 #661 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:18 #662 [Verbose] > │     | US0_0 of f0_0 : UH0                                                    │

00:00:18 #663 [Verbose] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

00:00:18 #664 [Verbose] > │ and Mut0 = {mutable l0 : US0}                                                │

00:00:18 #665 [Verbose] > │ and Mut1 = {mutable l0 : int64}                                              │

00:00:18 #666 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:18 #667 [Verbose] > │     | US1_0                                                                  │

00:00:18 #668 [Verbose] > │     | US1_1 of f1_0 : int32                                                  │

00:00:18 #669 [Verbose] > │ and Mut2 = {mutable l0 : US1}                                                │

00:00:18 #670 [Verbose] > │ and Mut3 = {mutable l0 : int32}                                              │

00:00:18 #671 [Verbose] > │ let rec closure8 () () : UH0 =                                               │

00:00:18 #672 [Verbose] > │     UH0_1                                                                    │

00:00:18 #673 [Verbose] > │ and closure7 () () : UH0 =                                                   │

00:00:18 #674 [Verbose] > │     let v0 : (unit -> UH0) = closure8()                                      │

00:00:18 #675 [Verbose] > │     UH0_0(1, v0)                                                             │

00:00:18 #676 [Verbose] > │ and closure6 () () : UH0 =                                                   │

00:00:18 #677 [Verbose] > │     let v0 : (unit -> UH0) = closure7()                                      │

00:00:18 #678 [Verbose] > │     UH0_0(2, v0)                                                             │

00:00:18 #679 [Verbose] > │ and closure5 () () : UH0 =                                                   │

00:00:18 #680 [Verbose] > │     let v0 : (unit -> UH0) = closure6()                                      │

00:00:18 #681 [Verbose] > │     UH0_0(3, v0)                                                             │

00:00:18 #682 [Verbose] > │ and closure4 () () : UH0 =                                                   │

00:00:18 #683 [Verbose] > │     let v0 : (unit -> UH0) = closure5()                                      │

00:00:18 #684 [Verbose] > │     UH0_0(4, v0)                                                             │

00:00:18 #685 [Verbose] > │ and closure3 () () : UH0 =                                                   │

00:00:18 #686 [Verbose] > │     let v0 : (unit -> UH0) = closure4()                                      │

00:00:18 #687 [Verbose] > │     UH0_0(4, v0)                                                             │

00:00:18 #688 [Verbose] > │ and closure2 () () : UH0 =                                                   │

00:00:18 #689 [Verbose] > │     let v0 : (unit -> UH0) = closure3()                                      │

00:00:18 #690 [Verbose] > │     UH0_0(3, v0)                                                             │

00:00:18 #691 [Verbose] > │ and closure1 () () : UH0 =                                                   │

00:00:18 #692 [Verbose] > │     let v0 : (unit -> UH0) = closure2()                                      │

00:00:18 #693 [Verbose] > │     UH0_0(2, v0)                                                             │

00:00:18 #694 [Verbose] > │ and closure0 () () : UH0 =                                                   │

00:00:18 #695 [Verbose] > │     let v0 : (unit -> UH0) = closure1()                                      │

00:00:18 #696 [Verbose] > │     UH0_0(1, v0)                                                             │

00:00:18 #697 [Verbose] > │ and method1 (v0 : Mut3) : bool =                                             │

00:00:18 #698 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:00:18 #699 [Verbose] > │     let v2 : bool = v1 < 50                                                  │

00:00:18 #700 [Verbose] > │     v2                                                                       │

00:00:18 #701 [Verbose] > │ and closure9 (v0 : Mut0) () : UH0 =                                          │

00:00:18 #702 [Verbose] > │     let v1 : US0 = v0.l0                                                     │

00:00:18 #703 [Verbose] > │     match v1 with                                                            │

00:00:18 #704 [Verbose] > │     | US0_0(v2) -> (* Computed *)                                            │

00:00:18 #705 [Verbose] > │         v2                                                                   │

00:00:18 #706 [Verbose] > │     | US0_1(v3) -> (* NotComputed *)                                         │

00:00:18 #707 [Verbose] > │         let v4 : UH0 = v3 ()                                                 │

00:00:18 #708 [Verbose] > │         let v13 : UH0 =                                                      │

00:00:18 #709 [Verbose] > │             match v4 with                                                    │

00:00:18 #710 [Verbose] > │             | UH0_0(v6, v7) -> (* StreamCons *)                              │

00:00:18 #711 [Verbose] > │                 let v8 : US0 = US0_1(v7)                                     │

00:00:18 #712 [Verbose] > │                 let v9 : Mut0 = {l0 = v8} : Mut0                             │

00:00:18 #713 [Verbose] > │                 let v10 : (unit -> UH0) = closure9(v9)                       │

00:00:18 #714 [Verbose] > │                 UH0_0(v6, v10)                                               │

00:00:18 #715 [Verbose] > │             | UH0_1 -> (* StreamNil *)                                       │

00:00:18 #716 [Verbose] > │                 UH0_1                                                        │

00:00:18 #717 [Verbose] > │         let v14 : US0 = US0_0(v13)                                           │

00:00:18 #718 [Verbose] > │         v0.l0 <- v14                                                         │

00:00:18 #719 [Verbose] > │         v13                                                                  │

00:00:18 #720 [Verbose] > │ and method3 (v0 : int64, v1 : UH0) : US1 =                                   │

00:00:18 #721 [Verbose] > │     match v1 with                                                            │

00:00:18 #722 [Verbose] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

00:00:18 #723 [Verbose] > │         let v4 : bool = v0 <= 0L                                             │

00:00:18 #724 [Verbose] > │         if v4 then                                                           │

00:00:18 #725 [Verbose] > │             US1_1(v2)                                                        │

00:00:18 #726 [Verbose] > │         else                                                                 │

00:00:18 #727 [Verbose] > │             let v6 : int64 = v0 - 1L                                         │

00:00:18 #728 [Verbose] > │             let v7 : UH0 = v3 ()                                             │

00:00:18 #729 [Verbose] > │             method3(v6, v7)                                                  │

00:00:18 #730 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:18 #731 [Verbose] > │         US1_0                                                                │

00:00:18 #732 [Verbose] > │ and method2 (v0 : Mut0, v1 : Mut1, v2 : Mut1, v3 : Mut1, v4 : Mut2) : int32  │

00:00:18 #733 [Verbose] > │ =                                                                            │

00:00:18 #734 [Verbose] > │     let v5 : int64 = v1.l0                                                   │

00:00:18 #735 [Verbose] > │     let v6 : int64 = v2.l0                                                   │

00:00:18 #736 [Verbose] > │     let v7 : int64 = v3.l0                                                   │

00:00:18 #737 [Verbose] > │     let v8 : US1 = v4.l0                                                     │

00:00:18 #738 [Verbose] > │     let v9 : string = $"create_sequential_roller / roll / current_index:     │

00:00:18 #739 [Verbose] > │ {v5} / acc: {v6} / len: {v7} / last_item: %A{v8}"                            │

00:00:18 #740 [Verbose] > │     System.Console.WriteLine v9                                              │

00:00:18 #741 [Verbose] > │     let v10 : US0 = v0.l0                                                    │

00:00:18 #742 [Verbose] > │     let v25 : UH0 =                                                          │

00:00:18 #743 [Verbose] > │         match v10 with                                                       │

00:00:18 #744 [Verbose] > │         | US0_0(v11) -> (* Computed *)                                       │

00:00:18 #745 [Verbose] > │             v11                                                              │

00:00:18 #746 [Verbose] > │         | US0_1(v12) -> (* NotComputed *)                                    │

00:00:18 #747 [Verbose] > │             let v13 : UH0 = v12 ()                                           │

00:00:18 #748 [Verbose] > │             let v22 : UH0 =                                                  │

00:00:18 #749 [Verbose] > │                 match v13 with                                               │

00:00:18 #750 [Verbose] > │                 | UH0_0(v15, v16) -> (* StreamCons *)                        │

00:00:18 #751 [Verbose] > │                     let v17 : US0 = US0_1(v16)                               │

00:00:18 #752 [Verbose] > │                     let v18 : Mut0 = {l0 = v17} : Mut0                       │

00:00:18 #753 [Verbose] > │                     let v19 : (unit -> UH0) = closure9(v18)                  │

00:00:18 #754 [Verbose] > │                     UH0_0(v15, v19)                                          │

00:00:18 #755 [Verbose] > │                 | UH0_1 -> (* StreamNil *)                                   │

00:00:18 #756 [Verbose] > │                     UH0_1                                                    │

00:00:18 #757 [Verbose] > │             let v23 : US0 = US0_0(v22)                                       │

00:00:18 #758 [Verbose] > │             v0.l0 <- v23                                                     │

00:00:18 #759 [Verbose] > │             v22                                                              │

00:00:18 #760 [Verbose] > │     let v26 : int64 = v1.l0                                                  │

00:00:18 #761 [Verbose] > │     let v27 : US1 = method3(v26, v25)                                        │

00:00:18 #762 [Verbose] > │     match v27 with                                                           │

00:00:18 #763 [Verbose] > │     | US1_0 -> (* None *)                                                    │

00:00:18 #764 [Verbose] > │         let v32 : string = $"create_sequential_roller / roll / None"         │

00:00:18 #765 [Verbose] > │         System.Console.WriteLine v32                                         │

00:00:18 #766 [Verbose] > │         let v33 : int64 = v3.l0                                              │

00:00:18 #767 [Verbose] > │         let v34 : bool = v33 = -1L                                           │

00:00:18 #768 [Verbose] > │         if v34 then                                                          │

00:00:18 #769 [Verbose] > │             let v35 : int64 = v1.l0                                          │

00:00:18 #770 [Verbose] > │             v3.l0 <- v35                                                     │

00:00:18 #771 [Verbose] > │             ()                                                               │

00:00:18 #772 [Verbose] > │         let v36 : int64 = v2.l0                                              │

00:00:18 #773 [Verbose] > │         let v37 : int64 = v3.l0                                              │

00:00:18 #774 [Verbose] > │         let v38 : bool = v36 >= v37                                          │

00:00:18 #775 [Verbose] > │         let v41 : int64 =                                                    │

00:00:18 #776 [Verbose] > │             if v38 then                                                      │

00:00:18 #777 [Verbose] > │                 1L                                                           │

00:00:18 #778 [Verbose] > │             else                                                             │

00:00:18 #779 [Verbose] > │                 let v39 : int64 = v2.l0                                      │

00:00:18 #780 [Verbose] > │                 let v40 : int64 = v39 + 1L                                   │

00:00:18 #781 [Verbose] > │                 v40                                                          │

00:00:18 #782 [Verbose] > │         v2.l0 <- v41                                                         │

00:00:18 #783 [Verbose] > │         let v42 : int64 = v2.l0                                              │

00:00:18 #784 [Verbose] > │         let v43 : int64 = v42 - 1L                                           │

00:00:18 #785 [Verbose] > │         v1.l0 <- v43                                                         │

00:00:18 #786 [Verbose] > │         let v44 : US1 = US1_0                                                │

00:00:18 #787 [Verbose] > │         v4.l0 <- v44                                                         │

00:00:18 #788 [Verbose] > │         method2(v0, v1, v2, v3, v4)                                          │

00:00:18 #789 [Verbose] > │     | US1_1(v28) -> (* Some *)                                               │

00:00:18 #790 [Verbose] > │         let v29 : int64 = v1.l0                                              │

00:00:18 #791 [Verbose] > │         let v30 : int64 = v29 + 1L                                           │

00:00:18 #792 [Verbose] > │         v1.l0 <- v30                                                         │

00:00:18 #793 [Verbose] > │         let v31 : US1 = US1_1(v28)                                           │

00:00:18 #794 [Verbose] > │         v4.l0 <- v31                                                         │

00:00:18 #795 [Verbose] > │         v28                                                                  │

00:00:18 #796 [Verbose] > │ and method4 (v0 : (int32 [])) : (int32 []) =                                 │

00:00:18 #797 [Verbose] > │     v0                                                                       │

00:00:18 #798 [Verbose] > │ and method5 (v0 : (int32 []), v1 : (int32 []), v2 : int32) : bool =          │

00:00:18 #799 [Verbose] > │     let v3 : int32 = v0.Length                                               │

00:00:18 #800 [Verbose] > │     let v4 : bool = v2 < v3                                                  │

00:00:18 #801 [Verbose] > │     if v4 then                                                               │

00:00:18 #802 [Verbose] > │         let v5 : int32 = v0.[int v2]                                         │

00:00:18 #803 [Verbose] > │         let v6 : int32 = v1.[int v2]                                         │

00:00:18 #804 [Verbose] > │         let v7 : bool = v5 = v6                                              │

00:00:18 #805 [Verbose] > │         if v7 then                                                           │

00:00:18 #806 [Verbose] > │             let v8 : int32 = v2 + 1                                          │

00:00:18 #807 [Verbose] > │             method5(v0, v1, v8)                                              │

00:00:18 #808 [Verbose] > │         else                                                                 │

00:00:18 #809 [Verbose] > │             false                                                            │

00:00:18 #810 [Verbose] > │     else                                                                     │

00:00:18 #811 [Verbose] > │         true                                                                 │

00:00:18 #812 [Verbose] > │ and method0 () : unit =                                                      │

00:00:18 #813 [Verbose] > │     let v0 : string = $"create_sequential_roller ()"                         │

00:00:18 #814 [Verbose] > │     System.Console.WriteLine v0                                              │

00:00:18 #815 [Verbose] > │     let v1 : (unit -> UH0) = closure0()                                      │

00:00:18 #816 [Verbose] > │     let v2 : US0 = US0_1(v1)                                                 │

00:00:18 #817 [Verbose] > │     let v3 : Mut0 = {l0 = v2} : Mut0                                         │

00:00:18 #818 [Verbose] > │     let v4 : Mut1 = {l0 = 0L} : Mut1                                         │

00:00:18 #819 [Verbose] > │     let v5 : Mut1 = {l0 = 1L} : Mut1                                         │

00:00:18 #820 [Verbose] > │     let v6 : Mut1 = {l0 = -1L} : Mut1                                        │

00:00:18 #821 [Verbose] > │     let v7 : US1 = US1_0                                                     │

00:00:18 #822 [Verbose] > │     let v8 : Mut2 = {l0 = v7} : Mut2                                         │

00:00:18 #823 [Verbose] > │     let v9 : (int32 []) = Array.zeroCreate<int32> (50)                       │

00:00:18 #824 [Verbose] > │     let v10 : Mut3 = {l0 = 0} : Mut3                                         │

00:00:18 #825 [Verbose] > │     while method1(v10) do                                                    │

00:00:18 #826 [Verbose] > │         let v12 : int32 = v10.l0                                             │

00:00:18 #827 [Verbose] > │         let v13 : int32 = method2(v3, v4, v5, v6, v8)                        │

00:00:18 #828 [Verbose] > │         v9.[int v12] <- v13                                                  │

00:00:18 #829 [Verbose] > │         let v14 : int32 = v12 + 1                                            │

00:00:18 #830 [Verbose] > │         v10.l0 <- v14                                                        │

00:00:18 #831 [Verbose] > │         ()                                                                   │

00:00:18 #832 [Verbose] > │     let v15 : (int32 []) = [|1; 2; 3; 4; 4; 3; 2; 1; 2; 3; 4; 4; 3; 2; 1; 3; │

00:00:18 #833 [Verbose] > │ 4; 4; 3; 2; 1; 4; 4; 3; 2; 1; 4; 3; 2; 1; 3; 2; 1; 2; 1; 1; 1; 2; 3; 4; 4;   │

00:00:18 #834 [Verbose] > │ 3; 2; 1; 2; 3; 4; 4; 3; 2|]                                                  │

00:00:18 #835 [Verbose] > │     let v16 : (int32 []) = method4(v15)                                      │

00:00:18 #836 [Verbose] > │     let v17 : string = $"__expect / actual: %A{v9} / expected: %A{v16}"      │

00:00:18 #837 [Verbose] > │     let v18 : int32 = v9.Length                                              │

00:00:18 #838 [Verbose] > │     let v19 : int32 = v16.Length                                             │

00:00:18 #839 [Verbose] > │     let v20 : bool = v18 = v19                                               │

00:00:18 #840 [Verbose] > │     let v21 : bool = v20 <> true                                             │

00:00:18 #841 [Verbose] > │     let v24 : bool =                                                         │

00:00:18 #842 [Verbose] > │         if v21 then                                                          │

00:00:18 #843 [Verbose] > │             false                                                            │

00:00:18 #844 [Verbose] > │         else                                                                 │

00:00:18 #845 [Verbose] > │             let v22 : int32 = 0                                              │

00:00:18 #846 [Verbose] > │             method5(v9, v16, v22)                                            │

00:00:18 #847 [Verbose] > │     let v25 : bool = v24 = false                                             │

00:00:18 #848 [Verbose] > │     if v25 then                                                              │

00:00:18 #849 [Verbose] > │         failwith<unit> v17                                                   │

00:00:18 #850 [Verbose] > │ method0()                                                                    │

00:00:18 #851 [Verbose] > │                                                                              │

00:00:18 #852 [Verbose] > │ create_sequential_roller ()                                                  │

00:00:18 #853 [Verbose] > │ create_sequential_roller / roll / current_index: 0 / acc: 1 / len: -1 /      │

00:00:18 #854 [Verbose] > │ last_item: US1_0                                                             │

00:00:18 #855 [Verbose] > │ create_sequential_roller / roll / current_index: 1 / acc: 1 / len: -1 /      │

00:00:18 #856 [Verbose] > │ last_item: US1_1 1                                                           │

00:00:18 #857 [Verbose] > │ create_sequential_roller / roll / current_index: 2 / acc: 1 / len: -1 /      │

00:00:18 #858 [Verbose] > │ last_item: US1_1 2                                                           │

00:00:18 #859 [Verbose] > │ create_sequential_roller / roll / current_index: 3 / acc: 1 / len: -1 /      │

00:00:18 #860 [Verbose] > │ last_item: US1_1 3                                                           │

00:00:18 #861 [Verbose] > │ create_sequential_roller / roll / current_index: 4 / acc: 1 / len: -1 /      │

00:00:18 #862 [Verbose] > │ last_item: US1_1 4                                                           │

00:00:18 #863 [Verbose] > │ create_sequential_roller / roll / current_index: 5 / acc: 1 / len: -1 /      │

00:00:18 #864 [Verbose] > │ last_item: US1_1 4                                                           │

00:00:18 #865 [Verbose] > │ create_sequential_roller / roll / current_index: 6 / acc: 1 / len: -1 /      │

00:00:18 #866 [Verbose] > │ last_item: US1_1 3                                                           │

00:00:18 #867 [Verbose] > │ create_sequential_roller / roll / current_index: 7 / acc: 1 / len: -1 /      │

00:00:18 #868 [Verbose] > │ last_item: US1_1 2                                                           │

00:00:18 #869 [Verbose] > │ create_sequential_roller / roll / current_index: 8 / acc: 1 / len: -1 /      │

00:00:18 #870 [Verbose] > │ last_item: US1_1 1                                                           │

00:00:18 #871 [Verbose] > │ create_sequential_roller / roll / None                                       │

00:00:18 #872 [Verbose] > │ create_sequential_roller / roll / current_index: 1 / acc: 2 / len: 8 /       │

00:00:18 #873 [Verbose] > │ last_item: US1_0                                                             │

00:00:18 #874 [Verbose] > │ create_sequential_roller / roll / current_index: 2 / acc: 2 / len: 8 /       │

00:00:18 #875 [Verbose] > │ last_item: US1_1 2                                                           │

00:00:18 #876 [Verbose] > │ create_sequential_roller / roll / current_index: 3 / acc: 2 / len: 8 /       │

00:00:18 #877 [Verbose] > │ last_item: US1_1 3                                                           │

00:00:18 #878 [Verbose] > │ create_sequential_roller / roll / current_index: 4 / acc: 2 / len: 8 /       │

00:00:18 #879 [Verbose] > │ last_item: US1_1 4                                                           │

00:00:18 #880 [Verbose] > │ create_sequential_roller / roll / current_index: 5 / acc: 2 / len: 8 /       │

00:00:18 #881 [Verbose] > │ last_item: US1_1 4                                                           │

00:00:18 #882 [Verbose] > │ create_sequential_roller / roll / current_index: 6 / acc: 2 / len: 8 /       │

00:00:18 #883 [Verbose] > │ last_item: US1_1 3                                                           │

00:00:18 #884 [Verbose] > │ create_sequential_roller / roll / current_index: 7 / acc: 2 / len: 8 /       │

00:00:18 #885 [Verbose] > │ last_item: US1_1 2                                                           │

00:00:18 #886 [Verbose] > │ create_sequential_roller / roll / current_index: 8 / acc: 2 / len: 8 /       │

00:00:18 #887 [Verbose] > │ last_item: US1_1 1                                                           │

00:00:18 #888 [Verbose] > │ create_sequential_roller / roll / None                                       │

00:00:18 #889 [Verbose] > │ create_sequential_roller / roll / current_index: 2 / acc: 3 / len: 8 /       │

00:00:18 #890 [Verbose] > │ last_item: US1_0                                                             │

00:00:18 #891 [Verbose] > │ create_sequential_roller / roll / current_index: 3 / acc: 3 / len: 8 /       │

00:00:18 #892 [Verbose] > │ last_item: US1_1 3                                                           │

00:00:18 #893 [Verbose] > │ create_sequential_roller / roll / current_index: 4 / acc: 3 / len: 8 /       │

00:00:18 #894 [Verbose] > │ last_item: US1_1 4                                                           │

00:00:18 #895 [Verbose] > │ create_sequential_roller / roll / current_index: 5 / acc: 3 / len: 8 /       │

00:00:18 #896 [Verbose] > │ last_item: US1_1 4                                                           │

00:00:18 #897 [Verbose] > │ create_sequential_roller / roll / current_index: 6 / acc: 3 / len: 8 /       │

00:00:18 #898 [Verbose] > │ last_item: US1_1 3                                                           │

00:00:18 #899 [Verbose] > │ create_sequential_roller / roll / current_index: 7 / acc: 3 / len: 8 /       │

00:00:18 #900 [Verbose] > │ last_item: US1_1 2                                                           │

00:00:18 #901 [Verbose] > │ create_sequential_roller / roll / current_index: 8 / acc: 3 / len: 8 /       │

00:00:18 #902 [Verbose] > │ last_item: US1_1 1                                                           │

00:00:18 #903 [Verbose] > │ create_sequential_roller / roll / None                                       │

00:00:18 #904 [Verbose] > │ create_sequential_roller / roll / current_index: 3 / acc: 4 / len: 8 /       │

00:00:18 #905 [Verbose] > │ last_item: US1_0                                                             │

00:00:18 #906 [Verbose] > │ create_sequential_roller / roll / current_index: 4 / acc: 4 / len: 8 /       │

00:00:18 #907 [Verbose] > │ last_item: US1_1 4                                                           │

00:00:18 #908 [Verbose] > │ create_sequential_roller / roll / current_index: 5 / acc: 4 / len: 8 /       │

00:00:18 #909 [Verbose] > │ last_item: US1_1 4                                                           │

00:00:18 #910 [Verbose] > │ create_sequential_roller / roll / current_index: 6 / acc: 4 / len: 8 /       │

00:00:18 #911 [Verbose] > │ last_item: US1_1 3                                                           │

00:00:18 #912 [Verbose] > │ create_sequential_roller / roll / current_index: 7 / acc: 4 / len: 8 /       │

00:00:18 #913 [Verbose] > │ last_item: US1_1 2                                                           │

00:00:18 #914 [Verbose] > │ create_sequential_roller / roll / current_index: 8 / acc: 4 / len: 8 /       │

00:00:18 #915 [Verbose] > │ last_item: US1_1 1                                                           │

00:00:18 #916 [Verbose] > │ create_sequential_roller / roll / None                                       │

00:00:18 #917 [Verbose] > │ create_sequential_roller / roll / current_index: 4 / acc: 5 / len: 8 /       │

00:00:18 #918 [Verbose] > │ last_item: US1_0                                                             │

00:00:18 #919 [Verbose] > │ create_sequential_roller / roll / current_index: 5 / acc: 5 / len: 8 /       │

00:00:18 #920 [Verbose] > │ last_item: US1_1 4                                                           │

00:00:18 #921 [Verbose] > │ create_sequential_roller / roll / current_index: 6 / acc: 5 / len: 8 /       │

00:00:18 #922 [Verbose] > │ last_item: US1_1 3                                                           │

00:00:18 #923 [Verbose] > │ create_sequential_roller / roll / current_index: 7 / acc: 5 / len: 8 /       │

00:00:18 #924 [Verbose] > │ last_item: US1_1 2                                                           │

00:00:18 #925 [Verbose] > │ create_sequential_roller / roll / current_index: 8 / acc: 5 / len: 8 /       │

00:00:18 #926 [Verbose] > │ last_item: US1_1 1                                                           │

00:00:18 #927 [Verbose] > │ create_sequential_roller / roll / None                                       │

00:00:18 #928 [Verbose] > │ create_sequential_roller / roll / current_index: 5 / acc: 6 / len: 8 /       │

00:00:18 #929 [Verbose] > │ last_item: US1_0                                                             │

00:00:18 #930 [Verbose] > │ create_sequential_roller / roll / current_index: 6 / acc: 6 / len: 8 /       │

00:00:18 #931 [Verbose] > │ last_item: US1_1 3                                                           │

00:00:18 #932 [Verbose] > │ create_sequential_roller / roll / current_index: 7 / acc: 6 / len: 8 /       │

00:00:18 #933 [Verbose] > │ last_item: US1_1 2                                                           │

00:00:18 #934 [Verbose] > │ create_sequential_roller / roll / current_index: 8 / acc: 6 / len: 8 /       │

00:00:18 #935 [Verbose] > │ last_item: US1_1 1                                                           │

00:00:18 #936 [Verbose] > │ create_sequential_roller / roll / None                                       │

00:00:18 #937 [Verbose] > │ create_sequential_roller / roll / current_index: 6 / acc: 7 / len: 8 /       │

00:00:18 #938 [Verbose] > │ last_item: US1_0                                                             │

00:00:18 #939 [Verbose] > │ create_sequential_roller / roll / current_index: 7 / acc: 7 / len: 8 /       │

00:00:18 #940 [Verbose] > │ last_item: US1_1 2                                                           │

00:00:18 #941 [Verbose] > │ create_sequential_roller / roll / current_index: 8 / acc: 7 / len: 8 /       │

00:00:18 #942 [Verbose] > │ last_item: US1_1 1                                                           │

00:00:18 #943 [Verbose] > │ create_sequential_roller / roll / None                                       │

00:00:18 #944 [Verbose] > │ create_sequential_roller / roll / current_index: 7 / acc: 8 / len: 8 /       │

00:00:18 #945 [Verbose] > │ last_item: US1_0                                                             │

00:00:18 #946 [Verbose] > │ create_sequential_roller / roll / current_index: 8 / acc: 8 / len: 8 /       │

00:00:18 #947 [Verbose] > │ last_item: US1_1 1                                                           │

00:00:18 #948 [Verbose] > │ create_sequential_roller / roll / None                                       │

00:00:18 #949 [Verbose] > │ create_sequential_roller / roll / current_index: 0 / acc: 1 / len: 8 /       │

00:00:18 #950 [Verbose] > │ last_item: US1_0                                                             │

00:00:18 #951 [Verbose] > │ create_sequential_roller / roll / current_index: 1 / acc: 1 / len: 8 /       │

00:00:18 #952 [Verbose] > │ last_item: US1_1 1                                                           │

00:00:18 #953 [Verbose] > │ create_sequential_roller / roll / current_index: 2 / acc: 1 / len: 8 /       │

00:00:18 #954 [Verbose] > │ last_item: US1_1 2                                                           │

00:00:18 #955 [Verbose] > │ create_sequential_roller / roll / current_index: 3 / acc: 1 / len: 8 /       │

00:00:18 #956 [Verbose] > │ last_item: US1_1 3                                                           │

00:00:18 #957 [Verbose] > │ create_sequential_roller / roll / current_index: 4 / acc: 1 / len: 8 /       │

00:00:18 #958 [Verbose] > │ last_item: US1_1 4                                                           │

00:00:18 #959 [Verbose] > │ create_sequential_roller / roll / current_index: 5 / acc: 1 / len: 8 /       │

00:00:18 #960 [Verbose] > │ last_item: US1_1 4                                                           │

00:00:18 #961 [Verbose] > │ create_sequential_roller / roll / current_index: 6 / acc: 1 / len: 8 /       │

00:00:18 #962 [Verbose] > │ last_item: US1_1 3                                                           │

00:00:18 #963 [Verbose] > │ create_sequential_roller / roll / current_index: 7 / acc: 1 / len: 8 /       │

00:00:18 #964 [Verbose] > │ last_item: US1_1 2                                                           │

00:00:18 #965 [Verbose] > │ create_sequential_roller / roll / current_index: 8 / acc: 1 / len: 8 /       │

00:00:18 #966 [Verbose] > │ last_item: US1_1 1                                                           │

00:00:18 #967 [Verbose] > │ create_sequential_roller / roll / None                                       │

00:00:18 #968 [Verbose] > │ create_sequential_roller / roll / current_index: 1 / acc: 2 / len: 8 /       │

00:00:18 #969 [Verbose] > │ last_item: US1_0                                                             │

00:00:18 #970 [Verbose] > │ create_sequential_roller / roll / current_index: 2 / acc: 2 / len: 8 /       │

00:00:18 #971 [Verbose] > │ last_item: US1_1 2                                                           │

00:00:18 #972 [Verbose] > │ create_sequential_roller / roll / current_index: 3 / acc: 2 / len: 8 /       │

00:00:18 #973 [Verbose] > │ last_item: US1_1 3                                                           │

00:00:18 #974 [Verbose] > │ create_sequential_roller / roll / current_index: 4 / acc: 2 / len: 8 /       │

00:00:18 #975 [Verbose] > │ last_item: US1_1 4                                                           │

00:00:18 #976 [Verbose] > │ create_sequential_roller / roll / current_index: 5 / acc: 2 / len: 8 /       │

00:00:18 #977 [Verbose] > │ last_item: US1_1 4                                                           │

00:00:18 #978 [Verbose] > │ create_sequential_roller / roll / current_index: 6 / acc: 2 / len: 8 /       │

00:00:18 #979 [Verbose] > │ last_item: US1_1 3                                                           │

00:00:18 #980 [Verbose] > │                                                                              │

00:00:18 #981 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #982 [Verbose] >

00:00:18 #983 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:18 #984 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:18 #985 [Verbose] > │ ## roll_progressively                                                        │

00:00:18 #986 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #987 [Verbose] >

00:00:18 #988 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #989 [Verbose] > inl roll_progressively (log : option (string -> ())) roll reroll max =

00:00:18 #990 [Verbose] >     inl power = (calculate_dice_count log max) - 1

00:00:18 #991 [Verbose] >     let rec loop rolls size =

00:00:18 #992 [Verbose] >         if size < power + 1

00:00:18 #993 [Verbose] >         then loop (roll () :: rolls) (size + 1)

00:00:18 #994 [Verbose] >         else accumulate_dice_rolls log rolls power 0 |> function

00:00:18 #995 [Verbose] >             | Some (result, _) when result <= max => result

00:00:18 #996 [Verbose] >             | _ when reroll => loop (listm.init power (fun _ => roll ())) power

00:00:18 #997 [Verbose] >             | _ => loop (roll () :: rolls) (size + 1)

00:00:18 #998 [Verbose] >     loop [[]] 0

00:00:18 #999 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4554-5460-57d5bce30b5c\main.spi

00:00:18 #1000 [Verbose] >

00:00:18 #1001 [Verbose] > ╭─[ 196.03ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #1002 [Verbose] > │ ()                                                                           │

00:00:18 #1003 [Verbose] > │                                                                              │

00:00:18 #1004 [Verbose] > │                                                                              │

00:00:18 #1005 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #1006 [Verbose] >

00:00:18 #1007 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #1008 [Verbose] > // // test

00:00:18 #1009 [Verbose] >

00:00:18 #1010 [Verbose] > roll_progressively None roll_dice false 1

00:00:18 #1011 [Verbose] > |> _equal 1i32

00:00:18 #1012 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4574-7414-70a3fab3bd05\main.spi

00:00:18 #1013 [Verbose] >

00:00:18 #1014 [Verbose] > ╭─[ 391.22ms - stdout ]────────────────────────────────────────────────────────╮

00:00:18 #1015 [Verbose] > │ type UH0 =                                                                   │

00:00:18 #1016 [Verbose] > │     | UH0_0 of uint8 * UH0                                                   │

00:00:18 #1017 [Verbose] > │     | UH0_1                                                                  │

00:00:18 #1018 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:18 #1019 [Verbose] > │     | US0_0                                                                  │

00:00:18 #1020 [Verbose] > │     | US0_1 of f1_0 : int32 * f1_1 : UH0                                     │

00:00:18 #1021 [Verbose] > │ let rec method3 (v0 : UH0, v1 : int32) : US0 =                               │

00:00:18 #1022 [Verbose] > │     let v2 : string = $"accumulate_dice_rolls / power: {-1y} / acc: {v1}"    │

00:00:18 #1023 [Verbose] > │     let v3 : int32 = v1 + 1                                                  │

00:00:18 #1024 [Verbose] > │     US0_1(v3, v0)                                                            │

00:00:18 #1025 [Verbose] > │ and method2 (v0 : UH0, v1 : int32) : US0 =                                   │

00:00:18 #1026 [Verbose] > │     match v0 with                                                            │

00:00:18 #1027 [Verbose] > │     | UH0_0(v3, v4) -> (* Cons *)                                            │

00:00:18 #1028 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:18 #1029 [Verbose] > │         if v5 then                                                           │

00:00:18 #1030 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:18 #1031 [Verbose] > │             let v7 : int32 = int32 v6                                        │

00:00:18 #1032 [Verbose] > │             let v8 : string = $"accumulate_dice_rolls / power: {0y} / acc:   │

00:00:18 #1033 [Verbose] > │ {v1} / roll: {v3} / value: {v7}"                                             │

00:00:18 #1034 [Verbose] > │             let v9 : int32 = v1 + v7                                         │

00:00:18 #1035 [Verbose] > │             method3(v4, v9)                                                  │

00:00:18 #1036 [Verbose] > │         else                                                                 │

00:00:18 #1037 [Verbose] > │             let v11 : string = $"accumulate_dice_rolls / power: {0y} / acc:  │

00:00:18 #1038 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:18 #1039 [Verbose] > │             method3(v4, v1)                                                  │

00:00:18 #1040 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:18 #1041 [Verbose] > │         US0_0                                                                │

00:00:18 #1042 [Verbose] > │ and method1 (v0 : UH0, v1 : int8) : int32 =                                  │

00:00:18 #1043 [Verbose] > │     let v2 : bool = v1 < 1y                                                  │

00:00:18 #1044 [Verbose] > │     if v2 then                                                               │

00:00:18 #1045 [Verbose] > │         let mutable result = None                                            │

00:00:18 #1046 [Verbose] > │         #if FABLE_COMPILER_RUST                                              │

00:00:18 #1047 [Verbose] > │         #if !WASM                                                            │

00:00:18 #1048 [Verbose] > │         let v3 : string = "rand::Rng::gen_range(&mut rand::thread_rng(),     │

00:00:18 #1049 [Verbose] > │ 1..7)"                                                                       │

00:00:18 #1050 [Verbose] > │         let v4 : uint8 = Fable.Core.RustInterop.emitRustExpr () v3           │

00:00:18 #1051 [Verbose] > │         v4                                                                   │

00:00:18 #1052 [Verbose] > │         #else                                                                │

00:00:18 #1053 [Verbose] > │         let v5 : string = "1"                                                │

00:00:18 #1054 [Verbose] > │         let v6 : uint8 = Fable.Core.RustInterop.emitRustExpr () v5           │

00:00:18 #1055 [Verbose] > │         v6                                                                   │

00:00:18 #1056 [Verbose] > │         #endif                                                               │

00:00:18 #1057 [Verbose] > │         #else                                                                │

00:00:18 #1058 [Verbose] > │         let v7 : uint8 = System.Random().Next (1, 7) |> uint8                │

00:00:18 #1059 [Verbose] > │         v7                                                                   │

00:00:18 #1060 [Verbose] > │         #endif                                                               │

00:00:18 #1061 [Verbose] > │         |> fun x -> result <- Some x                                         │

00:00:18 #1062 [Verbose] > │         let v8 : uint8 = result |> Option.get                                │

00:00:18 #1063 [Verbose] > │         let v9 : UH0 = UH0_0(v8, v0)                                         │

00:00:18 #1064 [Verbose] > │         let v10 : int8 = v1 + 1y                                             │

00:00:18 #1065 [Verbose] > │         method1(v9, v10)                                                     │

00:00:18 #1066 [Verbose] > │     else                                                                     │

00:00:18 #1067 [Verbose] > │         let v12 : int32 = 0                                                  │

00:00:18 #1068 [Verbose] > │         let v13 : US0 = method2(v0, v12)                                     │

00:00:18 #1069 [Verbose] > │         match v13 with                                                       │

00:00:18 #1070 [Verbose] > │         | US0_1(v14, v15) -> (* Some *)                                      │

00:00:18 #1071 [Verbose] > │             let v16 : bool = v14 <= 1                                        │

00:00:18 #1072 [Verbose] > │             if v16 then                                                      │

00:00:18 #1073 [Verbose] > │                 v14                                                          │

00:00:18 #1074 [Verbose] > │             else                                                             │

00:00:18 #1075 [Verbose] > │                 let mutable result = None                                    │

00:00:18 #1076 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:18 #1077 [Verbose] > │                 #if !WASM                                                    │

00:00:18 #1078 [Verbose] > │                 let v17 : string = "rand::Rng::gen_range(&mut                │

00:00:18 #1079 [Verbose] > │ rand::thread_rng(), 1..7)"                                                   │

00:00:18 #1080 [Verbose] > │                 let v18 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:18 #1081 [Verbose] > │                 v18                                                          │

00:00:18 #1082 [Verbose] > │                 #else                                                        │

00:00:18 #1083 [Verbose] > │                 let v19 : string = "1"                                       │

00:00:18 #1084 [Verbose] > │                 let v20 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:18 #1085 [Verbose] > │                 v20                                                          │

00:00:18 #1086 [Verbose] > │                 #endif                                                       │

00:00:18 #1087 [Verbose] > │                 #else                                                        │

00:00:18 #1088 [Verbose] > │                 let v21 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:18 #1089 [Verbose] > │                 v21                                                          │

00:00:18 #1090 [Verbose] > │                 #endif                                                       │

00:00:18 #1091 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:18 #1092 [Verbose] > │                 let v22 : uint8 = result |> Option.get                       │

00:00:18 #1093 [Verbose] > │                 let v23 : UH0 = UH0_0(v22, v0)                               │

00:00:18 #1094 [Verbose] > │                 let v24 : int8 = v1 + 1y                                     │

00:00:18 #1095 [Verbose] > │                 method1(v23, v24)                                            │

00:00:18 #1096 [Verbose] > │         | _ ->                                                               │

00:00:18 #1097 [Verbose] > │             let mutable result = None                                        │

00:00:18 #1098 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:18 #1099 [Verbose] > │             #if !WASM                                                        │

00:00:18 #1100 [Verbose] > │             let v27 : string = "rand::Rng::gen_range(&mut                    │

00:00:18 #1101 [Verbose] > │ rand::thread_rng(), 1..7)"                                                   │

00:00:18 #1102 [Verbose] > │             let v28 : uint8 = Fable.Core.RustInterop.emitRustExpr () v27     │

00:00:18 #1103 [Verbose] > │             v28                                                              │

00:00:18 #1104 [Verbose] > │             #else                                                            │

00:00:18 #1105 [Verbose] > │             let v29 : string = "1"                                           │

00:00:18 #1106 [Verbose] > │             let v30 : uint8 = Fable.Core.RustInterop.emitRustExpr () v29     │

00:00:18 #1107 [Verbose] > │             v30                                                              │

00:00:18 #1108 [Verbose] > │             #endif                                                           │

00:00:18 #1109 [Verbose] > │             #else                                                            │

00:00:18 #1110 [Verbose] > │             let v31 : uint8 = System.Random().Next (1, 7) |> uint8           │

00:00:18 #1111 [Verbose] > │             v31                                                              │

00:00:18 #1112 [Verbose] > │             #endif                                                           │

00:00:18 #1113 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:18 #1114 [Verbose] > │             let v32 : uint8 = result |> Option.get                           │

00:00:18 #1115 [Verbose] > │             let v33 : UH0 = UH0_0(v32, v0)                                   │

00:00:18 #1116 [Verbose] > │             let v34 : int8 = v1 + 1y                                         │

00:00:18 #1117 [Verbose] > │             method1(v33, v34)                                                │

00:00:18 #1118 [Verbose] > │ and method0 () : unit =                                                      │

00:00:18 #1119 [Verbose] > │     let v0 : UH0 = UH0_1                                                     │

00:00:18 #1120 [Verbose] > │     let v1 : int8 = 0y                                                       │

00:00:18 #1121 [Verbose] > │     let v2 : int32 = method1(v0, v1)                                         │

00:00:18 #1122 [Verbose] > │     let v3 : string = $"__expect / actual: %A{v2} / expected: %A{1}"         │

00:00:18 #1123 [Verbose] > │     let v4 : bool = v2 = 1                                                   │

00:00:18 #1124 [Verbose] > │     let v5 : bool = v4 = false                                               │

00:00:18 #1125 [Verbose] > │     if v5 then                                                               │

00:00:18 #1126 [Verbose] > │         failwith<unit> v3                                                    │

00:00:18 #1127 [Verbose] > │ method0()                                                                    │

00:00:18 #1128 [Verbose] > │                                                                              │

00:00:18 #1129 [Verbose] > │                                                                              │

00:00:18 #1130 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:18 #1131 [Verbose] >

00:00:18 #1132 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:18 #1133 [Verbose] > // // test

00:00:18 #1134 [Verbose] >

00:00:18 #1135 [Verbose] > inl sequential_roll = create_sequential_roller (Some console.write_line) [[ 5;

00:00:18 #1136 [Verbose] > 4; 4; 5; 1 ]]

00:00:18 #1137 [Verbose] >

00:00:18 #1138 [Verbose] > roll_progressively (Some console.write_line) sequential_roll false 2000i32

00:00:18 #1139 [Verbose] > |> _equal 995

00:00:19 #1140 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4621-2180-2bd2d0a869c4\main.spi

00:00:19 #1141 [Verbose] >

00:00:19 #1142 [Verbose] > ╭─[ 859.64ms - stdout ]────────────────────────────────────────────────────────╮

00:00:19 #1143 [Verbose] > │ type UH0 =                                                                   │

00:00:19 #1144 [Verbose] > │     | UH0_0 of uint8 * (unit -> UH0)                                         │

00:00:19 #1145 [Verbose] > │     | UH0_1                                                                  │

00:00:19 #1146 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:19 #1147 [Verbose] > │     | US0_0 of f0_0 : UH0                                                    │

00:00:19 #1148 [Verbose] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

00:00:19 #1149 [Verbose] > │ and Mut0 = {mutable l0 : US0}                                                │

00:00:19 #1150 [Verbose] > │ and Mut1 = {mutable l0 : int64}                                              │

00:00:19 #1151 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:19 #1152 [Verbose] > │     | US1_0                                                                  │

00:00:19 #1153 [Verbose] > │     | US1_1 of f1_0 : uint8                                                  │

00:00:19 #1154 [Verbose] > │ and Mut2 = {mutable l0 : US1}                                                │

00:00:19 #1155 [Verbose] > │ and UH1 =                                                                    │

00:00:19 #1156 [Verbose] > │     | UH1_0 of uint8 * UH1                                                   │

00:00:19 #1157 [Verbose] > │     | UH1_1                                                                  │

00:00:19 #1158 [Verbose] > │ and [<Struct>] US2 =                                                         │

00:00:19 #1159 [Verbose] > │     | US2_0                                                                  │

00:00:19 #1160 [Verbose] > │     | US2_1 of f1_0 : int32 * f1_1 : UH1                                     │

00:00:19 #1161 [Verbose] > │ let rec closure10 () () : UH0 =                                              │

00:00:19 #1162 [Verbose] > │     UH0_1                                                                    │

00:00:19 #1163 [Verbose] > │ and closure9 () () : UH0 =                                                   │

00:00:19 #1164 [Verbose] > │     let v0 : (unit -> UH0) = closure10()                                     │

00:00:19 #1165 [Verbose] > │     UH0_0(5uy, v0)                                                           │

00:00:19 #1166 [Verbose] > │ and closure8 () () : UH0 =                                                   │

00:00:19 #1167 [Verbose] > │     let v0 : (unit -> UH0) = closure9()                                      │

00:00:19 #1168 [Verbose] > │     UH0_0(4uy, v0)                                                           │

00:00:19 #1169 [Verbose] > │ and closure7 () () : UH0 =                                                   │

00:00:19 #1170 [Verbose] > │     let v0 : (unit -> UH0) = closure8()                                      │

00:00:19 #1171 [Verbose] > │     UH0_0(4uy, v0)                                                           │

00:00:19 #1172 [Verbose] > │ and closure6 () () : UH0 =                                                   │

00:00:19 #1173 [Verbose] > │     let v0 : (unit -> UH0) = closure7()                                      │

00:00:19 #1174 [Verbose] > │     UH0_0(5uy, v0)                                                           │

00:00:19 #1175 [Verbose] > │ and closure5 () () : UH0 =                                                   │

00:00:19 #1176 [Verbose] > │     let v0 : (unit -> UH0) = closure6()                                      │

00:00:19 #1177 [Verbose] > │     UH0_0(1uy, v0)                                                           │

00:00:19 #1178 [Verbose] > │ and closure4 () () : UH0 =                                                   │

00:00:19 #1179 [Verbose] > │     let v0 : (unit -> UH0) = closure5()                                      │

00:00:19 #1180 [Verbose] > │     UH0_0(1uy, v0)                                                           │

00:00:19 #1181 [Verbose] > │ and closure3 () () : UH0 =                                                   │

00:00:19 #1182 [Verbose] > │     let v0 : (unit -> UH0) = closure4()                                      │

00:00:19 #1183 [Verbose] > │     UH0_0(5uy, v0)                                                           │

00:00:19 #1184 [Verbose] > │ and closure2 () () : UH0 =                                                   │

00:00:19 #1185 [Verbose] > │     let v0 : (unit -> UH0) = closure3()                                      │

00:00:19 #1186 [Verbose] > │     UH0_0(4uy, v0)                                                           │

00:00:19 #1187 [Verbose] > │ and closure1 () () : UH0 =                                                   │

00:00:19 #1188 [Verbose] > │     let v0 : (unit -> UH0) = closure2()                                      │

00:00:19 #1189 [Verbose] > │     UH0_0(4uy, v0)                                                           │

00:00:19 #1190 [Verbose] > │ and closure0 () () : UH0 =                                                   │

00:00:19 #1191 [Verbose] > │     let v0 : (unit -> UH0) = closure1()                                      │

00:00:19 #1192 [Verbose] > │     UH0_0(5uy, v0)                                                           │

00:00:19 #1193 [Verbose] > │ and closure11 (v0 : Mut0) () : UH0 =                                         │

00:00:19 #1194 [Verbose] > │     let v1 : US0 = v0.l0                                                     │

00:00:19 #1195 [Verbose] > │     match v1 with                                                            │

00:00:19 #1196 [Verbose] > │     | US0_0(v2) -> (* Computed *)                                            │

00:00:19 #1197 [Verbose] > │         v2                                                                   │

00:00:19 #1198 [Verbose] > │     | US0_1(v3) -> (* NotComputed *)                                         │

00:00:19 #1199 [Verbose] > │         let v4 : UH0 = v3 ()                                                 │

00:00:19 #1200 [Verbose] > │         let v13 : UH0 =                                                      │

00:00:19 #1201 [Verbose] > │             match v4 with                                                    │

00:00:19 #1202 [Verbose] > │             | UH0_0(v6, v7) -> (* StreamCons *)                              │

00:00:19 #1203 [Verbose] > │                 let v8 : US0 = US0_1(v7)                                     │

00:00:19 #1204 [Verbose] > │                 let v9 : Mut0 = {l0 = v8} : Mut0                             │

00:00:19 #1205 [Verbose] > │                 let v10 : (unit -> UH0) = closure11(v9)                      │

00:00:19 #1206 [Verbose] > │                 UH0_0(v6, v10)                                               │

00:00:19 #1207 [Verbose] > │             | UH0_1 -> (* StreamNil *)                                       │

00:00:19 #1208 [Verbose] > │                 UH0_1                                                        │

00:00:19 #1209 [Verbose] > │         let v14 : US0 = US0_0(v13)                                           │

00:00:19 #1210 [Verbose] > │         v0.l0 <- v14                                                         │

00:00:19 #1211 [Verbose] > │         v13                                                                  │

00:00:19 #1212 [Verbose] > │ and method3 (v0 : int64, v1 : UH0) : US1 =                                   │

00:00:19 #1213 [Verbose] > │     match v1 with                                                            │

00:00:19 #1214 [Verbose] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

00:00:19 #1215 [Verbose] > │         let v4 : bool = v0 <= 0L                                             │

00:00:19 #1216 [Verbose] > │         if v4 then                                                           │

00:00:19 #1217 [Verbose] > │             US1_1(v2)                                                        │

00:00:19 #1218 [Verbose] > │         else                                                                 │

00:00:19 #1219 [Verbose] > │             let v6 : int64 = v0 - 1L                                         │

00:00:19 #1220 [Verbose] > │             let v7 : UH0 = v3 ()                                             │

00:00:19 #1221 [Verbose] > │             method3(v6, v7)                                                  │

00:00:19 #1222 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:19 #1223 [Verbose] > │         US1_0                                                                │

00:00:19 #1224 [Verbose] > │ and method2 (v0 : Mut0, v1 : Mut1, v2 : Mut1, v3 : Mut1, v4 : Mut2) : uint8  │

00:00:19 #1225 [Verbose] > │ =                                                                            │

00:00:19 #1226 [Verbose] > │     let v5 : int64 = v1.l0                                                   │

00:00:19 #1227 [Verbose] > │     let v6 : int64 = v2.l0                                                   │

00:00:19 #1228 [Verbose] > │     let v7 : int64 = v3.l0                                                   │

00:00:19 #1229 [Verbose] > │     let v8 : US1 = v4.l0                                                     │

00:00:19 #1230 [Verbose] > │     let v9 : string = $"create_sequential_roller / roll / current_index:     │

00:00:19 #1231 [Verbose] > │ {v5} / acc: {v6} / len: {v7} / last_item: %A{v8}"                            │

00:00:19 #1232 [Verbose] > │     System.Console.WriteLine v9                                              │

00:00:19 #1233 [Verbose] > │     let v10 : US0 = v0.l0                                                    │

00:00:19 #1234 [Verbose] > │     let v25 : UH0 =                                                          │

00:00:19 #1235 [Verbose] > │         match v10 with                                                       │

00:00:19 #1236 [Verbose] > │         | US0_0(v11) -> (* Computed *)                                       │

00:00:19 #1237 [Verbose] > │             v11                                                              │

00:00:19 #1238 [Verbose] > │         | US0_1(v12) -> (* NotComputed *)                                    │

00:00:19 #1239 [Verbose] > │             let v13 : UH0 = v12 ()                                           │

00:00:19 #1240 [Verbose] > │             let v22 : UH0 =                                                  │

00:00:19 #1241 [Verbose] > │                 match v13 with                                               │

00:00:19 #1242 [Verbose] > │                 | UH0_0(v15, v16) -> (* StreamCons *)                        │

00:00:19 #1243 [Verbose] > │                     let v17 : US0 = US0_1(v16)                               │

00:00:19 #1244 [Verbose] > │                     let v18 : Mut0 = {l0 = v17} : Mut0                       │

00:00:19 #1245 [Verbose] > │                     let v19 : (unit -> UH0) = closure11(v18)                 │

00:00:19 #1246 [Verbose] > │                     UH0_0(v15, v19)                                          │

00:00:19 #1247 [Verbose] > │                 | UH0_1 -> (* StreamNil *)                                   │

00:00:19 #1248 [Verbose] > │                     UH0_1                                                    │

00:00:19 #1249 [Verbose] > │             let v23 : US0 = US0_0(v22)                                       │

00:00:19 #1250 [Verbose] > │             v0.l0 <- v23                                                     │

00:00:19 #1251 [Verbose] > │             v22                                                              │

00:00:19 #1252 [Verbose] > │     let v26 : int64 = v1.l0                                                  │

00:00:19 #1253 [Verbose] > │     let v27 : US1 = method3(v26, v25)                                        │

00:00:19 #1254 [Verbose] > │     match v27 with                                                           │

00:00:19 #1255 [Verbose] > │     | US1_0 -> (* None *)                                                    │

00:00:19 #1256 [Verbose] > │         let v32 : string = $"create_sequential_roller / roll / None"         │

00:00:19 #1257 [Verbose] > │         System.Console.WriteLine v32                                         │

00:00:19 #1258 [Verbose] > │         let v33 : int64 = v3.l0                                              │

00:00:19 #1259 [Verbose] > │         let v34 : bool = v33 = -1L                                           │

00:00:19 #1260 [Verbose] > │         if v34 then                                                          │

00:00:19 #1261 [Verbose] > │             let v35 : int64 = v1.l0                                          │

00:00:19 #1262 [Verbose] > │             v3.l0 <- v35                                                     │

00:00:19 #1263 [Verbose] > │             ()                                                               │

00:00:19 #1264 [Verbose] > │         let v36 : int64 = v2.l0                                              │

00:00:19 #1265 [Verbose] > │         let v37 : int64 = v3.l0                                              │

00:00:19 #1266 [Verbose] > │         let v38 : bool = v36 >= v37                                          │

00:00:19 #1267 [Verbose] > │         let v41 : int64 =                                                    │

00:00:19 #1268 [Verbose] > │             if v38 then                                                      │

00:00:19 #1269 [Verbose] > │                 1L                                                           │

00:00:19 #1270 [Verbose] > │             else                                                             │

00:00:19 #1271 [Verbose] > │                 let v39 : int64 = v2.l0                                      │

00:00:19 #1272 [Verbose] > │                 let v40 : int64 = v39 + 1L                                   │

00:00:19 #1273 [Verbose] > │                 v40                                                          │

00:00:19 #1274 [Verbose] > │         v2.l0 <- v41                                                         │

00:00:19 #1275 [Verbose] > │         let v42 : int64 = v2.l0                                              │

00:00:19 #1276 [Verbose] > │         let v43 : int64 = v42 - 1L                                           │

00:00:19 #1277 [Verbose] > │         v1.l0 <- v43                                                         │

00:00:19 #1278 [Verbose] > │         let v44 : US1 = US1_0                                                │

00:00:19 #1279 [Verbose] > │         v4.l0 <- v44                                                         │

00:00:19 #1280 [Verbose] > │         method2(v0, v1, v2, v3, v4)                                          │

00:00:19 #1281 [Verbose] > │     | US1_1(v28) -> (* Some *)                                               │

00:00:19 #1282 [Verbose] > │         let v29 : int64 = v1.l0                                              │

00:00:19 #1283 [Verbose] > │         let v30 : int64 = v29 + 1L                                           │

00:00:19 #1284 [Verbose] > │         v1.l0 <- v30                                                         │

00:00:19 #1285 [Verbose] > │         let v31 : US1 = US1_1(v28)                                           │

00:00:19 #1286 [Verbose] > │         v4.l0 <- v31                                                         │

00:00:19 #1287 [Verbose] > │         v28                                                                  │

00:00:19 #1288 [Verbose] > │ and method9 (v0 : UH1, v1 : int32) : US2 =                                   │

00:00:19 #1289 [Verbose] > │     let v2 : string = $"accumulate_dice_rolls / power: {-1y} / acc: {v1}"    │

00:00:19 #1290 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:19 #1291 [Verbose] > │     let v3 : int32 = v1 + 1                                                  │

00:00:19 #1292 [Verbose] > │     US2_1(v3, v0)                                                            │

00:00:19 #1293 [Verbose] > │ and method8 (v0 : UH1, v1 : int32) : US2 =                                   │

00:00:19 #1294 [Verbose] > │     match v0 with                                                            │

00:00:19 #1295 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:19 #1296 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:19 #1297 [Verbose] > │         if v5 then                                                           │

00:00:19 #1298 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:19 #1299 [Verbose] > │             let v7 : int32 = int32 v6                                        │

00:00:19 #1300 [Verbose] > │             let v8 : string = $"accumulate_dice_rolls / power: {0y} / acc:   │

00:00:19 #1301 [Verbose] > │ {v1} / roll: {v3} / value: {v7}"                                             │

00:00:19 #1302 [Verbose] > │             System.Console.WriteLine v8                                      │

00:00:19 #1303 [Verbose] > │             let v9 : int32 = v1 + v7                                         │

00:00:19 #1304 [Verbose] > │             method9(v4, v9)                                                  │

00:00:19 #1305 [Verbose] > │         else                                                                 │

00:00:19 #1306 [Verbose] > │             let v11 : string = $"accumulate_dice_rolls / power: {0y} / acc:  │

00:00:19 #1307 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:19 #1308 [Verbose] > │             System.Console.WriteLine v11                                     │

00:00:19 #1309 [Verbose] > │             method9(v4, v1)                                                  │

00:00:19 #1310 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:19 #1311 [Verbose] > │         US2_0                                                                │

00:00:19 #1312 [Verbose] > │ and method7 (v0 : UH1, v1 : int32) : US2 =                                   │

00:00:19 #1313 [Verbose] > │     match v0 with                                                            │

00:00:19 #1314 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:19 #1315 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:19 #1316 [Verbose] > │         if v5 then                                                           │

00:00:19 #1317 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:19 #1318 [Verbose] > │             let v7 : int32 = int32 v6                                        │

00:00:19 #1319 [Verbose] > │             let v8 : int32 = v7 * 6                                          │

00:00:19 #1320 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {1y} / acc:   │

00:00:19 #1321 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:19 #1322 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:19 #1323 [Verbose] > │             let v10 : int32 = v1 + v8                                        │

00:00:19 #1324 [Verbose] > │             method8(v4, v10)                                                 │

00:00:19 #1325 [Verbose] > │         else                                                                 │

00:00:19 #1326 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {1y} / acc:  │

00:00:19 #1327 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:19 #1328 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:19 #1329 [Verbose] > │             method8(v4, v1)                                                  │

00:00:19 #1330 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:19 #1331 [Verbose] > │         US2_0                                                                │

00:00:19 #1332 [Verbose] > │ and method6 (v0 : UH1, v1 : int32) : US2 =                                   │

00:00:19 #1333 [Verbose] > │     match v0 with                                                            │

00:00:19 #1334 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:19 #1335 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:19 #1336 [Verbose] > │         if v5 then                                                           │

00:00:19 #1337 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:19 #1338 [Verbose] > │             let v7 : int32 = int32 v6                                        │

00:00:19 #1339 [Verbose] > │             let v8 : int32 = v7 * 36                                         │

00:00:19 #1340 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {2y} / acc:   │

00:00:19 #1341 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:19 #1342 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:19 #1343 [Verbose] > │             let v10 : int32 = v1 + v8                                        │

00:00:19 #1344 [Verbose] > │             method7(v4, v10)                                                 │

00:00:19 #1345 [Verbose] > │         else                                                                 │

00:00:19 #1346 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {2y} / acc:  │

00:00:19 #1347 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:19 #1348 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:19 #1349 [Verbose] > │             method7(v4, v1)                                                  │

00:00:19 #1350 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:19 #1351 [Verbose] > │         US2_0                                                                │

00:00:19 #1352 [Verbose] > │ and method5 (v0 : UH1, v1 : int32) : US2 =                                   │

00:00:19 #1353 [Verbose] > │     match v0 with                                                            │

00:00:19 #1354 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:19 #1355 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:19 #1356 [Verbose] > │         if v5 then                                                           │

00:00:19 #1357 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:19 #1358 [Verbose] > │             let v7 : int32 = int32 v6                                        │

00:00:19 #1359 [Verbose] > │             let v8 : int32 = v7 * 216                                        │

00:00:19 #1360 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {3y} / acc:   │

00:00:19 #1361 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:19 #1362 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:19 #1363 [Verbose] > │             let v10 : int32 = v1 + v8                                        │

00:00:19 #1364 [Verbose] > │             method6(v4, v10)                                                 │

00:00:19 #1365 [Verbose] > │         else                                                                 │

00:00:19 #1366 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {3y} / acc:  │

00:00:19 #1367 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:19 #1368 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:19 #1369 [Verbose] > │             method6(v4, v1)                                                  │

00:00:19 #1370 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:19 #1371 [Verbose] > │         US2_0                                                                │

00:00:19 #1372 [Verbose] > │ and method4 (v0 : UH1, v1 : int32) : US2 =                                   │

00:00:19 #1373 [Verbose] > │     match v0 with                                                            │

00:00:19 #1374 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:19 #1375 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:19 #1376 [Verbose] > │         if v5 then                                                           │

00:00:19 #1377 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:19 #1378 [Verbose] > │             let v7 : int32 = int32 v6                                        │

00:00:19 #1379 [Verbose] > │             let v8 : int32 = v7 * 1296                                       │

00:00:19 #1380 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {4y} / acc:   │

00:00:19 #1381 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:19 #1382 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:19 #1383 [Verbose] > │             let v10 : int32 = v1 + v8                                        │

00:00:19 #1384 [Verbose] > │             method5(v4, v10)                                                 │

00:00:19 #1385 [Verbose] > │         else                                                                 │

00:00:19 #1386 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {4y} / acc:  │

00:00:19 #1387 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:19 #1388 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:19 #1389 [Verbose] > │             method5(v4, v1)                                                  │

00:00:19 #1390 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:19 #1391 [Verbose] > │         US2_0                                                                │

00:00:19 #1392 [Verbose] > │ and method1 (v0 : Mut0, v1 : Mut1, v2 : Mut1, v3 : Mut1, v4 : Mut2, v5 :     │

00:00:19 #1393 [Verbose] > │ UH1, v6 : int8) : int32 =                                                    │

00:00:19 #1394 [Verbose] > │     let v7 : bool = v6 < 5y                                                  │

00:00:19 #1395 [Verbose] > │     if v7 then                                                               │

00:00:19 #1396 [Verbose] > │         let v8 : uint8 = method2(v0, v1, v2, v3, v4)                         │

00:00:19 #1397 [Verbose] > │         let v9 : UH1 = UH1_0(v8, v5)                                         │

00:00:19 #1398 [Verbose] > │         let v10 : int8 = v6 + 1y                                             │

00:00:19 #1399 [Verbose] > │         method1(v0, v1, v2, v3, v4, v9, v10)                                 │

00:00:19 #1400 [Verbose] > │     else                                                                     │

00:00:19 #1401 [Verbose] > │         let v12 : int32 = 0                                                  │

00:00:19 #1402 [Verbose] > │         let v13 : US2 = method4(v5, v12)                                     │

00:00:19 #1403 [Verbose] > │         match v13 with                                                       │

00:00:19 #1404 [Verbose] > │         | US2_1(v14, v15) -> (* Some *)                                      │

00:00:19 #1405 [Verbose] > │             let v16 : bool = v14 <= 2000                                     │

00:00:19 #1406 [Verbose] > │             if v16 then                                                      │

00:00:19 #1407 [Verbose] > │                 v14                                                          │

00:00:19 #1408 [Verbose] > │             else                                                             │

00:00:19 #1409 [Verbose] > │                 let v17 : uint8 = method2(v0, v1, v2, v3, v4)                │

00:00:19 #1410 [Verbose] > │                 let v18 : UH1 = UH1_0(v17, v5)                               │

00:00:19 #1411 [Verbose] > │                 let v19 : int8 = v6 + 1y                                     │

00:00:19 #1412 [Verbose] > │                 method1(v0, v1, v2, v3, v4, v18, v19)                        │

00:00:19 #1413 [Verbose] > │         | _ ->                                                               │

00:00:19 #1414 [Verbose] > │             let v22 : uint8 = method2(v0, v1, v2, v3, v4)                    │

00:00:19 #1415 [Verbose] > │             let v23 : UH1 = UH1_0(v22, v5)                                   │

00:00:19 #1416 [Verbose] > │             let v24 : int8 = v6 + 1y                                         │

00:00:19 #1417 [Verbose] > │             method1(v0, v1, v2, v3, v4, v23, v24)                            │

00:00:19 #1418 [Verbose] > │ and method0 () : unit =                                                      │

00:00:19 #1419 [Verbose] > │     let v0 : string = $"create_sequential_roller ()"                         │

00:00:19 #1420 [Verbose] > │     System.Console.WriteLine v0                                              │

00:00:19 #1421 [Verbose] > │     let v1 : (unit -> UH0) = closure0()                                      │

00:00:19 #1422 [Verbose] > │     let v2 : US0 = US0_1(v1)                                                 │

00:00:19 #1423 [Verbose] > │     let v3 : Mut0 = {l0 = v2} : Mut0                                         │

00:00:19 #1424 [Verbose] > │     let v4 : Mut1 = {l0 = 0L} : Mut1                                         │

00:00:19 #1425 [Verbose] > │     let v5 : Mut1 = {l0 = 1L} : Mut1                                         │

00:00:19 #1426 [Verbose] > │     let v6 : Mut1 = {l0 = -1L} : Mut1                                        │

00:00:19 #1427 [Verbose] > │     let v7 : US1 = US1_0                                                     │

00:00:19 #1428 [Verbose] > │     let v8 : Mut2 = {l0 = v7} : Mut2                                         │

00:00:19 #1429 [Verbose] > │     let v9 : string = $"calculate_dice_count / max: {2000} / n: {5y} / p:    │

00:00:19 #1430 [Verbose] > │ {7776}"                                                                      │

00:00:19 #1431 [Verbose] > │     System.Console.WriteLine v9                                              │

00:00:19 #1432 [Verbose] > │     let v10 : UH1 = UH1_1                                                    │

00:00:19 #1433 [Verbose] > │     let v11 : int8 = 0y                                                      │

00:00:19 #1434 [Verbose] > │     let v12 : int32 = method1(v3, v4, v5, v6, v8, v10, v11)                  │

00:00:19 #1435 [Verbose] > │     let v13 : string = $"__expect / actual: %A{v12} / expected: %A{995}"     │

00:00:19 #1436 [Verbose] > │     let v14 : bool = v12 = 995                                               │

00:00:19 #1437 [Verbose] > │     let v15 : bool = v14 = false                                             │

00:00:19 #1438 [Verbose] > │     if v15 then                                                              │

00:00:19 #1439 [Verbose] > │         failwith<unit> v13                                                   │

00:00:19 #1440 [Verbose] > │ method0()                                                                    │

00:00:19 #1441 [Verbose] > │                                                                              │

00:00:19 #1442 [Verbose] > │ create_sequential_roller ()                                                  │

00:00:19 #1443 [Verbose] > │ calculate_dice_count / max: 2000 / n: 5 / p: 7776                            │

00:00:19 #1444 [Verbose] > │ create_sequential_roller / roll / current_index: 0 / acc: 1 / len: -1 /      │

00:00:19 #1445 [Verbose] > │ last_item: US1_0                                                             │

00:00:19 #1446 [Verbose] > │ create_sequential_roller / roll / current_index: 1 / acc: 1 / len: -1 /      │

00:00:19 #1447 [Verbose] > │ last_item: US1_1 5uy                                                         │

00:00:19 #1448 [Verbose] > │ create_sequential_roller / roll / current_index: 2 / acc: 1 / len: -1 /      │

00:00:19 #1449 [Verbose] > │ last_item: US1_1 4uy                                                         │

00:00:19 #1450 [Verbose] > │ create_sequential_roller / roll / current_index: 3 / acc: 1 / len: -1 /      │

00:00:19 #1451 [Verbose] > │ last_item: US1_1 4uy                                                         │

00:00:19 #1452 [Verbose] > │ create_sequential_roller / roll / current_index: 4 / acc: 1 / len: -1 /      │

00:00:19 #1453 [Verbose] > │ last_item: US1_1 5uy                                                         │

00:00:19 #1454 [Verbose] > │ accumulate_dice_rolls / power: 4 / acc: 0 / roll: 1                          │

00:00:19 #1455 [Verbose] > │ accumulate_dice_rolls / power: 3 / acc: 0 / roll: 5 / value: 864             │

00:00:19 #1456 [Verbose] > │ accumulate_dice_rolls / power: 2 / acc: 864 / roll: 4 / value: 108           │

00:00:19 #1457 [Verbose] > │ accumulate_dice_rolls / power: 1 / acc: 972 / roll: 4 / value: 18            │

00:00:19 #1458 [Verbose] > │ accumulate_dice_rolls / power: 0 / acc: 990 / roll: 5 / value: 4             │

00:00:19 #1459 [Verbose] > │ accumulate_dice_rolls / power: -1 / acc: 994                                 │

00:00:19 #1460 [Verbose] > │                                                                              │

00:00:19 #1461 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:19 #1462 [Verbose] >

00:00:19 #1463 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:19 #1464 [Verbose] > // // test

00:00:19 #1465 [Verbose] >

00:00:19 #1466 [Verbose] > inl sequential_roll = create_sequential_roller (Some console.write_line) [[ 5;

00:00:19 #1467 [Verbose] > 4; 4; 5; 2 ]]

00:00:19 #1468 [Verbose] >

00:00:19 #1469 [Verbose] > roll_progressively (Some console.write_line) sequential_roll false 2000i32

00:00:19 #1470 [Verbose] > |> _equal 1678

00:00:20 #1471 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4730-3008-3bdd4070126c\main.spi

00:00:20 #1472 [Verbose] >

00:00:20 #1473 [Verbose] > ╭─[ 786.08ms - stdout ]────────────────────────────────────────────────────────╮

00:00:20 #1474 [Verbose] > │ type UH0 =                                                                   │

00:00:20 #1475 [Verbose] > │     | UH0_0 of uint8 * (unit -> UH0)                                         │

00:00:20 #1476 [Verbose] > │     | UH0_1                                                                  │

00:00:20 #1477 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:20 #1478 [Verbose] > │     | US0_0 of f0_0 : UH0                                                    │

00:00:20 #1479 [Verbose] > │     | US0_1 of f1_0 : (unit -> UH0)                                          │

00:00:20 #1480 [Verbose] > │ and Mut0 = {mutable l0 : US0}                                                │

00:00:20 #1481 [Verbose] > │ and Mut1 = {mutable l0 : int64}                                              │

00:00:20 #1482 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:20 #1483 [Verbose] > │     | US1_0                                                                  │

00:00:20 #1484 [Verbose] > │     | US1_1 of f1_0 : uint8                                                  │

00:00:20 #1485 [Verbose] > │ and Mut2 = {mutable l0 : US1}                                                │

00:00:20 #1486 [Verbose] > │ and UH1 =                                                                    │

00:00:20 #1487 [Verbose] > │     | UH1_0 of uint8 * UH1                                                   │

00:00:20 #1488 [Verbose] > │     | UH1_1                                                                  │

00:00:20 #1489 [Verbose] > │ and [<Struct>] US2 =                                                         │

00:00:20 #1490 [Verbose] > │     | US2_0                                                                  │

00:00:20 #1491 [Verbose] > │     | US2_1 of f1_0 : int32 * f1_1 : UH1                                     │

00:00:20 #1492 [Verbose] > │ let rec closure10 () () : UH0 =                                              │

00:00:20 #1493 [Verbose] > │     UH0_1                                                                    │

00:00:20 #1494 [Verbose] > │ and closure9 () () : UH0 =                                                   │

00:00:20 #1495 [Verbose] > │     let v0 : (unit -> UH0) = closure10()                                     │

00:00:20 #1496 [Verbose] > │     UH0_0(5uy, v0)                                                           │

00:00:20 #1497 [Verbose] > │ and closure8 () () : UH0 =                                                   │

00:00:20 #1498 [Verbose] > │     let v0 : (unit -> UH0) = closure9()                                      │

00:00:20 #1499 [Verbose] > │     UH0_0(4uy, v0)                                                           │

00:00:20 #1500 [Verbose] > │ and closure7 () () : UH0 =                                                   │

00:00:20 #1501 [Verbose] > │     let v0 : (unit -> UH0) = closure8()                                      │

00:00:20 #1502 [Verbose] > │     UH0_0(4uy, v0)                                                           │

00:00:20 #1503 [Verbose] > │ and closure6 () () : UH0 =                                                   │

00:00:20 #1504 [Verbose] > │     let v0 : (unit -> UH0) = closure7()                                      │

00:00:20 #1505 [Verbose] > │     UH0_0(5uy, v0)                                                           │

00:00:20 #1506 [Verbose] > │ and closure5 () () : UH0 =                                                   │

00:00:20 #1507 [Verbose] > │     let v0 : (unit -> UH0) = closure6()                                      │

00:00:20 #1508 [Verbose] > │     UH0_0(2uy, v0)                                                           │

00:00:20 #1509 [Verbose] > │ and closure4 () () : UH0 =                                                   │

00:00:20 #1510 [Verbose] > │     let v0 : (unit -> UH0) = closure5()                                      │

00:00:20 #1511 [Verbose] > │     UH0_0(2uy, v0)                                                           │

00:00:20 #1512 [Verbose] > │ and closure3 () () : UH0 =                                                   │

00:00:20 #1513 [Verbose] > │     let v0 : (unit -> UH0) = closure4()                                      │

00:00:20 #1514 [Verbose] > │     UH0_0(5uy, v0)                                                           │

00:00:20 #1515 [Verbose] > │ and closure2 () () : UH0 =                                                   │

00:00:20 #1516 [Verbose] > │     let v0 : (unit -> UH0) = closure3()                                      │

00:00:20 #1517 [Verbose] > │     UH0_0(4uy, v0)                                                           │

00:00:20 #1518 [Verbose] > │ and closure1 () () : UH0 =                                                   │

00:00:20 #1519 [Verbose] > │     let v0 : (unit -> UH0) = closure2()                                      │

00:00:20 #1520 [Verbose] > │     UH0_0(4uy, v0)                                                           │

00:00:20 #1521 [Verbose] > │ and closure0 () () : UH0 =                                                   │

00:00:20 #1522 [Verbose] > │     let v0 : (unit -> UH0) = closure1()                                      │

00:00:20 #1523 [Verbose] > │     UH0_0(5uy, v0)                                                           │

00:00:20 #1524 [Verbose] > │ and closure11 (v0 : Mut0) () : UH0 =                                         │

00:00:20 #1525 [Verbose] > │     let v1 : US0 = v0.l0                                                     │

00:00:20 #1526 [Verbose] > │     match v1 with                                                            │

00:00:20 #1527 [Verbose] > │     | US0_0(v2) -> (* Computed *)                                            │

00:00:20 #1528 [Verbose] > │         v2                                                                   │

00:00:20 #1529 [Verbose] > │     | US0_1(v3) -> (* NotComputed *)                                         │

00:00:20 #1530 [Verbose] > │         let v4 : UH0 = v3 ()                                                 │

00:00:20 #1531 [Verbose] > │         let v13 : UH0 =                                                      │

00:00:20 #1532 [Verbose] > │             match v4 with                                                    │

00:00:20 #1533 [Verbose] > │             | UH0_0(v6, v7) -> (* StreamCons *)                              │

00:00:20 #1534 [Verbose] > │                 let v8 : US0 = US0_1(v7)                                     │

00:00:20 #1535 [Verbose] > │                 let v9 : Mut0 = {l0 = v8} : Mut0                             │

00:00:20 #1536 [Verbose] > │                 let v10 : (unit -> UH0) = closure11(v9)                      │

00:00:20 #1537 [Verbose] > │                 UH0_0(v6, v10)                                               │

00:00:20 #1538 [Verbose] > │             | UH0_1 -> (* StreamNil *)                                       │

00:00:20 #1539 [Verbose] > │                 UH0_1                                                        │

00:00:20 #1540 [Verbose] > │         let v14 : US0 = US0_0(v13)                                           │

00:00:20 #1541 [Verbose] > │         v0.l0 <- v14                                                         │

00:00:20 #1542 [Verbose] > │         v13                                                                  │

00:00:20 #1543 [Verbose] > │ and method3 (v0 : int64, v1 : UH0) : US1 =                                   │

00:00:20 #1544 [Verbose] > │     match v1 with                                                            │

00:00:20 #1545 [Verbose] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

00:00:20 #1546 [Verbose] > │         let v4 : bool = v0 <= 0L                                             │

00:00:20 #1547 [Verbose] > │         if v4 then                                                           │

00:00:20 #1548 [Verbose] > │             US1_1(v2)                                                        │

00:00:20 #1549 [Verbose] > │         else                                                                 │

00:00:20 #1550 [Verbose] > │             let v6 : int64 = v0 - 1L                                         │

00:00:20 #1551 [Verbose] > │             let v7 : UH0 = v3 ()                                             │

00:00:20 #1552 [Verbose] > │             method3(v6, v7)                                                  │

00:00:20 #1553 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:20 #1554 [Verbose] > │         US1_0                                                                │

00:00:20 #1555 [Verbose] > │ and method2 (v0 : Mut0, v1 : Mut1, v2 : Mut1, v3 : Mut1, v4 : Mut2) : uint8  │

00:00:20 #1556 [Verbose] > │ =                                                                            │

00:00:20 #1557 [Verbose] > │     let v5 : int64 = v1.l0                                                   │

00:00:20 #1558 [Verbose] > │     let v6 : int64 = v2.l0                                                   │

00:00:20 #1559 [Verbose] > │     let v7 : int64 = v3.l0                                                   │

00:00:20 #1560 [Verbose] > │     let v8 : US1 = v4.l0                                                     │

00:00:20 #1561 [Verbose] > │     let v9 : string = $"create_sequential_roller / roll / current_index:     │

00:00:20 #1562 [Verbose] > │ {v5} / acc: {v6} / len: {v7} / last_item: %A{v8}"                            │

00:00:20 #1563 [Verbose] > │     System.Console.WriteLine v9                                              │

00:00:20 #1564 [Verbose] > │     let v10 : US0 = v0.l0                                                    │

00:00:20 #1565 [Verbose] > │     let v25 : UH0 =                                                          │

00:00:20 #1566 [Verbose] > │         match v10 with                                                       │

00:00:20 #1567 [Verbose] > │         | US0_0(v11) -> (* Computed *)                                       │

00:00:20 #1568 [Verbose] > │             v11                                                              │

00:00:20 #1569 [Verbose] > │         | US0_1(v12) -> (* NotComputed *)                                    │

00:00:20 #1570 [Verbose] > │             let v13 : UH0 = v12 ()                                           │

00:00:20 #1571 [Verbose] > │             let v22 : UH0 =                                                  │

00:00:20 #1572 [Verbose] > │                 match v13 with                                               │

00:00:20 #1573 [Verbose] > │                 | UH0_0(v15, v16) -> (* StreamCons *)                        │

00:00:20 #1574 [Verbose] > │                     let v17 : US0 = US0_1(v16)                               │

00:00:20 #1575 [Verbose] > │                     let v18 : Mut0 = {l0 = v17} : Mut0                       │

00:00:20 #1576 [Verbose] > │                     let v19 : (unit -> UH0) = closure11(v18)                 │

00:00:20 #1577 [Verbose] > │                     UH0_0(v15, v19)                                          │

00:00:20 #1578 [Verbose] > │                 | UH0_1 -> (* StreamNil *)                                   │

00:00:20 #1579 [Verbose] > │                     UH0_1                                                    │

00:00:20 #1580 [Verbose] > │             let v23 : US0 = US0_0(v22)                                       │

00:00:20 #1581 [Verbose] > │             v0.l0 <- v23                                                     │

00:00:20 #1582 [Verbose] > │             v22                                                              │

00:00:20 #1583 [Verbose] > │     let v26 : int64 = v1.l0                                                  │

00:00:20 #1584 [Verbose] > │     let v27 : US1 = method3(v26, v25)                                        │

00:00:20 #1585 [Verbose] > │     match v27 with                                                           │

00:00:20 #1586 [Verbose] > │     | US1_0 -> (* None *)                                                    │

00:00:20 #1587 [Verbose] > │         let v32 : string = $"create_sequential_roller / roll / None"         │

00:00:20 #1588 [Verbose] > │         System.Console.WriteLine v32                                         │

00:00:20 #1589 [Verbose] > │         let v33 : int64 = v3.l0                                              │

00:00:20 #1590 [Verbose] > │         let v34 : bool = v33 = -1L                                           │

00:00:20 #1591 [Verbose] > │         if v34 then                                                          │

00:00:20 #1592 [Verbose] > │             let v35 : int64 = v1.l0                                          │

00:00:20 #1593 [Verbose] > │             v3.l0 <- v35                                                     │

00:00:20 #1594 [Verbose] > │             ()                                                               │

00:00:20 #1595 [Verbose] > │         let v36 : int64 = v2.l0                                              │

00:00:20 #1596 [Verbose] > │         let v37 : int64 = v3.l0                                              │

00:00:20 #1597 [Verbose] > │         let v38 : bool = v36 >= v37                                          │

00:00:20 #1598 [Verbose] > │         let v41 : int64 =                                                    │

00:00:20 #1599 [Verbose] > │             if v38 then                                                      │

00:00:20 #1600 [Verbose] > │                 1L                                                           │

00:00:20 #1601 [Verbose] > │             else                                                             │

00:00:20 #1602 [Verbose] > │                 let v39 : int64 = v2.l0                                      │

00:00:20 #1603 [Verbose] > │                 let v40 : int64 = v39 + 1L                                   │

00:00:20 #1604 [Verbose] > │                 v40                                                          │

00:00:20 #1605 [Verbose] > │         v2.l0 <- v41                                                         │

00:00:20 #1606 [Verbose] > │         let v42 : int64 = v2.l0                                              │

00:00:20 #1607 [Verbose] > │         let v43 : int64 = v42 - 1L                                           │

00:00:20 #1608 [Verbose] > │         v1.l0 <- v43                                                         │

00:00:20 #1609 [Verbose] > │         let v44 : US1 = US1_0                                                │

00:00:20 #1610 [Verbose] > │         v4.l0 <- v44                                                         │

00:00:20 #1611 [Verbose] > │         method2(v0, v1, v2, v3, v4)                                          │

00:00:20 #1612 [Verbose] > │     | US1_1(v28) -> (* Some *)                                               │

00:00:20 #1613 [Verbose] > │         let v29 : int64 = v1.l0                                              │

00:00:20 #1614 [Verbose] > │         let v30 : int64 = v29 + 1L                                           │

00:00:20 #1615 [Verbose] > │         v1.l0 <- v30                                                         │

00:00:20 #1616 [Verbose] > │         let v31 : US1 = US1_1(v28)                                           │

00:00:20 #1617 [Verbose] > │         v4.l0 <- v31                                                         │

00:00:20 #1618 [Verbose] > │         v28                                                                  │

00:00:20 #1619 [Verbose] > │ and method9 (v0 : UH1, v1 : int32) : US2 =                                   │

00:00:20 #1620 [Verbose] > │     let v2 : string = $"accumulate_dice_rolls / power: {-1y} / acc: {v1}"    │

00:00:20 #1621 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:20 #1622 [Verbose] > │     let v3 : int32 = v1 + 1                                                  │

00:00:20 #1623 [Verbose] > │     US2_1(v3, v0)                                                            │

00:00:20 #1624 [Verbose] > │ and method8 (v0 : UH1, v1 : int32) : US2 =                                   │

00:00:20 #1625 [Verbose] > │     match v0 with                                                            │

00:00:20 #1626 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:20 #1627 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:20 #1628 [Verbose] > │         if v5 then                                                           │

00:00:20 #1629 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:20 #1630 [Verbose] > │             let v7 : int32 = int32 v6                                        │

00:00:20 #1631 [Verbose] > │             let v8 : string = $"accumulate_dice_rolls / power: {0y} / acc:   │

00:00:20 #1632 [Verbose] > │ {v1} / roll: {v3} / value: {v7}"                                             │

00:00:20 #1633 [Verbose] > │             System.Console.WriteLine v8                                      │

00:00:20 #1634 [Verbose] > │             let v9 : int32 = v1 + v7                                         │

00:00:20 #1635 [Verbose] > │             method9(v4, v9)                                                  │

00:00:20 #1636 [Verbose] > │         else                                                                 │

00:00:20 #1637 [Verbose] > │             let v11 : string = $"accumulate_dice_rolls / power: {0y} / acc:  │

00:00:20 #1638 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:20 #1639 [Verbose] > │             System.Console.WriteLine v11                                     │

00:00:20 #1640 [Verbose] > │             method9(v4, v1)                                                  │

00:00:20 #1641 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:20 #1642 [Verbose] > │         US2_0                                                                │

00:00:20 #1643 [Verbose] > │ and method7 (v0 : UH1, v1 : int32) : US2 =                                   │

00:00:20 #1644 [Verbose] > │     match v0 with                                                            │

00:00:20 #1645 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:20 #1646 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:20 #1647 [Verbose] > │         if v5 then                                                           │

00:00:20 #1648 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:20 #1649 [Verbose] > │             let v7 : int32 = int32 v6                                        │

00:00:20 #1650 [Verbose] > │             let v8 : int32 = v7 * 6                                          │

00:00:20 #1651 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {1y} / acc:   │

00:00:20 #1652 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:20 #1653 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:20 #1654 [Verbose] > │             let v10 : int32 = v1 + v8                                        │

00:00:20 #1655 [Verbose] > │             method8(v4, v10)                                                 │

00:00:20 #1656 [Verbose] > │         else                                                                 │

00:00:20 #1657 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {1y} / acc:  │

00:00:20 #1658 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:20 #1659 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:20 #1660 [Verbose] > │             method8(v4, v1)                                                  │

00:00:20 #1661 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:20 #1662 [Verbose] > │         US2_0                                                                │

00:00:20 #1663 [Verbose] > │ and method6 (v0 : UH1, v1 : int32) : US2 =                                   │

00:00:20 #1664 [Verbose] > │     match v0 with                                                            │

00:00:20 #1665 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:20 #1666 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:20 #1667 [Verbose] > │         if v5 then                                                           │

00:00:20 #1668 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:20 #1669 [Verbose] > │             let v7 : int32 = int32 v6                                        │

00:00:20 #1670 [Verbose] > │             let v8 : int32 = v7 * 36                                         │

00:00:20 #1671 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {2y} / acc:   │

00:00:20 #1672 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:20 #1673 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:20 #1674 [Verbose] > │             let v10 : int32 = v1 + v8                                        │

00:00:20 #1675 [Verbose] > │             method7(v4, v10)                                                 │

00:00:20 #1676 [Verbose] > │         else                                                                 │

00:00:20 #1677 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {2y} / acc:  │

00:00:20 #1678 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:20 #1679 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:20 #1680 [Verbose] > │             method7(v4, v1)                                                  │

00:00:20 #1681 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:20 #1682 [Verbose] > │         US2_0                                                                │

00:00:20 #1683 [Verbose] > │ and method5 (v0 : UH1, v1 : int32) : US2 =                                   │

00:00:20 #1684 [Verbose] > │     match v0 with                                                            │

00:00:20 #1685 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:20 #1686 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:20 #1687 [Verbose] > │         if v5 then                                                           │

00:00:20 #1688 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:20 #1689 [Verbose] > │             let v7 : int32 = int32 v6                                        │

00:00:20 #1690 [Verbose] > │             let v8 : int32 = v7 * 216                                        │

00:00:20 #1691 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {3y} / acc:   │

00:00:20 #1692 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:20 #1693 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:20 #1694 [Verbose] > │             let v10 : int32 = v1 + v8                                        │

00:00:20 #1695 [Verbose] > │             method6(v4, v10)                                                 │

00:00:20 #1696 [Verbose] > │         else                                                                 │

00:00:20 #1697 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {3y} / acc:  │

00:00:20 #1698 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:20 #1699 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:20 #1700 [Verbose] > │             method6(v4, v1)                                                  │

00:00:20 #1701 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:20 #1702 [Verbose] > │         US2_0                                                                │

00:00:20 #1703 [Verbose] > │ and method4 (v0 : UH1, v1 : int32) : US2 =                                   │

00:00:20 #1704 [Verbose] > │     match v0 with                                                            │

00:00:20 #1705 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:20 #1706 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:20 #1707 [Verbose] > │         if v5 then                                                           │

00:00:20 #1708 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:20 #1709 [Verbose] > │             let v7 : int32 = int32 v6                                        │

00:00:20 #1710 [Verbose] > │             let v8 : int32 = v7 * 1296                                       │

00:00:20 #1711 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {4y} / acc:   │

00:00:20 #1712 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:20 #1713 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:20 #1714 [Verbose] > │             let v10 : int32 = v1 + v8                                        │

00:00:20 #1715 [Verbose] > │             method5(v4, v10)                                                 │

00:00:20 #1716 [Verbose] > │         else                                                                 │

00:00:20 #1717 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {4y} / acc:  │

00:00:20 #1718 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:20 #1719 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:20 #1720 [Verbose] > │             method5(v4, v1)                                                  │

00:00:20 #1721 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:20 #1722 [Verbose] > │         US2_0                                                                │

00:00:20 #1723 [Verbose] > │ and method1 (v0 : Mut0, v1 : Mut1, v2 : Mut1, v3 : Mut1, v4 : Mut2, v5 :     │

00:00:20 #1724 [Verbose] > │ UH1, v6 : int8) : int32 =                                                    │

00:00:20 #1725 [Verbose] > │     let v7 : bool = v6 < 5y                                                  │

00:00:20 #1726 [Verbose] > │     if v7 then                                                               │

00:00:20 #1727 [Verbose] > │         let v8 : uint8 = method2(v0, v1, v2, v3, v4)                         │

00:00:20 #1728 [Verbose] > │         let v9 : UH1 = UH1_0(v8, v5)                                         │

00:00:20 #1729 [Verbose] > │         let v10 : int8 = v6 + 1y                                             │

00:00:20 #1730 [Verbose] > │         method1(v0, v1, v2, v3, v4, v9, v10)                                 │

00:00:20 #1731 [Verbose] > │     else                                                                     │

00:00:20 #1732 [Verbose] > │         let v12 : int32 = 0                                                  │

00:00:20 #1733 [Verbose] > │         let v13 : US2 = method4(v5, v12)                                     │

00:00:20 #1734 [Verbose] > │         match v13 with                                                       │

00:00:20 #1735 [Verbose] > │         | US2_1(v14, v15) -> (* Some *)                                      │

00:00:20 #1736 [Verbose] > │             let v16 : bool = v14 <= 2000                                     │

00:00:20 #1737 [Verbose] > │             if v16 then                                                      │

00:00:20 #1738 [Verbose] > │                 v14                                                          │

00:00:20 #1739 [Verbose] > │             else                                                             │

00:00:20 #1740 [Verbose] > │                 let v17 : uint8 = method2(v0, v1, v2, v3, v4)                │

00:00:20 #1741 [Verbose] > │                 let v18 : UH1 = UH1_0(v17, v5)                               │

00:00:20 #1742 [Verbose] > │                 let v19 : int8 = v6 + 1y                                     │

00:00:20 #1743 [Verbose] > │                 method1(v0, v1, v2, v3, v4, v18, v19)                        │

00:00:20 #1744 [Verbose] > │         | _ ->                                                               │

00:00:20 #1745 [Verbose] > │             let v22 : uint8 = method2(v0, v1, v2, v3, v4)                    │

00:00:20 #1746 [Verbose] > │             let v23 : UH1 = UH1_0(v22, v5)                                   │

00:00:20 #1747 [Verbose] > │             let v24 : int8 = v6 + 1y                                         │

00:00:20 #1748 [Verbose] > │             method1(v0, v1, v2, v3, v4, v23, v24)                            │

00:00:20 #1749 [Verbose] > │ and method0 () : unit =                                                      │

00:00:20 #1750 [Verbose] > │     let v0 : string = $"create_sequential_roller ()"                         │

00:00:20 #1751 [Verbose] > │     System.Console.WriteLine v0                                              │

00:00:20 #1752 [Verbose] > │     let v1 : (unit -> UH0) = closure0()                                      │

00:00:20 #1753 [Verbose] > │     let v2 : US0 = US0_1(v1)                                                 │

00:00:20 #1754 [Verbose] > │     let v3 : Mut0 = {l0 = v2} : Mut0                                         │

00:00:20 #1755 [Verbose] > │     let v4 : Mut1 = {l0 = 0L} : Mut1                                         │

00:00:20 #1756 [Verbose] > │     let v5 : Mut1 = {l0 = 1L} : Mut1                                         │

00:00:20 #1757 [Verbose] > │     let v6 : Mut1 = {l0 = -1L} : Mut1                                        │

00:00:20 #1758 [Verbose] > │     let v7 : US1 = US1_0                                                     │

00:00:20 #1759 [Verbose] > │     let v8 : Mut2 = {l0 = v7} : Mut2                                         │

00:00:20 #1760 [Verbose] > │     let v9 : string = $"calculate_dice_count / max: {2000} / n: {5y} / p:    │

00:00:20 #1761 [Verbose] > │ {7776}"                                                                      │

00:00:20 #1762 [Verbose] > │     System.Console.WriteLine v9                                              │

00:00:20 #1763 [Verbose] > │     let v10 : UH1 = UH1_1                                                    │

00:00:20 #1764 [Verbose] > │     let v11 : int8 = 0y                                                      │

00:00:20 #1765 [Verbose] > │     let v12 : int32 = method1(v3, v4, v5, v6, v8, v10, v11)                  │

00:00:20 #1766 [Verbose] > │     let v13 : string = $"__expect / actual: %A{v12} / expected: %A{1678}"    │

00:00:20 #1767 [Verbose] > │     let v14 : bool = v12 = 1678                                              │

00:00:20 #1768 [Verbose] > │     let v15 : bool = v14 = false                                             │

00:00:20 #1769 [Verbose] > │     if v15 then                                                              │

00:00:20 #1770 [Verbose] > │         failwith<unit> v13                                                   │

00:00:20 #1771 [Verbose] > │ method0()                                                                    │

00:00:20 #1772 [Verbose] > │                                                                              │

00:00:20 #1773 [Verbose] > │ create_sequential_roller ()                                                  │

00:00:20 #1774 [Verbose] > │ calculate_dice_count / max: 2000 / n: 5 / p: 7776                            │

00:00:20 #1775 [Verbose] > │ create_sequential_roller / roll / current_index: 0 / acc: 1 / len: -1 /      │

00:00:20 #1776 [Verbose] > │ last_item: US1_0                                                             │

00:00:20 #1777 [Verbose] > │ create_sequential_roller / roll / current_index: 1 / acc: 1 / len: -1 /      │

00:00:20 #1778 [Verbose] > │ last_item: US1_1 5uy                                                         │

00:00:20 #1779 [Verbose] > │ create_sequential_roller / roll / current_index: 2 / acc: 1 / len: -1 /      │

00:00:20 #1780 [Verbose] > │ last_item: US1_1 4uy                                                         │

00:00:20 #1781 [Verbose] > │ create_sequential_roller / roll / current_index: 3 / acc: 1 / len: -1 /      │

00:00:20 #1782 [Verbose] > │ last_item: US1_1 4uy                                                         │

00:00:20 #1783 [Verbose] > │ create_sequential_roller / roll / current_index: 4 / acc: 1 / len: -1 /      │

00:00:20 #1784 [Verbose] > │ last_item: US1_1 5uy                                                         │

00:00:20 #1785 [Verbose] > │ accumulate_dice_rolls / power: 4 / acc: 0 / roll: 2 / value: 1296            │

00:00:20 #1786 [Verbose] > │ accumulate_dice_rolls / power: 3 / acc: 1296 / roll: 5 / value: 864          │

00:00:20 #1787 [Verbose] > │ accumulate_dice_rolls / power: 2 / acc: 2160 / roll: 4 / value: 108          │

00:00:20 #1788 [Verbose] > │ accumulate_dice_rolls / power: 1 / acc: 2268 / roll: 4 / value: 18           │

00:00:20 #1789 [Verbose] > │ accumulate_dice_rolls / power: 0 / acc: 2286 / roll: 5 / value: 4            │

00:00:20 #1790 [Verbose] > │ accumulate_dice_rolls / power: -1 / acc: 2290                                │

00:00:20 #1791 [Verbose] > │ create_sequential_roller / roll / current_index: 5 / acc: 1 / len: -1 /      │

00:00:20 #1792 [Verbose] > │ last_item: US1_1 2uy                                                         │

00:00:20 #1793 [Verbose] > │ accumulate_dice_rolls / power: 4 / acc: 0 / roll: 2 / value: 1296            │

00:00:20 #1794 [Verbose] > │ accumulate_dice_rolls / power: 3 / acc: 1296 / roll: 2 / value: 216          │

00:00:20 #1795 [Verbose] > │ accumulate_dice_rolls / power: 2 / acc: 1512 / roll: 5 / value: 144          │

00:00:20 #1796 [Verbose] > │ accumulate_dice_rolls / power: 1 / acc: 1656 / roll: 4 / value: 18           │

00:00:20 #1797 [Verbose] > │ accumulate_dice_rolls / power: 0 / acc: 1674 / roll: 4 / value: 3            │

00:00:20 #1798 [Verbose] > │ accumulate_dice_rolls / power: -1 / acc: 1677                                │

00:00:20 #1799 [Verbose] > │                                                                              │

00:00:20 #1800 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:20 #1801 [Verbose] >

00:00:20 #1802 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:20 #1803 [Verbose] > // // test

00:00:20 #1804 [Verbose] >

00:00:20 #1805 [Verbose] > join dyn listm'.init_series 1i32 10000 1

00:00:20 #1806 [Verbose] > |> listm.map (fun _ => roll_progressively None roll_dice false 10i32)

00:00:20 #1807 [Verbose] > |> listm'.group_by id

00:00:20 #1808 [Verbose] > |> listm.map (fun (k, v) => k, (listm.length v : i32))

00:00:20 #1809 [Verbose] > |> listm.toArray

00:00:20 #1810 [Verbose] > |> fun (ar : a i32 _) =>

00:00:20 #1811 [Verbose] >     $"!ar |> Array.sortBy (fun (struct (a, b)) -> a)" : a i32 $"struct (int32 *

00:00:20 #1812 [Verbose] > int32)"

00:00:21 #1813 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4827-2708-25576c398384\main.spi

00:00:22 #1814 [Verbose] >

00:00:22 #1815 [Verbose] > ╭─[ 1.08s - return value ]─────────────────────────────────────────────────────╮

00:00:22 #1816 [Verbose] > │ <table><thead><tr><th><i>index</i></th><th>value</th></tr></thead><tbody><tr │

00:00:22 #1817 [Verbose] > │ ><td>0</td><td><details class="dni-treeview"><summary><span                  │

00:00:22 #1818 [Verbose] > │ class="dni-code-hint"><code>(1,                                              │

00:00:22 #1819 [Verbose] > │ 255)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr>< │

00:00:22 #1820 [Verbose] > │ td>Item1</td><td><div                                                        │

00:00:22 #1821 [Verbose] > │ class="dni-plaintext"><pre>1</pre></div></td></tr><tr><td>Item2</td><td><div │

00:00:22 #1822 [Verbose] > │ class="dni-plaintext"><pre>255</pre></div></td></tr></tbody></table></div></ │

00:00:22 #1823 [Verbose] > │ details></td></tr><tr><td>1</td><td><details                                 │

00:00:22 #1824 [Verbose] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(2,          │

00:00:22 #1825 [Verbose] > │ 734)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr>< │

00:00:22 #1826 [Verbose] > │ td>Item1</td><td><div                                                        │

00:00:22 #1827 [Verbose] > │ class="dni-plaintext"><pre>2</pre></div></td></tr><tr><td>Item2</td><td><div │

00:00:22 #1828 [Verbose] > │ class="dni-plaintext"><pre>734</pre></div><...                               │

00:00:22 #1829 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #1830 [Verbose] >

00:00:22 #1831 [Verbose] > ╭─[ 1.11s - stdout ]───────────────────────────────────────────────────────────╮

00:00:22 #1832 [Verbose] > │ type UH0 =                                                                   │

00:00:22 #1833 [Verbose] > │     | UH0_0 of int32 * UH0                                                   │

00:00:22 #1834 [Verbose] > │     | UH0_1                                                                  │

00:00:22 #1835 [Verbose] > │ and UH1 =                                                                    │

00:00:22 #1836 [Verbose] > │     | UH1_0 of uint8 * UH1                                                   │

00:00:22 #1837 [Verbose] > │     | UH1_1                                                                  │

00:00:22 #1838 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:22 #1839 [Verbose] > │     | US0_0                                                                  │

00:00:22 #1840 [Verbose] > │     | US0_1 of f1_0 : int32 * f1_1 : UH1                                     │

00:00:22 #1841 [Verbose] > │ and UH2 =                                                                    │

00:00:22 #1842 [Verbose] > │     | UH2_0 of int32 * UH0 * UH2                                             │

00:00:22 #1843 [Verbose] > │     | UH2_1                                                                  │

00:00:22 #1844 [Verbose] > │ and UH3 =                                                                    │

00:00:22 #1845 [Verbose] > │     | UH3_0 of int32 * int32 * UH3                                           │

00:00:22 #1846 [Verbose] > │     | UH3_1                                                                  │

00:00:22 #1847 [Verbose] > │ let rec method2 (v0 : float, v1 : int32, v2 : int32, v3 : float) : UH0 =     │

00:00:22 #1848 [Verbose] > │     let v4 : bool = v3 < v0                                                  │

00:00:22 #1849 [Verbose] > │     if v4 then                                                               │

00:00:22 #1850 [Verbose] > │         let v5 : int32 = int32 v3                                            │

00:00:22 #1851 [Verbose] > │         let v6 : int32 = v1 * v5                                             │

00:00:22 #1852 [Verbose] > │         let v7 : int32 = v2 + v6                                             │

00:00:22 #1853 [Verbose] > │         let v8 : float = v3 + 1.0                                            │

00:00:22 #1854 [Verbose] > │         let v9 : UH0 = method2(v0, v1, v2, v8)                               │

00:00:22 #1855 [Verbose] > │         UH0_0(v7, v9)                                                        │

00:00:22 #1856 [Verbose] > │     else                                                                     │

00:00:22 #1857 [Verbose] > │         UH0_1                                                                │

00:00:22 #1858 [Verbose] > │ and closure2 (v0 : int32, v1 : int32) (v2 : int32) : UH0 =                   │

00:00:22 #1859 [Verbose] > │     let v3 : int32 = v1 - v0                                                 │

00:00:22 #1860 [Verbose] > │     let v4 : int32 = v3 / v2                                                 │

00:00:22 #1861 [Verbose] > │     let v5 : float = float v4                                                │

00:00:22 #1862 [Verbose] > │     let v6 : float = v5 + 1.0                                                │

00:00:22 #1863 [Verbose] > │     let v7 : float = 0.0                                                     │

00:00:22 #1864 [Verbose] > │     method2(v6, v2, v0, v7)                                                  │

00:00:22 #1865 [Verbose] > │ and closure1 (v0 : int32) (v1 : int32) : (int32 -> UH0) =                    │

00:00:22 #1866 [Verbose] > │     closure2(v0, v1)                                                         │

00:00:22 #1867 [Verbose] > │ and closure0 () (v0 : int32) : (int32 -> (int32 -> UH0)) =                   │

00:00:22 #1868 [Verbose] > │     closure1(v0)                                                             │

00:00:22 #1869 [Verbose] > │ and method1 () : UH0 =                                                       │

00:00:22 #1870 [Verbose] > │     let v0 : (int32 -> (int32 -> (int32 -> UH0))) = closure0()               │

00:00:22 #1871 [Verbose] > │     let v1 : (int32 -> (int32 -> UH0)) = v0 1                                │

00:00:22 #1872 [Verbose] > │     let v2 : (int32 -> UH0) = v1 10000                                       │

00:00:22 #1873 [Verbose] > │     v2 1                                                                     │

00:00:22 #1874 [Verbose] > │ and method7 (v0 : UH1, v1 : int32) : US0 =                                   │

00:00:22 #1875 [Verbose] > │     let v2 : string = $"accumulate_dice_rolls / power: {-1y} / acc: {v1}"    │

00:00:22 #1876 [Verbose] > │     let v3 : int32 = v1 + 1                                                  │

00:00:22 #1877 [Verbose] > │     US0_1(v3, v0)                                                            │

00:00:22 #1878 [Verbose] > │ and method6 (v0 : UH1, v1 : int32) : US0 =                                   │

00:00:22 #1879 [Verbose] > │     match v0 with                                                            │

00:00:22 #1880 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:22 #1881 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:22 #1882 [Verbose] > │         if v5 then                                                           │

00:00:22 #1883 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:22 #1884 [Verbose] > │             let v7 : int32 = int32 v6                                        │

00:00:22 #1885 [Verbose] > │             let v8 : string = $"accumulate_dice_rolls / power: {0y} / acc:   │

00:00:22 #1886 [Verbose] > │ {v1} / roll: {v3} / value: {v7}"                                             │

00:00:22 #1887 [Verbose] > │             let v9 : int32 = v1 + v7                                         │

00:00:22 #1888 [Verbose] > │             method7(v4, v9)                                                  │

00:00:22 #1889 [Verbose] > │         else                                                                 │

00:00:22 #1890 [Verbose] > │             let v11 : string = $"accumulate_dice_rolls / power: {0y} / acc:  │

00:00:22 #1891 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:22 #1892 [Verbose] > │             method7(v4, v1)                                                  │

00:00:22 #1893 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:22 #1894 [Verbose] > │         US0_0                                                                │

00:00:22 #1895 [Verbose] > │ and method5 (v0 : UH1, v1 : int32) : US0 =                                   │

00:00:22 #1896 [Verbose] > │     match v0 with                                                            │

00:00:22 #1897 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:22 #1898 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:22 #1899 [Verbose] > │         if v5 then                                                           │

00:00:22 #1900 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:22 #1901 [Verbose] > │             let v7 : int32 = int32 v6                                        │

00:00:22 #1902 [Verbose] > │             let v8 : int32 = v7 * 6                                          │

00:00:22 #1903 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {1y} / acc:   │

00:00:22 #1904 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:22 #1905 [Verbose] > │             let v10 : int32 = v1 + v8                                        │

00:00:22 #1906 [Verbose] > │             method6(v4, v10)                                                 │

00:00:22 #1907 [Verbose] > │         else                                                                 │

00:00:22 #1908 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {1y} / acc:  │

00:00:22 #1909 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:22 #1910 [Verbose] > │             method6(v4, v1)                                                  │

00:00:22 #1911 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:22 #1912 [Verbose] > │         US0_0                                                                │

00:00:22 #1913 [Verbose] > │ and method4 (v0 : UH1, v1 : int8) : int32 =                                  │

00:00:22 #1914 [Verbose] > │     let v2 : bool = v1 < 2y                                                  │

00:00:22 #1915 [Verbose] > │     if v2 then                                                               │

00:00:22 #1916 [Verbose] > │         let mutable result = None                                            │

00:00:22 #1917 [Verbose] > │         #if FABLE_COMPILER_RUST                                              │

00:00:22 #1918 [Verbose] > │         #if !WASM                                                            │

00:00:22 #1919 [Verbose] > │         let v3 : string = "rand::Rng::gen_range(&mut rand::thread_rng(),     │

00:00:22 #1920 [Verbose] > │ 1..7)"                                                                       │

00:00:22 #1921 [Verbose] > │         let v4 : uint8 = Fable.Core.RustInterop.emitRustExpr () v3           │

00:00:22 #1922 [Verbose] > │         v4                                                                   │

00:00:22 #1923 [Verbose] > │         #else                                                                │

00:00:22 #1924 [Verbose] > │         let v5 : string = "1"                                                │

00:00:22 #1925 [Verbose] > │         let v6 : uint8 = Fable.Core.RustInterop.emitRustExpr () v5           │

00:00:22 #1926 [Verbose] > │         v6                                                                   │

00:00:22 #1927 [Verbose] > │         #endif                                                               │

00:00:22 #1928 [Verbose] > │         #else                                                                │

00:00:22 #1929 [Verbose] > │         let v7 : uint8 = System.Random().Next (1, 7) |> uint8                │

00:00:22 #1930 [Verbose] > │         v7                                                                   │

00:00:22 #1931 [Verbose] > │         #endif                                                               │

00:00:22 #1932 [Verbose] > │         |> fun x -> result <- Some x                                         │

00:00:22 #1933 [Verbose] > │         let v8 : uint8 = result |> Option.get                                │

00:00:22 #1934 [Verbose] > │         let v9 : UH1 = UH1_0(v8, v0)                                         │

00:00:22 #1935 [Verbose] > │         let v10 : int8 = v1 + 1y                                             │

00:00:22 #1936 [Verbose] > │         method4(v9, v10)                                                     │

00:00:22 #1937 [Verbose] > │     else                                                                     │

00:00:22 #1938 [Verbose] > │         let v12 : int32 = 0                                                  │

00:00:22 #1939 [Verbose] > │         let v13 : US0 = method5(v0, v12)                                     │

00:00:22 #1940 [Verbose] > │         match v13 with                                                       │

00:00:22 #1941 [Verbose] > │         | US0_1(v14, v15) -> (* Some *)                                      │

00:00:22 #1942 [Verbose] > │             let v16 : bool = v14 <= 10                                       │

00:00:22 #1943 [Verbose] > │             if v16 then                                                      │

00:00:22 #1944 [Verbose] > │                 v14                                                          │

00:00:22 #1945 [Verbose] > │             else                                                             │

00:00:22 #1946 [Verbose] > │                 let mutable result = None                                    │

00:00:22 #1947 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:22 #1948 [Verbose] > │                 #if !WASM                                                    │

00:00:22 #1949 [Verbose] > │                 let v17 : string = "rand::Rng::gen_range(&mut                │

00:00:22 #1950 [Verbose] > │ rand::thread_rng(), 1..7)"                                                   │

00:00:22 #1951 [Verbose] > │                 let v18 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:22 #1952 [Verbose] > │                 v18                                                          │

00:00:22 #1953 [Verbose] > │                 #else                                                        │

00:00:22 #1954 [Verbose] > │                 let v19 : string = "1"                                       │

00:00:22 #1955 [Verbose] > │                 let v20 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:22 #1956 [Verbose] > │                 v20                                                          │

00:00:22 #1957 [Verbose] > │                 #endif                                                       │

00:00:22 #1958 [Verbose] > │                 #else                                                        │

00:00:22 #1959 [Verbose] > │                 let v21 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:22 #1960 [Verbose] > │                 v21                                                          │

00:00:22 #1961 [Verbose] > │                 #endif                                                       │

00:00:22 #1962 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:22 #1963 [Verbose] > │                 let v22 : uint8 = result |> Option.get                       │

00:00:22 #1964 [Verbose] > │                 let v23 : UH1 = UH1_0(v22, v0)                               │

00:00:22 #1965 [Verbose] > │                 let v24 : int8 = v1 + 1y                                     │

00:00:22 #1966 [Verbose] > │                 method4(v23, v24)                                            │

00:00:22 #1967 [Verbose] > │         | _ ->                                                               │

00:00:22 #1968 [Verbose] > │             let mutable result = None                                        │

00:00:22 #1969 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:22 #1970 [Verbose] > │             #if !WASM                                                        │

00:00:22 #1971 [Verbose] > │             let v27 : string = "rand::Rng::gen_range(&mut                    │

00:00:22 #1972 [Verbose] > │ rand::thread_rng(), 1..7)"                                                   │

00:00:22 #1973 [Verbose] > │             let v28 : uint8 = Fable.Core.RustInterop.emitRustExpr () v27     │

00:00:22 #1974 [Verbose] > │             v28                                                              │

00:00:22 #1975 [Verbose] > │             #else                                                            │

00:00:22 #1976 [Verbose] > │             let v29 : string = "1"                                           │

00:00:22 #1977 [Verbose] > │             let v30 : uint8 = Fable.Core.RustInterop.emitRustExpr () v29     │

00:00:22 #1978 [Verbose] > │             v30                                                              │

00:00:22 #1979 [Verbose] > │             #endif                                                           │

00:00:22 #1980 [Verbose] > │             #else                                                            │

00:00:22 #1981 [Verbose] > │             let v31 : uint8 = System.Random().Next (1, 7) |> uint8           │

00:00:22 #1982 [Verbose] > │             v31                                                              │

00:00:22 #1983 [Verbose] > │             #endif                                                           │

00:00:22 #1984 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:22 #1985 [Verbose] > │             let v32 : uint8 = result |> Option.get                           │

00:00:22 #1986 [Verbose] > │             let v33 : UH1 = UH1_0(v32, v0)                                   │

00:00:22 #1987 [Verbose] > │             let v34 : int8 = v1 + 1y                                         │

00:00:22 #1988 [Verbose] > │             method4(v33, v34)                                                │

00:00:22 #1989 [Verbose] > │ and method3 (v0 : UH0, v1 : UH0) : UH0 =                                     │

00:00:22 #1990 [Verbose] > │     match v0 with                                                            │

00:00:22 #1991 [Verbose] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

00:00:22 #1992 [Verbose] > │         let v4 : UH0 = method3(v3, v1)                                       │

00:00:22 #1993 [Verbose] > │         let v5 : string = $"calculate_dice_count / max: {10} / n: {2y} / p:  │

00:00:22 #1994 [Verbose] > │ {36}"                                                                        │

00:00:22 #1995 [Verbose] > │         let v6 : UH1 = UH1_1                                                 │

00:00:22 #1996 [Verbose] > │         let v7 : int8 = 0y                                                   │

00:00:22 #1997 [Verbose] > │         let v8 : int32 = method4(v6, v7)                                     │

00:00:22 #1998 [Verbose] > │         UH0_0(v8, v4)                                                        │

00:00:22 #1999 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:22 #2000 [Verbose] > │         v1                                                                   │

00:00:22 #2001 [Verbose] > │ and method9 (v0 : int32, v1 : UH2, v2 : bool, v3 : UH2) : struct (bool *     │

00:00:22 #2002 [Verbose] > │ UH2) =                                                                       │

00:00:22 #2003 [Verbose] > │     match v1 with                                                            │

00:00:22 #2004 [Verbose] > │     | UH2_0(v4, v5, v6) -> (* Cons *)                                        │

00:00:22 #2005 [Verbose] > │         let v7 : bool = v4 = v0                                              │

00:00:22 #2006 [Verbose] > │         let struct (v11 : bool, v12 : UH2) =                                 │

00:00:22 #2007 [Verbose] > │             if v7 then                                                       │

00:00:22 #2008 [Verbose] > │                 let v8 : UH0 = UH0_0(v0, v5)                                 │

00:00:22 #2009 [Verbose] > │                 let v9 : UH2 = UH2_0(v4, v8, v3)                             │

00:00:22 #2010 [Verbose] > │                 struct (true, v9)                                            │

00:00:22 #2011 [Verbose] > │             else                                                             │

00:00:22 #2012 [Verbose] > │                 let v10 : UH2 = UH2_0(v4, v5, v3)                            │

00:00:22 #2013 [Verbose] > │                 struct (v2, v10)                                             │

00:00:22 #2014 [Verbose] > │         method9(v0, v6, v11, v12)                                            │

00:00:22 #2015 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:22 #2016 [Verbose] > │         struct (v2, v3)                                                      │

00:00:22 #2017 [Verbose] > │ and method8 (v0 : UH0, v1 : UH2) : UH2 =                                     │

00:00:22 #2018 [Verbose] > │     match v0 with                                                            │

00:00:22 #2019 [Verbose] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

00:00:22 #2020 [Verbose] > │         let v4 : UH2 = method8(v3, v1)                                       │

00:00:22 #2021 [Verbose] > │         let v5 : bool = false                                                │

00:00:22 #2022 [Verbose] > │         let v6 : UH2 = UH2_1                                                 │

00:00:22 #2023 [Verbose] > │         let struct (v7 : bool, v8 : UH2) = method9(v2, v4, v5, v6)           │

00:00:22 #2024 [Verbose] > │         if v7 then                                                           │

00:00:22 #2025 [Verbose] > │             v8                                                               │

00:00:22 #2026 [Verbose] > │         else                                                                 │

00:00:22 #2027 [Verbose] > │             let v9 : UH0 = UH0_1                                             │

00:00:22 #2028 [Verbose] > │             let v10 : UH0 = UH0_0(v2, v9)                                    │

00:00:22 #2029 [Verbose] > │             UH2_0(v2, v10, v8)                                               │

00:00:22 #2030 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:22 #2031 [Verbose] > │         v1                                                                   │

00:00:22 #2032 [Verbose] > │ and method11 (v0 : UH0, v1 : int32) : int32 =                                │

00:00:22 #2033 [Verbose] > │     match v0 with                                                            │

00:00:22 #2034 [Verbose] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

00:00:22 #2035 [Verbose] > │         let v4 : int32 = v1 + 1                                              │

00:00:22 #2036 [Verbose] > │         method11(v3, v4)                                                     │

00:00:22 #2037 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:22 #2038 [Verbose] > │         v1                                                                   │

00:00:22 #2039 [Verbose] > │ and method10 (v0 : UH2, v1 : UH3) : UH3 =                                    │

00:00:22 #2040 [Verbose] > │     match v0 with                                                            │

00:00:22 #2041 [Verbose] > │     | UH2_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:22 #2042 [Verbose] > │         let v5 : UH3 = method10(v4, v1)                                      │

00:00:22 #2043 [Verbose] > │         let v6 : int32 = 0                                                   │

00:00:22 #2044 [Verbose] > │         let v7 : int32 = method11(v3, v6)                                    │

00:00:22 #2045 [Verbose] > │         UH3_0(v2, v7, v5)                                                    │

00:00:22 #2046 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:00:22 #2047 [Verbose] > │         v1                                                                   │

00:00:22 #2048 [Verbose] > │ and method13 (v0 : UH3, v1 : int32) : int32 =                                │

00:00:22 #2049 [Verbose] > │     match v0 with                                                            │

00:00:22 #2050 [Verbose] > │     | UH3_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:22 #2051 [Verbose] > │         let v5 : int32 = v1 + 1                                              │

00:00:22 #2052 [Verbose] > │         method13(v4, v5)                                                     │

00:00:22 #2053 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:00:22 #2054 [Verbose] > │         v1                                                                   │

00:00:22 #2055 [Verbose] > │ and method14 (v0 : (struct (int32 * int32) []), v1 : UH3, v2 : int32) :      │

00:00:22 #2056 [Verbose] > │ int32 =                                                                      │

00:00:22 #2057 [Verbose] > │     match v1 with                                                            │

00:00:22 #2058 [Verbose] > │     | UH3_0(v3, v4, v5) -> (* Cons *)                                        │

00:00:22 #2059 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:00:22 #2060 [Verbose] > │         let v6 : int32 = v2 + 1                                              │

00:00:22 #2061 [Verbose] > │         method14(v0, v5, v6)                                                 │

00:00:22 #2062 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:00:22 #2063 [Verbose] > │         v2                                                                   │

00:00:22 #2064 [Verbose] > │ and method12 (v0 : UH3) : (struct (int32 * int32) []) =                      │

00:00:22 #2065 [Verbose] > │     let v1 : int32 = 0                                                       │

00:00:22 #2066 [Verbose] > │     let v2 : int32 = method13(v0, v1)                                        │

00:00:22 #2067 [Verbose] > │     let v3 : (struct (int32 * int32) []) = Array.zeroCreate<struct (int32 *  │

00:00:22 #2068 [Verbose] > │ int32)> (v2)                                                                 │

00:00:22 #2069 [Verbose] > │     let v4 : int32 = 0                                                       │

00:00:22 #2070 [Verbose] > │     let v5 : int32 = method14(v3, v0, v4)                                    │

00:00:22 #2071 [Verbose] > │     v3                                                                       │

00:00:22 #2072 [Verbose] > │ and method0 () : (struct (int32 * int32) []) =                               │

00:00:22 #2073 [Verbose] > │     let v0 : UH0 = method1()                                                 │

00:00:22 #2074 [Verbose] > │     let v1 : UH0 = UH0_1                                                     │

00:00:22 #2075 [Verbose] > │     let v2 : UH0 = method3(v0, v1)                                           │

00:00:22 #2076 [Verbose] > │     let v3 : UH2 = UH2_1                                                     │

00:00:22 #2077 [Verbose] > │     let v4 : UH2 = method8(v2, v3)                                           │

00:00:22 #2078 [Verbose] > │     let v5 : UH3 = UH3_1                                                     │

00:00:22 #2079 [Verbose] > │     let v6 : UH3 = method10(v4, v5)                                          │

00:00:22 #2080 [Verbose] > │     let v7 : (struct (int32 * int32) []) = method12(v6)                      │

00:00:22 #2081 [Verbose] > │     let v8 : (struct (int32 * int32) []) = v7 |> Array.sortBy (fun (struct   │

00:00:22 #2082 [Verbose] > │ (a, b)) -> a)                                                                │

00:00:22 #2083 [Verbose] > │     v8                                                                       │

00:00:22 #2084 [Verbose] > │ method0()                                                                    │

00:00:22 #2085 [Verbose] > │                                                                              │

00:00:22 #2086 [Verbose] > │                                                                              │

00:00:22 #2087 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:22 #2088 [Verbose] >

00:00:22 #2089 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:22 #2090 [Verbose] > // // test

00:00:22 #2091 [Verbose] > // // print_code=false

00:00:22 #2092 [Verbose] >

00:00:22 #2093 [Verbose] > join dyn listm'.init_series 1i32 10000 1

00:00:22 #2094 [Verbose] > |> listm.map (fun _ => roll_progressively None roll_dice true 10i32)

00:00:22 #2095 [Verbose] > |> listm'.group_by id

00:00:22 #2096 [Verbose] > |> listm.map (fun (k, v) => k, (listm.length v : i32))

00:00:22 #2097 [Verbose] > |> listm.toArray

00:00:22 #2098 [Verbose] > |> fun (ar : a i32 _) =>

00:00:22 #2099 [Verbose] >     $"!ar |> Array.sortBy (fun (struct (a, b)) -> a)" : a i32 $"struct (int32 *

00:00:22 #2100 [Verbose] > int32)"

00:00:22 #2101 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-4954-5403-5348622b1749\main.spi

00:00:23 #2102 [Verbose] >

00:00:23 #2103 [Verbose] > ╭─[ 1.03s - return value ]─────────────────────────────────────────────────────╮

00:00:23 #2104 [Verbose] > │ <table><thead><tr><th><i>index</i></th><th>value</th></tr></thead><tbody><tr │

00:00:23 #2105 [Verbose] > │ ><td>0</td><td><details class="dni-treeview"><summary><span                  │

00:00:23 #2106 [Verbose] > │ class="dni-code-hint"><code>(1,                                              │

00:00:23 #2107 [Verbose] > │ 1018)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr> │

00:00:23 #2108 [Verbose] > │ <td>Item1</td><td><div                                                       │

00:00:23 #2109 [Verbose] > │ class="dni-plaintext"><pre>1</pre></div></td></tr><tr><td>Item2</td><td><div │

00:00:23 #2110 [Verbose] > │ class="dni-plaintext"><pre>1018</pre></div></td></tr></tbody></table></div>< │

00:00:23 #2111 [Verbose] > │ /details></td></tr><tr><td>1</td><td><details                                │

00:00:23 #2112 [Verbose] > │ class="dni-treeview"><summary><span class="dni-code-hint"><code>(2,          │

00:00:23 #2113 [Verbose] > │ 990)</code></span></summary><div><table><thead><tr></tr></thead><tbody><tr>< │

00:00:23 #2114 [Verbose] > │ td>Item1</td><td><div                                                        │

00:00:23 #2115 [Verbose] > │ class="dni-plaintext"><pre>2</pre></div></td></tr><tr><td>Item2</td><td><div │

00:00:23 #2116 [Verbose] > │ class="dni-plaintext"><pre>990</pre></div...                                 │

00:00:23 #2117 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:23 #2118 [Verbose] >

00:00:23 #2119 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:23 #2120 [Verbose] > // // test

00:00:23 #2121 [Verbose] > // // timeout=60000

00:00:23 #2122 [Verbose] >

00:00:23 #2123 [Verbose] > join dyn listm'.init_series 1i32 100 1

00:00:23 #2124 [Verbose] > |> listm.iter fun n =>

00:00:23 #2125 [Verbose] >     listm'.init_series 0i32 1 1

00:00:23 #2126 [Verbose] >     |> listm.iter fun reroll =>

00:00:23 #2127 [Verbose] >         join dyn listm'.init_series 1i32 3500 1

00:00:23 #2128 [Verbose] >         |> listm.map fun _ => roll_progressively None roll_dice (reroll = 1) n

00:00:23 #2129 [Verbose] >         |> listm'.group_by id

00:00:23 #2130 [Verbose] >         |> listm.length

00:00:23 #2131 [Verbose] >         |> _equal n

00:00:23 #2132 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1641-5057-5750-501bea47b0a5\main.spi

00:00:39 #2133 [Verbose] >

00:00:39 #2134 [Verbose] > ╭─[ 16.15s - stdout ]──────────────────────────────────────────────────────────╮

00:00:39 #2135 [Verbose] > │ type UH0 =                                                                   │

00:00:39 #2136 [Verbose] > │     | UH0_0 of int32 * UH0                                                   │

00:00:39 #2137 [Verbose] > │     | UH0_1                                                                  │

00:00:39 #2138 [Verbose] > │ and UH1 =                                                                    │

00:00:39 #2139 [Verbose] > │     | UH1_0 of uint8 * UH1                                                   │

00:00:39 #2140 [Verbose] > │     | UH1_1                                                                  │

00:00:39 #2141 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:39 #2142 [Verbose] > │     | US0_0                                                                  │

00:00:39 #2143 [Verbose] > │     | US0_1 of f1_0 : int32 * f1_1 : UH1                                     │

00:00:39 #2144 [Verbose] > │ and UH2 =                                                                    │

00:00:39 #2145 [Verbose] > │     | UH2_0 of int32 * (unit -> UH2)                                         │

00:00:39 #2146 [Verbose] > │     | UH2_1                                                                  │

00:00:39 #2147 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:39 #2148 [Verbose] > │     | US1_0                                                                  │

00:00:39 #2149 [Verbose] > │     | US1_1 of f1_0 : int32                                                  │

00:00:39 #2150 [Verbose] > │ and UH3 =                                                                    │

00:00:39 #2151 [Verbose] > │     | UH3_0 of int32 * UH0 * UH3                                             │

00:00:39 #2152 [Verbose] > │     | UH3_1                                                                  │

00:00:39 #2153 [Verbose] > │ let rec method2 (v0 : float, v1 : int32, v2 : int32, v3 : float) : UH0 =     │

00:00:39 #2154 [Verbose] > │     let v4 : bool = v3 < v0                                                  │

00:00:39 #2155 [Verbose] > │     if v4 then                                                               │

00:00:39 #2156 [Verbose] > │         let v5 : int32 = int32 v3                                            │

00:00:39 #2157 [Verbose] > │         let v6 : int32 = v1 * v5                                             │

00:00:39 #2158 [Verbose] > │         let v7 : int32 = v2 + v6                                             │

00:00:39 #2159 [Verbose] > │         let v8 : float = v3 + 1.0                                            │

00:00:39 #2160 [Verbose] > │         let v9 : UH0 = method2(v0, v1, v2, v8)                               │

00:00:39 #2161 [Verbose] > │         UH0_0(v7, v9)                                                        │

00:00:39 #2162 [Verbose] > │     else                                                                     │

00:00:39 #2163 [Verbose] > │         UH0_1                                                                │

00:00:39 #2164 [Verbose] > │ and closure2 (v0 : int32, v1 : int32) (v2 : int32) : UH0 =                   │

00:00:39 #2165 [Verbose] > │     let v3 : int32 = v1 - v0                                                 │

00:00:39 #2166 [Verbose] > │     let v4 : int32 = v3 / v2                                                 │

00:00:39 #2167 [Verbose] > │     let v5 : float = float v4                                                │

00:00:39 #2168 [Verbose] > │     let v6 : float = v5 + 1.0                                                │

00:00:39 #2169 [Verbose] > │     let v7 : float = 0.0                                                     │

00:00:39 #2170 [Verbose] > │     method2(v6, v2, v0, v7)                                                  │

00:00:39 #2171 [Verbose] > │ and closure1 (v0 : int32) (v1 : int32) : (int32 -> UH0) =                    │

00:00:39 #2172 [Verbose] > │     closure2(v0, v1)                                                         │

00:00:39 #2173 [Verbose] > │ and closure0 () (v0 : int32) : (int32 -> (int32 -> UH0)) =                   │

00:00:39 #2174 [Verbose] > │     closure1(v0)                                                             │

00:00:39 #2175 [Verbose] > │ and method1 () : UH0 =                                                       │

00:00:39 #2176 [Verbose] > │     let v0 : (int32 -> (int32 -> (int32 -> UH0))) = closure0()               │

00:00:39 #2177 [Verbose] > │     let v1 : (int32 -> (int32 -> UH0)) = v0 1                                │

00:00:39 #2178 [Verbose] > │     let v2 : (int32 -> UH0) = v1 100                                         │

00:00:39 #2179 [Verbose] > │     v2 1                                                                     │

00:00:39 #2180 [Verbose] > │ and method4 () : UH0 =                                                       │

00:00:39 #2181 [Verbose] > │     let v0 : (int32 -> (int32 -> (int32 -> UH0))) = closure0()               │

00:00:39 #2182 [Verbose] > │     let v1 : (int32 -> (int32 -> UH0)) = v0 1                                │

00:00:39 #2183 [Verbose] > │     let v2 : (int32 -> UH0) = v1 3500                                        │

00:00:39 #2184 [Verbose] > │     v2 1                                                                     │

00:00:39 #2185 [Verbose] > │ and method6 (v0 : int32, v1 : int8, v2 : int32) : int8 =                     │

00:00:39 #2186 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:39 #2187 [Verbose] > │     if v3 then                                                               │

00:00:39 #2188 [Verbose] > │         let v4 : int32 = v2 * 6                                              │

00:00:39 #2189 [Verbose] > │         let v5 : bool = v4 > v2                                              │

00:00:39 #2190 [Verbose] > │         if v5 then                                                           │

00:00:39 #2191 [Verbose] > │             let v6 : int8 = v1 + 1y                                          │

00:00:39 #2192 [Verbose] > │             method6(v0, v6, v4)                                              │

00:00:39 #2193 [Verbose] > │         else                                                                 │

00:00:39 #2194 [Verbose] > │             let v8 : string = $"calculate_dice_count / max: {v0} / n: {v1} / │

00:00:39 #2195 [Verbose] > │ p: {v2}"                                                                     │

00:00:39 #2196 [Verbose] > │             v1                                                               │

00:00:39 #2197 [Verbose] > │     else                                                                     │

00:00:39 #2198 [Verbose] > │         let v10 : string = $"calculate_dice_count / max: {v0} / n: {v1} / p: │

00:00:39 #2199 [Verbose] > │ {v2}"                                                                        │

00:00:39 #2200 [Verbose] > │         v1                                                                   │

00:00:39 #2201 [Verbose] > │ and closure34 () () : UH2 =                                                  │

00:00:39 #2202 [Verbose] > │     let v0 : (unit -> UH2) = closure34()                                     │

00:00:39 #2203 [Verbose] > │     UH2_0(0, v0)                                                             │

00:00:39 #2204 [Verbose] > │ and closure33 () () : UH2 =                                                  │

00:00:39 #2205 [Verbose] > │     let v0 : (unit -> UH2) = closure34()                                     │

00:00:39 #2206 [Verbose] > │     UH2_0(-2147483648, v0)                                                   │

00:00:39 #2207 [Verbose] > │ and closure32 () () : UH2 =                                                  │

00:00:39 #2208 [Verbose] > │     let v0 : (unit -> UH2) = closure33()                                     │

00:00:39 #2209 [Verbose] > │     UH2_0(1073741824, v0)                                                    │

00:00:39 #2210 [Verbose] > │ and closure31 () () : UH2 =                                                  │

00:00:39 #2211 [Verbose] > │     let v0 : (unit -> UH2) = closure32()                                     │

00:00:39 #2212 [Verbose] > │     UH2_0(1610612736, v0)                                                    │

00:00:39 #2213 [Verbose] > │ and closure30 () () : UH2 =                                                  │

00:00:39 #2214 [Verbose] > │     let v0 : (unit -> UH2) = closure31()                                     │

00:00:39 #2215 [Verbose] > │     UH2_0(268435456, v0)                                                     │

00:00:39 #2216 [Verbose] > │ and closure29 () () : UH2 =                                                  │

00:00:39 #2217 [Verbose] > │     let v0 : (unit -> UH2) = closure30()                                     │

00:00:39 #2218 [Verbose] > │     UH2_0(-671088640, v0)                                                    │

00:00:39 #2219 [Verbose] > │ and closure28 () () : UH2 =                                                  │

00:00:39 #2220 [Verbose] > │     let v0 : (unit -> UH2) = closure29()                                     │

00:00:39 #2221 [Verbose] > │     UH2_0(-1543503872, v0)                                                   │

00:00:39 #2222 [Verbose] > │ and closure27 () () : UH2 =                                                  │

00:00:39 #2223 [Verbose] > │     let v0 : (unit -> UH2) = closure28()                                     │

00:00:39 #2224 [Verbose] > │     UH2_0(1174405120, v0)                                                    │

00:00:39 #2225 [Verbose] > │ and closure26 () () : UH2 =                                                  │

00:00:39 #2226 [Verbose] > │     let v0 : (unit -> UH2) = closure27()                                     │

00:00:39 #2227 [Verbose] > │     UH2_0(-520093696, v0)                                                    │

00:00:39 #2228 [Verbose] > │ and closure25 () () : UH2 =                                                  │

00:00:39 #2229 [Verbose] > │     let v0 : (unit -> UH2) = closure26()                                     │

00:00:39 #2230 [Verbose] > │     UH2_0(629145600, v0)                                                     │

00:00:39 #2231 [Verbose] > │ and closure24 () () : UH2 =                                                  │

00:00:39 #2232 [Verbose] > │     let v0 : (unit -> UH2) = closure25()                                     │

00:00:39 #2233 [Verbose] > │     UH2_0(104857600, v0)                                                     │

00:00:39 #2234 [Verbose] > │ and closure23 () () : UH2 =                                                  │

00:00:39 #2235 [Verbose] > │     let v0 : (unit -> UH2) = closure24()                                     │

00:00:39 #2236 [Verbose] > │     UH2_0(1449132032, v0)                                                    │

00:00:39 #2237 [Verbose] > │ and closure22 () () : UH2 =                                                  │

00:00:39 #2238 [Verbose] > │     let v0 : (unit -> UH2) = closure23()                                     │

00:00:39 #2239 [Verbose] > │     UH2_0(-1190133760, v0)                                                   │

00:00:39 #2240 [Verbose] > │ and closure21 () () : UH2 =                                                  │

00:00:39 #2241 [Verbose] > │     let v0 : (unit -> UH2) = closure22()                                     │

00:00:39 #2242 [Verbose] > │     UH2_0(-1630011392, v0)                                                   │

00:00:39 #2243 [Verbose] > │ and closure20 () () : UH2 =                                                  │

00:00:39 #2244 [Verbose] > │     let v0 : (unit -> UH2) = closure21()                                     │

00:00:39 #2245 [Verbose] > │     UH2_0(1159987200, v0)                                                    │

00:00:39 #2246 [Verbose] > │ and closure19 () () : UH2 =                                                  │

00:00:39 #2247 [Verbose] > │     let v0 : (unit -> UH2) = closure20()                                     │

00:00:39 #2248 [Verbose] > │     UH2_0(193331200, v0)                                                     │

00:00:39 #2249 [Verbose] > │ and closure18 () () : UH2 =                                                  │

00:00:39 #2250 [Verbose] > │     let v0 : (unit -> UH2) = closure19()                                     │

00:00:39 #2251 [Verbose] > │     UH2_0(-683606016, v0)                                                    │

00:00:39 #2252 [Verbose] > │ and closure17 () () : UH2 =                                                  │

00:00:39 #2253 [Verbose] > │     let v0 : (unit -> UH2) = closure18()                                     │

00:00:39 #2254 [Verbose] > │     UH2_0(2033549312, v0)                                                    │

00:00:39 #2255 [Verbose] > │ and closure16 () () : UH2 =                                                  │

00:00:39 #2256 [Verbose] > │     let v0 : (unit -> UH2) = closure17()                                     │

00:00:39 #2257 [Verbose] > │     UH2_0(1054752768, v0)                                                    │

00:00:39 #2258 [Verbose] > │ and closure15 () () : UH2 =                                                  │

00:00:39 #2259 [Verbose] > │     let v0 : (unit -> UH2) = closure16()                                     │

00:00:39 #2260 [Verbose] > │     UH2_0(175792128, v0)                                                     │

00:00:39 #2261 [Verbose] > │ and closure14 () () : UH2 =                                                  │

00:00:39 #2262 [Verbose] > │     let v0 : (unit -> UH2) = closure15()                                     │

00:00:39 #2263 [Verbose] > │     UH2_0(-2118184960, v0)                                                   │

00:00:39 #2264 [Verbose] > │ and closure13 () () : UH2 =                                                  │

00:00:39 #2265 [Verbose] > │     let v0 : (unit -> UH2) = closure14()                                     │

00:00:39 #2266 [Verbose] > │     UH2_0(362797056, v0)                                                     │

00:00:39 #2267 [Verbose] > │ and closure12 () () : UH2 =                                                  │

00:00:39 #2268 [Verbose] > │     let v0 : (unit -> UH2) = closure13()                                     │

00:00:39 #2269 [Verbose] > │     UH2_0(60466176, v0)                                                      │

00:00:39 #2270 [Verbose] > │ and closure11 () () : UH2 =                                                  │

00:00:39 #2271 [Verbose] > │     let v0 : (unit -> UH2) = closure12()                                     │

00:00:39 #2272 [Verbose] > │     UH2_0(10077696, v0)                                                      │

00:00:39 #2273 [Verbose] > │ and closure10 () () : UH2 =                                                  │

00:00:39 #2274 [Verbose] > │     let v0 : (unit -> UH2) = closure11()                                     │

00:00:39 #2275 [Verbose] > │     UH2_0(1679616, v0)                                                       │

00:00:39 #2276 [Verbose] > │ and closure9 () () : UH2 =                                                   │

00:00:39 #2277 [Verbose] > │     let v0 : (unit -> UH2) = closure10()                                     │

00:00:39 #2278 [Verbose] > │     UH2_0(279936, v0)                                                        │

00:00:39 #2279 [Verbose] > │ and closure8 () () : UH2 =                                                   │

00:00:39 #2280 [Verbose] > │     let v0 : (unit -> UH2) = closure9()                                      │

00:00:39 #2281 [Verbose] > │     UH2_0(46656, v0)                                                         │

00:00:39 #2282 [Verbose] > │ and closure7 () () : UH2 =                                                   │

00:00:39 #2283 [Verbose] > │     let v0 : (unit -> UH2) = closure8()                                      │

00:00:39 #2284 [Verbose] > │     UH2_0(7776, v0)                                                          │

00:00:39 #2285 [Verbose] > │ and closure6 () () : UH2 =                                                   │

00:00:39 #2286 [Verbose] > │     let v0 : (unit -> UH2) = closure7()                                      │

00:00:39 #2287 [Verbose] > │     UH2_0(1296, v0)                                                          │

00:00:39 #2288 [Verbose] > │ and closure5 () () : UH2 =                                                   │

00:00:39 #2289 [Verbose] > │     let v0 : (unit -> UH2) = closure6()                                      │

00:00:39 #2290 [Verbose] > │     UH2_0(216, v0)                                                           │

00:00:39 #2291 [Verbose] > │ and closure4 () () : UH2 =                                                   │

00:00:39 #2292 [Verbose] > │     let v0 : (unit -> UH2) = closure5()                                      │

00:00:39 #2293 [Verbose] > │     UH2_0(36, v0)                                                            │

00:00:39 #2294 [Verbose] > │ and closure3 () () : UH2 =                                                   │

00:00:39 #2295 [Verbose] > │     let v0 : (unit -> UH2) = closure4()                                      │

00:00:39 #2296 [Verbose] > │     UH2_0(6, v0)                                                             │

00:00:39 #2297 [Verbose] > │ and method9 (v0 : int8, v1 : UH2) : US1 =                                    │

00:00:39 #2298 [Verbose] > │     match v1 with                                                            │

00:00:39 #2299 [Verbose] > │     | UH2_0(v2, v3) -> (* StreamCons *)                                      │

00:00:39 #2300 [Verbose] > │         let v4 : bool = v0 <= 0y                                             │

00:00:39 #2301 [Verbose] > │         if v4 then                                                           │

00:00:39 #2302 [Verbose] > │             US1_1(v2)                                                        │

00:00:39 #2303 [Verbose] > │         else                                                                 │

00:00:39 #2304 [Verbose] > │             let v6 : int8 = v0 - 1y                                          │

00:00:39 #2305 [Verbose] > │             let v7 : UH2 = v3 ()                                             │

00:00:39 #2306 [Verbose] > │             method9(v6, v7)                                                  │

00:00:39 #2307 [Verbose] > │     | UH2_1 -> (* StreamNil *)                                               │

00:00:39 #2308 [Verbose] > │         US1_0                                                                │

00:00:39 #2309 [Verbose] > │ and method8 (v0 : int8, v1 : UH1, v2 : int32) : US0 =                        │

00:00:39 #2310 [Verbose] > │     let v3 : bool = v0 < 0y                                                  │

00:00:39 #2311 [Verbose] > │     if v3 then                                                               │

00:00:39 #2312 [Verbose] > │         let v4 : string = $"accumulate_dice_rolls / power: {v0} / acc: {v2}" │

00:00:39 #2313 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:00:39 #2314 [Verbose] > │         US0_1(v5, v1)                                                        │

00:00:39 #2315 [Verbose] > │     else                                                                     │

00:00:39 #2316 [Verbose] > │         match v1 with                                                        │

00:00:39 #2317 [Verbose] > │         | UH1_0(v8, v9) -> (* Cons *)                                        │

00:00:39 #2318 [Verbose] > │             let v10 : bool = v8 > 1uy                                        │

00:00:39 #2319 [Verbose] > │             if v10 then                                                      │

00:00:39 #2320 [Verbose] > │                 let v11 : int32 = 1                                          │

00:00:39 #2321 [Verbose] > │                 let v12 : (unit -> UH2) = closure3()                         │

00:00:39 #2322 [Verbose] > │                 let v13 : UH2 = UH2_0(v11, v12)                              │

00:00:39 #2323 [Verbose] > │                 let v14 : US1 = method9(v0, v13)                             │

00:00:39 #2324 [Verbose] > │                 let v18 : int32 =                                            │

00:00:39 #2325 [Verbose] > │                     match v14 with                                           │

00:00:39 #2326 [Verbose] > │                     | US1_0 -> (* None *)                                    │

00:00:39 #2327 [Verbose] > │                         failwith<int32> "Option does not have a value."      │

00:00:39 #2328 [Verbose] > │                     | US1_1(v15) -> (* Some *)                               │

00:00:39 #2329 [Verbose] > │                         v15                                                  │

00:00:39 #2330 [Verbose] > │                 let v19 : uint8 = v8 - 1uy                                   │

00:00:39 #2331 [Verbose] > │                 let v20 : int32 = int32 v19                                  │

00:00:39 #2332 [Verbose] > │                 let v21 : int32 = v20 * v18                                  │

00:00:39 #2333 [Verbose] > │                 let v22 : string = $"accumulate_dice_rolls / power: {v0} /   │

00:00:39 #2334 [Verbose] > │ acc: {v2} / roll: {v8} / value: {v21}"                                       │

00:00:39 #2335 [Verbose] > │                 let v23 : int32 = v2 + v21                                   │

00:00:39 #2336 [Verbose] > │                 let v24 : int8 = v0 - 1y                                     │

00:00:39 #2337 [Verbose] > │                 method8(v24, v9, v23)                                        │

00:00:39 #2338 [Verbose] > │             else                                                             │

00:00:39 #2339 [Verbose] > │                 let v26 : string = $"accumulate_dice_rolls / power: {v0} /   │

00:00:39 #2340 [Verbose] > │ acc: {v2} / roll: {v8}"                                                      │

00:00:39 #2341 [Verbose] > │                 let v27 : int8 = v0 - 1y                                     │

00:00:39 #2342 [Verbose] > │                 method8(v27, v9, v2)                                         │

00:00:39 #2343 [Verbose] > │         | UH1_1 -> (* Nil *)                                                 │

00:00:39 #2344 [Verbose] > │             US0_0                                                            │

00:00:39 #2345 [Verbose] > │ and method7 (v0 : int32, v1 : int8, v2 : UH1, v3 : int8) : int32 =           │

00:00:39 #2346 [Verbose] > │     let v4 : int8 = v1 + 1y                                                  │

00:00:39 #2347 [Verbose] > │     let v5 : bool = v3 < v4                                                  │

00:00:39 #2348 [Verbose] > │     if v5 then                                                               │

00:00:39 #2349 [Verbose] > │         let mutable result = None                                            │

00:00:39 #2350 [Verbose] > │         #if FABLE_COMPILER_RUST                                              │

00:00:39 #2351 [Verbose] > │         #if !WASM                                                            │

00:00:39 #2352 [Verbose] > │         let v6 : string = "rand::Rng::gen_range(&mut rand::thread_rng(),     │

00:00:39 #2353 [Verbose] > │ 1..7)"                                                                       │

00:00:39 #2354 [Verbose] > │         let v7 : uint8 = Fable.Core.RustInterop.emitRustExpr () v6           │

00:00:39 #2355 [Verbose] > │         v7                                                                   │

00:00:39 #2356 [Verbose] > │         #else                                                                │

00:00:39 #2357 [Verbose] > │         let v8 : string = "1"                                                │

00:00:39 #2358 [Verbose] > │         let v9 : uint8 = Fable.Core.RustInterop.emitRustExpr () v8           │

00:00:39 #2359 [Verbose] > │         v9                                                                   │

00:00:39 #2360 [Verbose] > │         #endif                                                               │

00:00:39 #2361 [Verbose] > │         #else                                                                │

00:00:39 #2362 [Verbose] > │         let v10 : uint8 = System.Random().Next (1, 7) |> uint8               │

00:00:39 #2363 [Verbose] > │         v10                                                                  │

00:00:39 #2364 [Verbose] > │         #endif                                                               │

00:00:39 #2365 [Verbose] > │         |> fun x -> result <- Some x                                         │

00:00:39 #2366 [Verbose] > │         let v11 : uint8 = result |> Option.get                               │

00:00:39 #2367 [Verbose] > │         let v12 : UH1 = UH1_0(v11, v2)                                       │

00:00:39 #2368 [Verbose] > │         let v13 : int8 = v3 + 1y                                             │

00:00:39 #2369 [Verbose] > │         method7(v0, v1, v12, v13)                                            │

00:00:39 #2370 [Verbose] > │     else                                                                     │

00:00:39 #2371 [Verbose] > │         let v15 : int32 = 0                                                  │

00:00:39 #2372 [Verbose] > │         let v16 : US0 = method8(v1, v2, v15)                                 │

00:00:39 #2373 [Verbose] > │         match v16 with                                                       │

00:00:39 #2374 [Verbose] > │         | US0_1(v17, v18) -> (* Some *)                                      │

00:00:39 #2375 [Verbose] > │             let v19 : bool = v17 <= v0                                       │

00:00:39 #2376 [Verbose] > │             if v19 then                                                      │

00:00:39 #2377 [Verbose] > │                 v17                                                          │

00:00:39 #2378 [Verbose] > │             else                                                             │

00:00:39 #2379 [Verbose] > │                 let mutable result = None                                    │

00:00:39 #2380 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:39 #2381 [Verbose] > │                 #if !WASM                                                    │

00:00:39 #2382 [Verbose] > │                 let v20 : string = "rand::Rng::gen_range(&mut                │

00:00:39 #2383 [Verbose] > │ rand::thread_rng(), 1..7)"                                                   │

00:00:39 #2384 [Verbose] > │                 let v21 : uint8 = Fable.Core.RustInterop.emitRustExpr () v20 │

00:00:39 #2385 [Verbose] > │                 v21                                                          │

00:00:39 #2386 [Verbose] > │                 #else                                                        │

00:00:39 #2387 [Verbose] > │                 let v22 : string = "1"                                       │

00:00:39 #2388 [Verbose] > │                 let v23 : uint8 = Fable.Core.RustInterop.emitRustExpr () v22 │

00:00:39 #2389 [Verbose] > │                 v23                                                          │

00:00:39 #2390 [Verbose] > │                 #endif                                                       │

00:00:39 #2391 [Verbose] > │                 #else                                                        │

00:00:39 #2392 [Verbose] > │                 let v24 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:39 #2393 [Verbose] > │                 v24                                                          │

00:00:39 #2394 [Verbose] > │                 #endif                                                       │

00:00:39 #2395 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:39 #2396 [Verbose] > │                 let v25 : uint8 = result |> Option.get                       │

00:00:39 #2397 [Verbose] > │                 let v26 : UH1 = UH1_0(v25, v2)                               │

00:00:39 #2398 [Verbose] > │                 let v27 : int8 = v3 + 1y                                     │

00:00:39 #2399 [Verbose] > │                 method7(v0, v1, v26, v27)                                    │

00:00:39 #2400 [Verbose] > │         | _ ->                                                               │

00:00:39 #2401 [Verbose] > │             let mutable result = None                                        │

00:00:39 #2402 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:39 #2403 [Verbose] > │             #if !WASM                                                        │

00:00:39 #2404 [Verbose] > │             let v30 : string = "rand::Rng::gen_range(&mut                    │

00:00:39 #2405 [Verbose] > │ rand::thread_rng(), 1..7)"                                                   │

00:00:39 #2406 [Verbose] > │             let v31 : uint8 = Fable.Core.RustInterop.emitRustExpr () v30     │

00:00:39 #2407 [Verbose] > │             v31                                                              │

00:00:39 #2408 [Verbose] > │             #else                                                            │

00:00:39 #2409 [Verbose] > │             let v32 : string = "1"                                           │

00:00:39 #2410 [Verbose] > │             let v33 : uint8 = Fable.Core.RustInterop.emitRustExpr () v32     │

00:00:39 #2411 [Verbose] > │             v33                                                              │

00:00:39 #2412 [Verbose] > │             #endif                                                           │

00:00:39 #2413 [Verbose] > │             #else                                                            │

00:00:39 #2414 [Verbose] > │             let v34 : uint8 = System.Random().Next (1, 7) |> uint8           │

00:00:39 #2415 [Verbose] > │             v34                                                              │

00:00:39 #2416 [Verbose] > │             #endif                                                           │

00:00:39 #2417 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:39 #2418 [Verbose] > │             let v35 : uint8 = result |> Option.get                           │

00:00:39 #2419 [Verbose] > │             let v36 : UH1 = UH1_0(v35, v2)                                   │

00:00:39 #2420 [Verbose] > │             let v37 : int8 = v3 + 1y                                         │

00:00:39 #2421 [Verbose] > │             method7(v0, v1, v36, v37)                                        │

00:00:39 #2422 [Verbose] > │ and method5 (v0 : int32, v1 : UH0, v2 : UH0) : UH0 =                         │

00:00:39 #2423 [Verbose] > │     match v1 with                                                            │

00:00:39 #2424 [Verbose] > │     | UH0_0(v3, v4) -> (* Cons *)                                            │

00:00:39 #2425 [Verbose] > │         let v5 : UH0 = method5(v0, v4, v2)                                   │

00:00:39 #2426 [Verbose] > │         let v6 : bool = v0 = 1                                               │

00:00:39 #2427 [Verbose] > │         let v10 : int8 =                                                     │

00:00:39 #2428 [Verbose] > │             if v6 then                                                       │

00:00:39 #2429 [Verbose] > │                 1y                                                           │

00:00:39 #2430 [Verbose] > │             else                                                             │

00:00:39 #2431 [Verbose] > │                 let v7 : int8 = 0y                                           │

00:00:39 #2432 [Verbose] > │                 let v8 : int32 = 1                                           │

00:00:39 #2433 [Verbose] > │                 method6(v0, v7, v8)                                          │

00:00:39 #2434 [Verbose] > │         let v11 : int8 = v10 - 1y                                            │

00:00:39 #2435 [Verbose] > │         let v12 : UH1 = UH1_1                                                │

00:00:39 #2436 [Verbose] > │         let v13 : int8 = 0y                                                  │

00:00:39 #2437 [Verbose] > │         let v14 : int32 = method7(v0, v11, v12, v13)                         │

00:00:39 #2438 [Verbose] > │         UH0_0(v14, v5)                                                       │

00:00:39 #2439 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:39 #2440 [Verbose] > │         v2                                                                   │

00:00:39 #2441 [Verbose] > │ and method11 (v0 : int32, v1 : UH3, v2 : bool, v3 : UH3) : struct (bool *    │

00:00:39 #2442 [Verbose] > │ UH3) =                                                                       │

00:00:39 #2443 [Verbose] > │     match v1 with                                                            │

00:00:39 #2444 [Verbose] > │     | UH3_0(v4, v5, v6) -> (* Cons *)                                        │

00:00:39 #2445 [Verbose] > │         let v7 : bool = v4 = v0                                              │

00:00:39 #2446 [Verbose] > │         let struct (v11 : bool, v12 : UH3) =                                 │

00:00:39 #2447 [Verbose] > │             if v7 then                                                       │

00:00:39 #2448 [Verbose] > │                 let v8 : UH0 = UH0_0(v0, v5)                                 │

00:00:39 #2449 [Verbose] > │                 let v9 : UH3 = UH3_0(v4, v8, v3)                             │

00:00:39 #2450 [Verbose] > │                 struct (true, v9)                                            │

00:00:39 #2451 [Verbose] > │             else                                                             │

00:00:39 #2452 [Verbose] > │                 let v10 : UH3 = UH3_0(v4, v5, v3)                            │

00:00:39 #2453 [Verbose] > │                 struct (v2, v10)                                             │

00:00:39 #2454 [Verbose] > │         method11(v0, v6, v11, v12)                                           │

00:00:39 #2455 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:00:39 #2456 [Verbose] > │         struct (v2, v3)                                                      │

00:00:39 #2457 [Verbose] > │ and method10 (v0 : UH0, v1 : UH3) : UH3 =                                    │

00:00:39 #2458 [Verbose] > │     match v0 with                                                            │

00:00:39 #2459 [Verbose] > │     | UH0_0(v2, v3) -> (* Cons *)                                            │

00:00:39 #2460 [Verbose] > │         let v4 : UH3 = method10(v3, v1)                                      │

00:00:39 #2461 [Verbose] > │         let v5 : bool = false                                                │

00:00:39 #2462 [Verbose] > │         let v6 : UH3 = UH3_1                                                 │

00:00:39 #2463 [Verbose] > │         let struct (v7 : bool, v8 : UH3) = method11(v2, v4, v5, v6)          │

00:00:39 #2464 [Verbose] > │         if v7 then                                                           │

00:00:39 #2465 [Verbose] > │             v8                                                               │

00:00:39 #2466 [Verbose] > │         else                                                                 │

00:00:39 #2467 [Verbose] > │             let v9 : UH0 = UH0_1                                             │

00:00:39 #2468 [Verbose] > │             let v10 : UH0 = UH0_0(v2, v9)                                    │

00:00:39 #2469 [Verbose] > │             UH3_0(v2, v10, v8)                                               │

00:00:39 #2470 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:39 #2471 [Verbose] > │         v1                                                                   │

00:00:39 #2472 [Verbose] > │ and method12 (v0 : UH3, v1 : int32) : int32 =                                │

00:00:39 #2473 [Verbose] > │     match v0 with                                                            │

00:00:39 #2474 [Verbose] > │     | UH3_0(v2, v3, v4) -> (* Cons *)                                        │

00:00:39 #2475 [Verbose] > │         let v5 : int32 = v1 + 1                                              │

00:00:39 #2476 [Verbose] > │         method12(v4, v5)                                                     │

00:00:39 #2477 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:00:39 #2478 [Verbose] > │         v1                                                                   │

00:00:39 #2479 [Verbose] > │ and method15 (v0 : int8, v1 : int8) : UH1 =                                  │

00:00:39 #2480 [Verbose] > │     let v2 : bool = v1 < v0                                                  │

00:00:39 #2481 [Verbose] > │     if v2 then                                                               │

00:00:39 #2482 [Verbose] > │         let mutable result = None                                            │

00:00:39 #2483 [Verbose] > │         #if FABLE_COMPILER_RUST                                              │

00:00:39 #2484 [Verbose] > │         #if !WASM                                                            │

00:00:39 #2485 [Verbose] > │         let v3 : string = "rand::Rng::gen_range(&mut rand::thread_rng(),     │

00:00:39 #2486 [Verbose] > │ 1..7)"                                                                       │

00:00:39 #2487 [Verbose] > │         let v4 : uint8 = Fable.Core.RustInterop.emitRustExpr () v3           │

00:00:39 #2488 [Verbose] > │         v4                                                                   │

00:00:39 #2489 [Verbose] > │         #else                                                                │

00:00:39 #2490 [Verbose] > │         let v5 : string = "1"                                                │

00:00:39 #2491 [Verbose] > │         let v6 : uint8 = Fable.Core.RustInterop.emitRustExpr () v5           │

00:00:39 #2492 [Verbose] > │         v6                                                                   │

00:00:39 #2493 [Verbose] > │         #endif                                                               │

00:00:39 #2494 [Verbose] > │         #else                                                                │

00:00:39 #2495 [Verbose] > │         let v7 : uint8 = System.Random().Next (1, 7) |> uint8                │

00:00:39 #2496 [Verbose] > │         v7                                                                   │

00:00:39 #2497 [Verbose] > │         #endif                                                               │

00:00:39 #2498 [Verbose] > │         |> fun x -> result <- Some x                                         │

00:00:39 #2499 [Verbose] > │         let v8 : uint8 = result |> Option.get                                │

00:00:39 #2500 [Verbose] > │         let v9 : int8 = v1 + 1y                                              │

00:00:39 #2501 [Verbose] > │         let v10 : UH1 = method15(v0, v9)                                     │

00:00:39 #2502 [Verbose] > │         UH1_0(v8, v10)                                                       │

00:00:39 #2503 [Verbose] > │     else                                                                     │

00:00:39 #2504 [Verbose] > │         UH1_1                                                                │

00:00:39 #2505 [Verbose] > │ and method16 (v0 : int32, v1 : int8, v2 : UH1) : int32 =                     │

00:00:39 #2506 [Verbose] > │     let v3 : int8 = v1 + 1y                                                  │

00:00:39 #2507 [Verbose] > │     let v4 : bool = v1 < v3                                                  │

00:00:39 #2508 [Verbose] > │     if v4 then                                                               │

00:00:39 #2509 [Verbose] > │         let mutable result = None                                            │

00:00:39 #2510 [Verbose] > │         #if FABLE_COMPILER_RUST                                              │

00:00:39 #2511 [Verbose] > │         #if !WASM                                                            │

00:00:39 #2512 [Verbose] > │         let v5 : string = "rand::Rng::gen_range(&mut rand::thread_rng(),     │

00:00:39 #2513 [Verbose] > │ 1..7)"                                                                       │

00:00:39 #2514 [Verbose] > │         let v6 : uint8 = Fable.Core.RustInterop.emitRustExpr () v5           │

00:00:39 #2515 [Verbose] > │         v6                                                                   │

00:00:39 #2516 [Verbose] > │         #else                                                                │

00:00:39 #2517 [Verbose] > │         let v7 : string = "1"                                                │

00:00:39 #2518 [Verbose] > │         let v8 : uint8 = Fable.Core.RustInterop.emitRustExpr () v7           │

00:00:39 #2519 [Verbose] > │         v8                                                                   │

00:00:39 #2520 [Verbose] > │         #endif                                                               │

00:00:39 #2521 [Verbose] > │         #else                                                                │

00:00:39 #2522 [Verbose] > │         let v9 : uint8 = System.Random().Next (1, 7) |> uint8                │

00:00:39 #2523 [Verbose] > │         v9                                                                   │

00:00:39 #2524 [Verbose] > │         #endif                                                               │

00:00:39 #2525 [Verbose] > │         |> fun x -> result <- Some x                                         │

00:00:39 #2526 [Verbose] > │         let v10 : uint8 = result |> Option.get                               │

00:00:39 #2527 [Verbose] > │         let v11 : UH1 = UH1_0(v10, v2)                                       │

00:00:39 #2528 [Verbose] > │         method14(v0, v1, v11, v3)                                            │

00:00:39 #2529 [Verbose] > │     else                                                                     │

00:00:39 #2530 [Verbose] > │         let v13 : int32 = 0                                                  │

00:00:39 #2531 [Verbose] > │         let v14 : US0 = method8(v1, v2, v13)                                 │

00:00:39 #2532 [Verbose] > │         match v14 with                                                       │

00:00:39 #2533 [Verbose] > │         | US0_1(v15, v16) -> (* Some *)                                      │

00:00:39 #2534 [Verbose] > │             let v17 : bool = v15 <= v0                                       │

00:00:39 #2535 [Verbose] > │             if v17 then                                                      │

00:00:39 #2536 [Verbose] > │                 v15                                                          │

00:00:39 #2537 [Verbose] > │             else                                                             │

00:00:39 #2538 [Verbose] > │                 let v18 : int8 = 0y                                          │

00:00:39 #2539 [Verbose] > │                 let v19 : UH1 = method15(v1, v18)                            │

00:00:39 #2540 [Verbose] > │                 method16(v0, v1, v19)                                        │

00:00:39 #2541 [Verbose] > │         | _ ->                                                               │

00:00:39 #2542 [Verbose] > │             let v22 : int8 = 0y                                              │

00:00:39 #2543 [Verbose] > │             let v23 : UH1 = method15(v1, v22)                                │

00:00:39 #2544 [Verbose] > │             method16(v0, v1, v23)                                            │

00:00:39 #2545 [Verbose] > │ and method14 (v0 : int32, v1 : int8, v2 : UH1, v3 : int8) : int32 =          │

00:00:39 #2546 [Verbose] > │     let v4 : int8 = v1 + 1y                                                  │

00:00:39 #2547 [Verbose] > │     let v5 : bool = v3 < v4                                                  │

00:00:39 #2548 [Verbose] > │     if v5 then                                                               │

00:00:39 #2549 [Verbose] > │         let mutable result = None                                            │

00:00:39 #2550 [Verbose] > │         #if FABLE_COMPILER_RUST                                              │

00:00:39 #2551 [Verbose] > │         #if !WASM                                                            │

00:00:39 #2552 [Verbose] > │         let v6 : string = "rand::Rng::gen_range(&mut rand::thread_rng(),     │

00:00:39 #2553 [Verbose] > │ 1..7)"                                                                       │

00:00:39 #2554 [Verbose] > │         let v7 : uint8 = Fable.Core.RustInterop.emitRustExpr () v6           │

00:00:39 #2555 [Verbose] > │         v7                                                                   │

00:00:39 #2556 [Verbose] > │         #else                                                                │

00:00:39 #2557 [Verbose] > │         let v8 : string = "1"                                                │

00:00:39 #2558 [Verbose] > │         let v9 : uint8 = Fable.Core.RustInterop.emitRustExpr () v8           │

00:00:39 #2559 [Verbose] > │         v9                                                                   │

00:00:39 #2560 [Verbose] > │         #endif                                                               │

00:00:39 #2561 [Verbose] > │         #else                                                                │

00:00:39 #2562 [Verbose] > │         let v10 : uint8 = System.Random().Next (1, 7) |> uint8               │

00:00:39 #2563 [Verbose] > │         v10                                                                  │

00:00:39 #2564 [Verbose] > │         #endif                                                               │

00:00:39 #2565 [Verbose] > │         |> fun x -> result <- Some x                                         │

00:00:39 #2566 [Verbose] > │         let v11 : uint8 = result |> Option.get                               │

00:00:39 #2567 [Verbose] > │         let v12 : UH1 = UH1_0(v11, v2)                                       │

00:00:39 #2568 [Verbose] > │         let v13 : int8 = v3 + 1y                                             │

00:00:39 #2569 [Verbose] > │         method14(v0, v1, v12, v13)                                           │

00:00:39 #2570 [Verbose] > │     else                                                                     │

00:00:39 #2571 [Verbose] > │         let v15 : int32 = 0                                                  │

00:00:39 #2572 [Verbose] > │         let v16 : US0 = method8(v1, v2, v15)                                 │

00:00:39 #2573 [Verbose] > │         match v16 with                                                       │

00:00:39 #2574 [Verbose] > │         | US0_1(v17, v18) -> (* Some *)                                      │

00:00:39 #2575 [Verbose] > │             let v19 : bool = v17 <= v0                                       │

00:00:39 #2576 [Verbose] > │             if v19 then                                                      │

00:00:39 #2577 [Verbose] > │                 v17                                                          │

00:00:39 #2578 [Verbose] > │             else                                                             │

00:00:39 #2579 [Verbose] > │                 let v20 : int8 = 0y                                          │

00:00:39 #2580 [Verbose] > │                 let v21 : UH1 = method15(v1, v20)                            │

00:00:39 #2581 [Verbose] > │                 method16(v0, v1, v21)                                        │

00:00:39 #2582 [Verbose] > │         | _ ->                                                               │

00:00:39 #2583 [Verbose] > │             let v24 : int8 = 0y                                              │

00:00:39 #2584 [Verbose] > │             let v25 : UH1 = method15(v1, v24)                                │

00:00:39 #2585 [Verbose] > │             method16(v0, v1, v25)                                            │

00:00:39 #2586 [Verbose] > │ and method13 (v0 : int32, v1 : UH0, v2 : UH0) : UH0 =                        │

00:00:39 #2587 [Verbose] > │     match v1 with                                                            │

00:00:39 #2588 [Verbose] > │     | UH0_0(v3, v4) -> (* Cons *)                                            │

00:00:39 #2589 [Verbose] > │         let v5 : UH0 = method13(v0, v4, v2)                                  │

00:00:39 #2590 [Verbose] > │         let v6 : bool = v0 = 1                                               │

00:00:39 #2591 [Verbose] > │         let v10 : int8 =                                                     │

00:00:39 #2592 [Verbose] > │             if v6 then                                                       │

00:00:39 #2593 [Verbose] > │                 1y                                                           │

00:00:39 #2594 [Verbose] > │             else                                                             │

00:00:39 #2595 [Verbose] > │                 let v7 : int8 = 0y                                           │

00:00:39 #2596 [Verbose] > │                 let v8 : int32 = 1                                           │

00:00:39 #2597 [Verbose] > │                 method6(v0, v7, v8)                                          │

00:00:39 #2598 [Verbose] > │         let v11 : int8 = v10 - 1y                                            │

00:00:39 #2599 [Verbose] > │         let v12 : UH1 = UH1_1                                                │

00:00:39 #2600 [Verbose] > │         let v13 : int8 = 0y                                                  │

00:00:39 #2601 [Verbose] > │         let v14 : int32 = method14(v0, v11, v12, v13)                        │

00:00:39 #2602 [Verbose] > │         UH0_0(v14, v5)                                                       │

00:00:39 #2603 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:39 #2604 [Verbose] > │         v2                                                                   │

00:00:39 #2605 [Verbose] > │ and method3 (v0 : UH0) : unit =                                              │

00:00:39 #2606 [Verbose] > │     match v0 with                                                            │

00:00:39 #2607 [Verbose] > │     | UH0_0(v1, v2) -> (* Cons *)                                            │

00:00:39 #2608 [Verbose] > │         let v3 : UH0 = method4()                                             │

00:00:39 #2609 [Verbose] > │         let v4 : UH0 = UH0_1                                                 │

00:00:39 #2610 [Verbose] > │         let v5 : UH0 = method5(v1, v3, v4)                                   │

00:00:39 #2611 [Verbose] > │         let v6 : UH3 = UH3_1                                                 │

00:00:39 #2612 [Verbose] > │         let v7 : UH3 = method10(v5, v6)                                      │

00:00:39 #2613 [Verbose] > │         let v8 : int32 = 0                                                   │

00:00:39 #2614 [Verbose] > │         let v9 : int32 = method12(v7, v8)                                    │

00:00:39 #2615 [Verbose] > │         let v10 : string = $"__expect / actual: %A{v9} / expected: %A{v1}"   │

00:00:39 #2616 [Verbose] > │         let v11 : bool = v9 = v1                                             │

00:00:39 #2617 [Verbose] > │         let v12 : bool = v11 = false                                         │

00:00:39 #2618 [Verbose] > │         if v12 then                                                          │

00:00:39 #2619 [Verbose] > │             failwith<unit> v10                                               │

00:00:39 #2620 [Verbose] > │         let v13 : UH0 = method4()                                            │

00:00:39 #2621 [Verbose] > │         let v14 : UH0 = UH0_1                                                │

00:00:39 #2622 [Verbose] > │         let v15 : UH0 = method13(v1, v13, v14)                               │

00:00:39 #2623 [Verbose] > │         let v16 : UH3 = UH3_1                                                │

00:00:39 #2624 [Verbose] > │         let v17 : UH3 = method10(v15, v16)                                   │

00:00:39 #2625 [Verbose] > │         let v18 : int32 = 0                                                  │

00:00:39 #2626 [Verbose] > │         let v19 : int32 = method12(v17, v18)                                 │

00:00:39 #2627 [Verbose] > │         let v20 : string = $"__expect / actual: %A{v19} / expected: %A{v1}"  │

00:00:39 #2628 [Verbose] > │         let v21 : bool = v19 = v1                                            │

00:00:39 #2629 [Verbose] > │         let v22 : bool = v21 = false                                         │

00:00:39 #2630 [Verbose] > │         if v22 then                                                          │

00:00:39 #2631 [Verbose] > │             failwith<unit> v20                                               │

00:00:39 #2632 [Verbose] > │         method3(v2)                                                          │

00:00:39 #2633 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:00:39 #2634 [Verbose] > │         ()                                                                   │

00:00:39 #2635 [Verbose] > │ and method0 () : unit =                                                      │

00:00:39 #2636 [Verbose] > │     let v0 : UH0 = method1()                                                 │

00:00:39 #2637 [Verbose] > │     method3(v0)                                                              │

00:00:39 #2638 [Verbose] > │ method0()                                                                    │

00:00:39 #2639 [Verbose] > │                                                                              │

00:00:39 #2640 [Verbose] > │                                                                              │

00:00:39 #2641 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:39 #2642 [Verbose] >

00:00:39 #2643 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:39 #2644 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:39 #2645 [Verbose] > │ ## main                                                                      │

00:00:39 #2646 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:39 #2647 [Verbose] >

00:00:39 #2648 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:39 #2649 [Verbose] > inl main (_args : array_base string) =

00:00:39 #2650 [Verbose] >     inl result = roll_progressively (Some console.write_line) roll_dice true

00:00:39 #2651 [Verbose] > (limit.max : i64)

00:00:39 #2652 [Verbose] >     console.write_line ($"$\"result: {!result}\"" : string)

00:00:39 #2653 [Verbose] >     0i32

00:00:39 #2654 [Verbose] >

00:00:39 #2655 [Verbose] > inl main () =

00:00:39 #2656 [Verbose] >     inl rotate_numbers' : i64 -> stream.stream u8 -> stream.stream u8 =

00:00:39 #2657 [Verbose] >         rotate_numbers

00:00:39 #2658 [Verbose] >

00:00:39 #2659 [Verbose] >     inl create_sequential_roller' :

00:00:39 #2660 [Verbose] >         optionm'.option' (string -> ())

00:00:39 #2661 [Verbose] >         -> list u8

00:00:39 #2662 [Verbose] >         -> (() -> u8)

00:00:39 #2663 [Verbose] >         =

00:00:39 #2664 [Verbose] >         optionm'.unbox >> create_sequential_roller

00:00:39 #2665 [Verbose] >

00:00:39 #2666 [Verbose] >     inl roll_progressively' :

00:00:39 #2667 [Verbose] >         optionm'.option' (string -> ())

00:00:39 #2668 [Verbose] >         -> (() -> u8)

00:00:39 #2669 [Verbose] >         -> bool

00:00:39 #2670 [Verbose] >         -> u64

00:00:39 #2671 [Verbose] >         -> u64

00:00:39 #2672 [Verbose] >         =

00:00:39 #2673 [Verbose] >         optionm'.unbox >> roll_progressively

00:00:39 #2674 [Verbose] >

00:00:39 #2675 [Verbose] >     inl roll_within_bounds' :

00:00:39 #2676 [Verbose] >         optionm'.option' (string -> ())

00:00:39 #2677 [Verbose] >         -> u64

00:00:39 #2678 [Verbose] >         -> list u8

00:00:39 #2679 [Verbose] >         -> optionm'.option' u64

00:00:39 #2680 [Verbose] >         =

00:00:39 #2681 [Verbose] >         fun a b c =>

00:00:39 #2682 [Verbose] >             (optionm'.unbox >> roll_within_bounds) a b c

00:00:39 #2683 [Verbose] >             |> optionm'.box

00:00:39 #2684 [Verbose] >

00:00:39 #2685 [Verbose] >     $"let rotate_numbers x = !rotate_numbers' x" : ()

00:00:39 #2686 [Verbose] >     $"let create_sequential_roller x = !create_sequential_roller' x" : ()

00:00:39 #2687 [Verbose] >     $"let roll_progressively x = !roll_progressively' x" : ()

00:00:39 #2688 [Verbose] >     $"let roll_within_bounds x = !roll_within_bounds' x" : ()

00:00:39 #2689 [Verbose] >     $"let main args = !main args" : ()

00:00:39 #2690 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1642-0692-9249-9b7ddaa9d9e0\main.spi

00:00:40 #2691 [Verbose] >

00:00:40 #2692 [Verbose] > ╭─[ 1.35s - stdout ]───────────────────────────────────────────────────────────╮

00:00:40 #2693 [Verbose] > │ type UH0 =                                                                   │

00:00:40 #2694 [Verbose] > │     | UH0_0 of uint8 * (unit -> UH0)                                         │

00:00:40 #2695 [Verbose] > │     | UH0_1                                                                  │

00:00:40 #2696 [Verbose] > │ and UH1 =                                                                    │

00:00:40 #2697 [Verbose] > │     | UH1_0 of uint8 * UH1                                                   │

00:00:40 #2698 [Verbose] > │     | UH1_1                                                                  │

00:00:40 #2699 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:00:40 #2700 [Verbose] > │     | US0_0                                                                  │

00:00:40 #2701 [Verbose] > │     | US0_1 of f1_0 : (string -> unit)                                       │

00:00:40 #2702 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:00:40 #2703 [Verbose] > │     | US1_0 of f0_0 : UH0                                                    │

00:00:40 #2704 [Verbose] > │     | US1_1 of f1_0 : (unit -> UH0)                                          │

00:00:40 #2705 [Verbose] > │ and Mut0 = {mutable l0 : US1}                                                │

00:00:40 #2706 [Verbose] > │ and Mut1 = {mutable l0 : int64}                                              │

00:00:40 #2707 [Verbose] > │ and [<Struct>] US2 =                                                         │

00:00:40 #2708 [Verbose] > │     | US2_0                                                                  │

00:00:40 #2709 [Verbose] > │     | US2_1 of f1_0 : uint8                                                  │

00:00:40 #2710 [Verbose] > │ and Mut2 = {mutable l0 : US2}                                                │

00:00:40 #2711 [Verbose] > │ and [<Struct>] US3 =                                                         │

00:00:40 #2712 [Verbose] > │     | US3_0                                                                  │

00:00:40 #2713 [Verbose] > │     | US3_1 of f1_0 : uint64 * f1_1 : UH1                                    │

00:00:40 #2714 [Verbose] > │ and UH2 =                                                                    │

00:00:40 #2715 [Verbose] > │     | UH2_0 of uint64 * (unit -> UH2)                                        │

00:00:40 #2716 [Verbose] > │     | UH2_1                                                                  │

00:00:40 #2717 [Verbose] > │ and [<Struct>] US4 =                                                         │

00:00:40 #2718 [Verbose] > │     | US4_0                                                                  │

00:00:40 #2719 [Verbose] > │     | US4_1 of f1_0 : uint64                                                 │

00:00:40 #2720 [Verbose] > │ and [<Struct>] US5 =                                                         │

00:00:40 #2721 [Verbose] > │     | US5_0                                                                  │

00:00:40 #2722 [Verbose] > │     | US5_1 of f1_0 : int64 * f1_1 : UH1                                     │

00:00:40 #2723 [Verbose] > │ let rec closure2 (v0 : UH0) () : UH0 =                                       │

00:00:40 #2724 [Verbose] > │     v0                                                                       │

00:00:40 #2725 [Verbose] > │ and method0 (v0 : int64, v1 : UH0, v2 : UH0) : UH0 =                         │

00:00:40 #2726 [Verbose] > │     match v1 with                                                            │

00:00:40 #2727 [Verbose] > │     | UH0_0(v3, v4) -> (* StreamCons *)                                      │

00:00:40 #2728 [Verbose] > │         let v5 : UH0 = v4 ()                                                 │

00:00:40 #2729 [Verbose] > │         let v6 : UH0 = method0(v0, v5, v2)                                   │

00:00:40 #2730 [Verbose] > │         let v7 : int64 = int64 v3                                            │

00:00:40 #2731 [Verbose] > │         let v8 : int64 = v7 - 1L                                             │

00:00:40 #2732 [Verbose] > │         let v9 : int64 = v8 + v0                                             │

00:00:40 #2733 [Verbose] > │         let v10 : int64 = v9 % v0                                            │

00:00:40 #2734 [Verbose] > │         let v11 : int64 = v10 + 1L                                           │

00:00:40 #2735 [Verbose] > │         let v12 : uint8 = uint8 v11                                          │

00:00:40 #2736 [Verbose] > │         let v13 : (unit -> UH0) = closure2(v6)                               │

00:00:40 #2737 [Verbose] > │         UH0_0(v12, v13)                                                      │

00:00:40 #2738 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:40 #2739 [Verbose] > │         v2                                                                   │

00:00:40 #2740 [Verbose] > │ and closure1 (v0 : int64) (v1 : UH0) : UH0 =                                 │

00:00:40 #2741 [Verbose] > │     let v2 : UH0 = UH0_1                                                     │

00:00:40 #2742 [Verbose] > │     method0(v0, v1, v2)                                                      │

00:00:40 #2743 [Verbose] > │ and closure0 () (v0 : int64) : (UH0 -> UH0) =                                │

00:00:40 #2744 [Verbose] > │     closure1(v0)                                                             │

00:00:40 #2745 [Verbose] > │ and closure4 () (v0 : (string -> unit)) : US0 =                              │

00:00:41 #2746 [Verbose] > │     US0_1(v0)                                                                │

00:00:41 #2747 [Verbose] > │ and method1 (v0 : UH1, v1 : UH1) : UH1 =                                     │

00:00:41 #2748 [Verbose] > │     match v0 with                                                            │

00:00:41 #2749 [Verbose] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

00:00:41 #2750 [Verbose] > │         let v4 : UH1 = UH1_0(v2, v1)                                         │

00:00:41 #2751 [Verbose] > │         method1(v3, v4)                                                      │

00:00:41 #2752 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #2753 [Verbose] > │         v1                                                                   │

00:00:41 #2754 [Verbose] > │ and method2 (v0 : UH1, v1 : UH1) : UH1 =                                     │

00:00:41 #2755 [Verbose] > │     match v0 with                                                            │

00:00:41 #2756 [Verbose] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

00:00:41 #2757 [Verbose] > │         let v4 : UH1 = method2(v3, v1)                                       │

00:00:41 #2758 [Verbose] > │         UH1_0(v2, v4)                                                        │

00:00:41 #2759 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #2760 [Verbose] > │         v1                                                                   │

00:00:41 #2761 [Verbose] > │ and closure6 (v0 : UH0) () : UH0 =                                           │

00:00:41 #2762 [Verbose] > │     v0                                                                       │

00:00:41 #2763 [Verbose] > │ and method3 (v0 : UH1, v1 : UH0) : UH0 =                                     │

00:00:41 #2764 [Verbose] > │     match v0 with                                                            │

00:00:41 #2765 [Verbose] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

00:00:41 #2766 [Verbose] > │         let v4 : UH0 = method3(v3, v1)                                       │

00:00:41 #2767 [Verbose] > │         let v5 : (unit -> UH0) = closure6(v4)                                │

00:00:41 #2768 [Verbose] > │         UH0_0(v2, v5)                                                        │

00:00:41 #2769 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #2770 [Verbose] > │         v1                                                                   │

00:00:41 #2771 [Verbose] > │ and closure7 (v0 : UH0) () : UH0 =                                           │

00:00:41 #2772 [Verbose] > │     v0                                                                       │

00:00:41 #2773 [Verbose] > │ and closure8 (v0 : UH0, v1 : Mut0) () : UH0 =                                │

00:00:41 #2774 [Verbose] > │     let v2 : US1 = v1.l0                                                     │

00:00:41 #2775 [Verbose] > │     match v2 with                                                            │

00:00:41 #2776 [Verbose] > │     | US1_0(v3) -> (* Computed *)                                            │

00:00:41 #2777 [Verbose] > │         v3                                                                   │

00:00:41 #2778 [Verbose] > │     | US1_1(v4) -> (* NotComputed *)                                         │

00:00:41 #2779 [Verbose] > │         let v5 : UH0 = v4 ()                                                 │

00:00:41 #2780 [Verbose] > │         let v12 : UH0 =                                                      │

00:00:41 #2781 [Verbose] > │             match v5 with                                                    │

00:00:41 #2782 [Verbose] > │             | UH0_0(v7, v8) -> (* StreamCons *)                              │

00:00:41 #2783 [Verbose] > │                 let v9 : (unit -> UH0) = method4(v0, v8)                     │

00:00:41 #2784 [Verbose] > │                 UH0_0(v7, v9)                                                │

00:00:41 #2785 [Verbose] > │             | UH0_1 -> (* StreamNil *)                                       │

00:00:41 #2786 [Verbose] > │                 UH0_1                                                        │

00:00:41 #2787 [Verbose] > │         let v13 : US1 = US1_0(v12)                                           │

00:00:41 #2788 [Verbose] > │         v1.l0 <- v13                                                         │

00:00:41 #2789 [Verbose] > │         v12                                                                  │

00:00:41 #2790 [Verbose] > │ and method4 (v0 : UH0, v1 : (unit -> UH0)) : (unit -> UH0) =                 │

00:00:41 #2791 [Verbose] > │     let v2 : US1 = US1_1(v1)                                                 │

00:00:41 #2792 [Verbose] > │     let v3 : Mut0 = {l0 = v2} : Mut0                                         │

00:00:41 #2793 [Verbose] > │     closure8(v0, v3)                                                         │

00:00:41 #2794 [Verbose] > │ and method6 (v0 : int64, v1 : UH0) : US2 =                                   │

00:00:41 #2795 [Verbose] > │     match v1 with                                                            │

00:00:41 #2796 [Verbose] > │     | UH0_0(v2, v3) -> (* StreamCons *)                                      │

00:00:41 #2797 [Verbose] > │         let v4 : bool = v0 <= 0L                                             │

00:00:41 #2798 [Verbose] > │         if v4 then                                                           │

00:00:41 #2799 [Verbose] > │             US2_1(v2)                                                        │

00:00:41 #2800 [Verbose] > │         else                                                                 │

00:00:41 #2801 [Verbose] > │             let v6 : int64 = v0 - 1L                                         │

00:00:41 #2802 [Verbose] > │             let v7 : UH0 = v3 ()                                             │

00:00:41 #2803 [Verbose] > │             method6(v6, v7)                                                  │

00:00:41 #2804 [Verbose] > │     | UH0_1 -> (* StreamNil *)                                               │

00:00:41 #2805 [Verbose] > │         US2_0                                                                │

00:00:41 #2806 [Verbose] > │ and method5 (v0 : US0, v1 : (unit -> UH0), v2 : Mut1, v3 : Mut1, v4 : Mut1,  │

00:00:41 #2807 [Verbose] > │ v5 : Mut2) : uint8 =                                                         │

00:00:41 #2808 [Verbose] > │     let v6 : int64 = v2.l0                                                   │

00:00:41 #2809 [Verbose] > │     let v7 : int64 = v3.l0                                                   │

00:00:41 #2810 [Verbose] > │     let v8 : int64 = v4.l0                                                   │

00:00:41 #2811 [Verbose] > │     let v9 : US2 = v5.l0                                                     │

00:00:41 #2812 [Verbose] > │     let v10 : string = $"create_sequential_roller / roll / current_index:    │

00:00:41 #2813 [Verbose] > │ {v6} / acc: {v7} / len: {v8} / last_item: %A{v9}"                            │

00:00:41 #2814 [Verbose] > │     match v0 with                                                            │

00:00:41 #2815 [Verbose] > │     | US0_0 -> (* None *)                                                    │

00:00:41 #2816 [Verbose] > │         ()                                                                   │

00:00:41 #2817 [Verbose] > │     | US0_1(v11) -> (* Some *)                                               │

00:00:41 #2818 [Verbose] > │         v11 v10                                                              │

00:00:41 #2819 [Verbose] > │     let v12 : UH0 = v1 ()                                                    │

00:00:41 #2820 [Verbose] > │     let v13 : int64 = v2.l0                                                  │

00:00:41 #2821 [Verbose] > │     let v14 : US2 = method6(v13, v12)                                        │

00:00:41 #2822 [Verbose] > │     match v14 with                                                           │

00:00:41 #2823 [Verbose] > │     | US2_0 -> (* None *)                                                    │

00:00:41 #2824 [Verbose] > │         let v19 : string = $"create_sequential_roller / roll / None"         │

00:00:41 #2825 [Verbose] > │         match v0 with                                                        │

00:00:41 #2826 [Verbose] > │         | US0_0 -> (* None *)                                                │

00:00:41 #2827 [Verbose] > │             ()                                                               │

00:00:41 #2828 [Verbose] > │         | US0_1(v20) -> (* Some *)                                           │

00:00:41 #2829 [Verbose] > │             v20 v19                                                          │

00:00:41 #2830 [Verbose] > │         let v21 : int64 = v4.l0                                              │

00:00:41 #2831 [Verbose] > │         let v22 : bool = v21 = -1L                                           │

00:00:41 #2832 [Verbose] > │         if v22 then                                                          │

00:00:41 #2833 [Verbose] > │             let v23 : int64 = v2.l0                                          │

00:00:41 #2834 [Verbose] > │             v4.l0 <- v23                                                     │

00:00:41 #2835 [Verbose] > │             ()                                                               │

00:00:41 #2836 [Verbose] > │         let v24 : int64 = v3.l0                                              │

00:00:41 #2837 [Verbose] > │         let v25 : int64 = v4.l0                                              │

00:00:41 #2838 [Verbose] > │         let v26 : bool = v24 >= v25                                          │

00:00:41 #2839 [Verbose] > │         let v29 : int64 =                                                    │

00:00:41 #2840 [Verbose] > │             if v26 then                                                      │

00:00:41 #2841 [Verbose] > │                 1L                                                           │

00:00:41 #2842 [Verbose] > │             else                                                             │

00:00:41 #2843 [Verbose] > │                 let v27 : int64 = v3.l0                                      │

00:00:41 #2844 [Verbose] > │                 let v28 : int64 = v27 + 1L                                   │

00:00:41 #2845 [Verbose] > │                 v28                                                          │

00:00:41 #2846 [Verbose] > │         v3.l0 <- v29                                                         │

00:00:41 #2847 [Verbose] > │         let v30 : int64 = v3.l0                                              │

00:00:41 #2848 [Verbose] > │         let v31 : int64 = v30 - 1L                                           │

00:00:41 #2849 [Verbose] > │         v2.l0 <- v31                                                         │

00:00:41 #2850 [Verbose] > │         let v32 : US2 = US2_0                                                │

00:00:41 #2851 [Verbose] > │         v5.l0 <- v32                                                         │

00:00:41 #2852 [Verbose] > │         method5(v0, v1, v2, v3, v4, v5)                                      │

00:00:41 #2853 [Verbose] > │     | US2_1(v15) -> (* Some *)                                               │

00:00:41 #2854 [Verbose] > │         let v16 : int64 = v2.l0                                              │

00:00:41 #2855 [Verbose] > │         let v17 : int64 = v16 + 1L                                           │

00:00:41 #2856 [Verbose] > │         v2.l0 <- v17                                                         │

00:00:41 #2857 [Verbose] > │         let v18 : US2 = US2_1(v15)                                           │

00:00:41 #2858 [Verbose] > │         v5.l0 <- v18                                                         │

00:00:41 #2859 [Verbose] > │         v15                                                                  │

00:00:41 #2860 [Verbose] > │ and closure9 (v0 : US0, v1 : (unit -> UH0), v2 : Mut1, v3 : Mut1, v4 : Mut1, │

00:00:41 #2861 [Verbose] > │ v5 : Mut2) () : uint8 =                                                      │

00:00:41 #2862 [Verbose] > │     method5(v0, v1, v2, v3, v4, v5)                                          │

00:00:41 #2863 [Verbose] > │ and closure5 (v0 : US0) (v1 : UH1) : (unit -> uint8) =                       │

00:00:41 #2864 [Verbose] > │     let v2 : string = $"create_sequential_roller ()"                         │

00:00:41 #2865 [Verbose] > │     match v0 with                                                            │

00:00:41 #2866 [Verbose] > │     | US0_0 -> (* None *)                                                    │

00:00:41 #2867 [Verbose] > │         ()                                                                   │

00:00:41 #2868 [Verbose] > │     | US0_1(v3) -> (* Some *)                                                │

00:00:41 #2869 [Verbose] > │         v3 v2                                                                │

00:00:41 #2870 [Verbose] > │     let v4 : UH1 = UH1_1                                                     │

00:00:41 #2871 [Verbose] > │     let v5 : UH1 = method1(v1, v4)                                           │

00:00:41 #2872 [Verbose] > │     let v6 : UH1 = method2(v1, v5)                                           │

00:00:41 #2873 [Verbose] > │     let v7 : UH0 = UH0_1                                                     │

00:00:41 #2874 [Verbose] > │     let v8 : UH0 = method3(v6, v7)                                           │

00:00:41 #2875 [Verbose] > │     let v9 : (unit -> UH0) = closure7(v8)                                    │

00:00:41 #2876 [Verbose] > │     let v10 : (unit -> UH0) = method4(v8, v9)                                │

00:00:41 #2877 [Verbose] > │     let v11 : Mut1 = {l0 = 0L} : Mut1                                        │

00:00:41 #2878 [Verbose] > │     let v12 : Mut1 = {l0 = 1L} : Mut1                                        │

00:00:41 #2879 [Verbose] > │     let v13 : Mut1 = {l0 = -1L} : Mut1                                       │

00:00:41 #2880 [Verbose] > │     let v14 : US2 = US2_0                                                    │

00:00:41 #2881 [Verbose] > │     let v15 : Mut2 = {l0 = v14} : Mut2                                       │

00:00:41 #2882 [Verbose] > │     closure9(v0, v10, v11, v12, v13, v15)                                    │

00:00:41 #2883 [Verbose] > │ and closure3 () (v0 : (string -> unit) option) : (UH1 -> (unit -> uint8)) =  │

00:00:41 #2884 [Verbose] > │     let v1 : ((string -> unit) -> US0) = closure4()                          │

00:00:41 #2885 [Verbose] > │     let v2 : US0 = US0_0                                                     │

00:00:41 #2886 [Verbose] > │     let v3 : US0 = v0 |> Option.map v1 |> Option.defaultValue v2             │

00:00:41 #2887 [Verbose] > │     closure5(v3)                                                             │

00:00:41 #2888 [Verbose] > │ and method7 (v0 : US0, v1 : uint64, v2 : int8, v3 : uint64) : int8 =         │

00:00:41 #2889 [Verbose] > │     let v4 : bool = v3 < v1                                                  │

00:00:41 #2890 [Verbose] > │     if v4 then                                                               │

00:00:41 #2891 [Verbose] > │         let v5 : uint64 = v3 * 6UL                                           │

00:00:41 #2892 [Verbose] > │         let v6 : bool = v5 > v3                                              │

00:00:41 #2893 [Verbose] > │         if v6 then                                                           │

00:00:41 #2894 [Verbose] > │             let v7 : int8 = v2 + 1y                                          │

00:00:41 #2895 [Verbose] > │             method7(v0, v1, v7, v5)                                          │

00:00:41 #2896 [Verbose] > │         else                                                                 │

00:00:41 #2897 [Verbose] > │             let v9 : string = $"calculate_dice_count / max: {v1} / n: {v2} / │

00:00:41 #2898 [Verbose] > │ p: {v3}"                                                                     │

00:00:41 #2899 [Verbose] > │             match v0 with                                                    │

00:00:41 #2900 [Verbose] > │             | US0_0 -> (* None *)                                            │

00:00:41 #2901 [Verbose] > │                 ()                                                           │

00:00:41 #2902 [Verbose] > │             | US0_1(v10) -> (* Some *)                                       │

00:00:41 #2903 [Verbose] > │                 v10 v9                                                       │

00:00:41 #2904 [Verbose] > │             v2                                                               │

00:00:41 #2905 [Verbose] > │     else                                                                     │

00:00:41 #2906 [Verbose] > │         let v12 : string = $"calculate_dice_count / max: {v1} / n: {v2} / p: │

00:00:41 #2907 [Verbose] > │ {v3}"                                                                        │

00:00:41 #2908 [Verbose] > │         match v0 with                                                        │

00:00:41 #2909 [Verbose] > │         | US0_0 -> (* None *)                                                │

00:00:41 #2910 [Verbose] > │             ()                                                               │

00:00:41 #2911 [Verbose] > │         | US0_1(v13) -> (* Some *)                                           │

00:00:41 #2912 [Verbose] > │             v13 v12                                                          │

00:00:41 #2913 [Verbose] > │         v2                                                                   │

00:00:41 #2914 [Verbose] > │ and closure77 () () : UH2 =                                                  │

00:00:41 #2915 [Verbose] > │     let v0 : (unit -> UH2) = closure77()                                     │

00:00:41 #2916 [Verbose] > │     UH2_0(0UL, v0)                                                           │

00:00:41 #2917 [Verbose] > │ and closure76 () () : UH2 =                                                  │

00:00:41 #2918 [Verbose] > │     let v0 : (unit -> UH2) = closure77()                                     │

00:00:41 #2919 [Verbose] > │     UH2_0(9223372036854775808UL, v0)                                         │

00:00:41 #2920 [Verbose] > │ and closure75 () () : UH2 =                                                  │

00:00:41 #2921 [Verbose] > │     let v0 : (unit -> UH2) = closure76()                                     │

00:00:41 #2922 [Verbose] > │     UH2_0(4611686018427387904UL, v0)                                         │

00:00:41 #2923 [Verbose] > │ and closure74 () () : UH2 =                                                  │

00:00:41 #2924 [Verbose] > │     let v0 : (unit -> UH2) = closure75()                                     │

00:00:41 #2925 [Verbose] > │     UH2_0(6917529027641081856UL, v0)                                         │

00:00:41 #2926 [Verbose] > │ and closure73 () () : UH2 =                                                  │

00:00:41 #2927 [Verbose] > │     let v0 : (unit -> UH2) = closure74()                                     │

00:00:41 #2928 [Verbose] > │     UH2_0(1152921504606846976UL, v0)                                         │

00:00:41 #2929 [Verbose] > │ and closure72 () () : UH2 =                                                  │

00:00:41 #2930 [Verbose] > │     let v0 : (unit -> UH2) = closure73()                                     │

00:00:41 #2931 [Verbose] > │     UH2_0(15564440312192434176UL, v0)                                        │

00:00:41 #2932 [Verbose] > │ and closure71 () () : UH2 =                                                  │

00:00:41 #2933 [Verbose] > │     let v0 : (unit -> UH2) = closure72()                                     │

00:00:41 #2934 [Verbose] > │     UH2_0(11817445422220181504UL, v0)                                        │

00:00:41 #2935 [Verbose] > │ and closure70 () () : UH2 =                                                  │

00:00:41 #2936 [Verbose] > │     let v0 : (unit -> UH2) = closure71()                                     │

00:00:41 #2937 [Verbose] > │     UH2_0(5044031582654955520UL, v0)                                         │

00:00:41 #2938 [Verbose] > │ and closure69 () () : UH2 =                                                  │

00:00:41 #2939 [Verbose] > │     let v0 : (unit -> UH2) = closure70()                                     │

00:00:41 #2940 [Verbose] > │     UH2_0(6989586621679009792UL, v0)                                         │

00:00:41 #2941 [Verbose] > │ and closure68 () () : UH2 =                                                  │

00:00:41 #2942 [Verbose] > │     let v0 : (unit -> UH2) = closure69()                                     │

00:00:41 #2943 [Verbose] > │     UH2_0(16537217831704461312UL, v0)                                        │

00:00:41 #2944 [Verbose] > │ and closure67 () () : UH2 =                                                  │

00:00:41 #2945 [Verbose] > │     let v0 : (unit -> UH2) = closure68()                                     │

00:00:41 #2946 [Verbose] > │     UH2_0(11979575008805519360UL, v0)                                        │

00:00:41 #2947 [Verbose] > │ and closure66 () () : UH2 =                                                  │

00:00:41 #2948 [Verbose] > │     let v0 : (unit -> UH2) = closure67()                                     │

00:00:41 #2949 [Verbose] > │     UH2_0(14294425217273954304UL, v0)                                        │

00:00:41 #2950 [Verbose] > │ and closure65 () () : UH2 =                                                  │

00:00:41 #2951 [Verbose] > │     let v0 : (unit -> UH2) = closure66()                                     │

00:00:41 #2952 [Verbose] > │     UH2_0(2382404202878992384UL, v0)                                         │

00:00:41 #2953 [Verbose] > │ and closure64 () () : UH2 =                                                  │

00:00:41 #2954 [Verbose] > │     let v0 : (unit -> UH2) = closure65()                                     │

00:00:41 #2955 [Verbose] > │     UH2_0(6545982058383015936UL, v0)                                         │

00:00:41 #2956 [Verbose] > │ and closure63 () () : UH2 =                                                  │

00:00:41 #2957 [Verbose] > │     let v0 : (unit -> UH2) = closure64()                                     │

00:00:41 #2958 [Verbose] > │     UH2_0(10314369046585278464UL, v0)                                        │

00:00:41 #2959 [Verbose] > │ and closure62 () () : UH2 =                                                  │

00:00:41 #2960 [Verbose] > │     let v0 : (unit -> UH2) = closure63()                                     │

00:00:41 #2961 [Verbose] > │     UH2_0(4793518853382471680UL, v0)                                         │

00:00:41 #2962 [Verbose] > │ and closure61 () () : UH2 =                                                  │

00:00:41 #2963 [Verbose] > │     let v0 : (unit -> UH2) = closure62()                                     │

00:00:41 #2964 [Verbose] > │     UH2_0(3873377154515337216UL, v0)                                         │

00:00:41 #2965 [Verbose] > │ and closure60 () () : UH2 =                                                  │

00:00:41 #2966 [Verbose] > │     let v0 : (unit -> UH2) = closure61()                                     │

00:00:41 #2967 [Verbose] > │     UH2_0(645562859085889536UL, v0)                                          │

00:00:41 #2968 [Verbose] > │ and closure59 () () : UH2 =                                                  │

00:00:41 #2969 [Verbose] > │     let v0 : (unit -> UH2) = closure60()                                     │

00:00:41 #2970 [Verbose] > │     UH2_0(107593809847648256UL, v0)                                          │

00:00:41 #2971 [Verbose] > │ and closure58 () () : UH2 =                                                  │

00:00:41 #2972 [Verbose] > │     let v0 : (unit -> UH2) = closure59()                                     │

00:00:41 #2973 [Verbose] > │     UH2_0(3092389647259533312UL, v0)                                         │

00:00:41 #2974 [Verbose] > │ and closure57 () () : UH2 =                                                  │

00:00:41 #2975 [Verbose] > │     let v0 : (unit -> UH2) = closure58()                                     │

00:00:41 #2976 [Verbose] > │     UH2_0(9738770311398031360UL, v0)                                         │

00:00:41 #2977 [Verbose] > │ and closure56 () () : UH2 =                                                  │

00:00:41 #2978 [Verbose] > │     let v0 : (unit -> UH2) = closure57()                                     │

00:00:41 #2979 [Verbose] > │     UH2_0(16995415113324298240UL, v0)                                        │

00:00:41 #2980 [Verbose] > │ and closure55 () () : UH2 =                                                  │

00:00:41 #2981 [Verbose] > │     let v0 : (unit -> UH2) = closure56()                                     │

00:00:41 #2982 [Verbose] > │     UH2_0(8981483876790566912UL, v0)                                         │

00:00:41 #2983 [Verbose] > │ and closure54 () () : UH2 =                                                  │

00:00:41 #2984 [Verbose] > │     let v0 : (unit -> UH2) = closure55()                                     │

00:00:41 #2985 [Verbose] > │     UH2_0(13794743361938128896UL, v0)                                        │

00:00:41 #2986 [Verbose] > │ and closure53 () () : UH2 =                                                  │

00:00:41 #2987 [Verbose] > │     let v0 : (unit -> UH2) = closure54()                                     │

00:00:41 #2988 [Verbose] > │     UH2_0(2299123893656354816UL, v0)                                         │

00:00:41 #2989 [Verbose] > │ and closure52 () () : UH2 =                                                  │

00:00:41 #2990 [Verbose] > │     let v0 : (unit -> UH2) = closure53()                                     │

00:00:41 #2991 [Verbose] > │     UH2_0(3457644661227651072UL, v0)                                         │

00:00:41 #2992 [Verbose] > │ and closure51 () () : UH2 =                                                  │

00:00:41 #2993 [Verbose] > │     let v0 : (unit -> UH2) = closure52()                                     │

00:00:41 #2994 [Verbose] > │     UH2_0(576274110204608512UL, v0)                                          │

00:00:41 #2995 [Verbose] > │ and closure50 () () : UH2 =                                                  │

00:00:41 #2996 [Verbose] > │     let v0 : (unit -> UH2) = closure51()                                     │

00:00:41 #2997 [Verbose] > │     UH2_0(6244960376270618624UL, v0)                                         │

00:00:41 #2998 [Verbose] > │ and closure49 () () : UH2 =                                                  │

00:00:41 #2999 [Verbose] > │     let v0 : (unit -> UH2) = closure50()                                     │

00:00:41 #3000 [Verbose] > │     UH2_0(13338656111851470848UL, v0)                                        │

00:00:41 #3001 [Verbose] > │ and closure48 () () : UH2 =                                                  │

00:00:41 #3002 [Verbose] > │     let v0 : (unit -> UH2) = closure49()                                     │

00:00:41 #3003 [Verbose] > │     UH2_0(14520938734448279552UL, v0)                                        │

00:00:41 #3004 [Verbose] > │ and closure47 () () : UH2 =                                                  │

00:00:41 #3005 [Verbose] > │     let v0 : (unit -> UH2) = closure48()                                     │

00:00:41 #3006 [Verbose] > │     UH2_0(14717985838214414336UL, v0)                                        │

00:00:41 #3007 [Verbose] > │ and closure46 () () : UH2 =                                                  │

00:00:41 #3008 [Verbose] > │     let v0 : (unit -> UH2) = closure47()                                     │

00:00:41 #3009 [Verbose] > │     UH2_0(5527454985320660992UL, v0)                                         │

00:00:41 #3010 [Verbose] > │ and closure45 () () : UH2 =                                                  │

00:00:41 #3011 [Verbose] > │     let v0 : (unit -> UH2) = closure46()                                     │

00:00:41 #3012 [Verbose] > │     UH2_0(16293529225644736512UL, v0)                                        │

00:00:41 #3013 [Verbose] > │ and closure44 () () : UH2 =                                                  │

00:00:41 #3014 [Verbose] > │     let v0 : (unit -> UH2) = closure45()                                     │

00:00:41 #3015 [Verbose] > │     UH2_0(11938960241128898560UL, v0)                                        │

00:00:41 #3016 [Verbose] > │ and closure43 () () : UH2 =                                                  │

00:00:41 #3017 [Verbose] > │     let v0 : (unit -> UH2) = closure44()                                     │

00:00:41 #3018 [Verbose] > │     UH2_0(8138741398091333632UL, v0)                                         │

00:00:41 #3019 [Verbose] > │ and closure42 () () : UH2 =                                                  │

00:00:41 #3020 [Verbose] > │     let v0 : (unit -> UH2) = closure43()                                     │

00:00:41 #3021 [Verbose] > │     UH2_0(7505371590918406144UL, v0)                                         │

00:00:41 #3022 [Verbose] > │ and closure41 () () : UH2 =                                                  │

00:00:41 #3023 [Verbose] > │     let v0 : (unit -> UH2) = closure42()                                     │

00:00:41 #3024 [Verbose] > │     UH2_0(16623181993244360704UL, v0)                                        │

00:00:41 #3025 [Verbose] > │ and closure40 () () : UH2 =                                                  │

00:00:41 #3026 [Verbose] > │     let v0 : (unit -> UH2) = closure41()                                     │

00:00:41 #3027 [Verbose] > │     UH2_0(8919445023443910656UL, v0)                                         │

00:00:41 #3028 [Verbose] > │ and closure39 () () : UH2 =                                                  │

00:00:41 #3029 [Verbose] > │     let v0 : (unit -> UH2) = closure40()                                     │

00:00:41 #3030 [Verbose] > │     UH2_0(4561031516192243712UL, v0)                                         │

00:00:41 #3031 [Verbose] > │ and closure38 () () : UH2 =                                                  │

00:00:41 #3032 [Verbose] > │     let v0 : (unit -> UH2) = closure39()                                     │

00:00:41 #3033 [Verbose] > │     UH2_0(9983543956220149760UL, v0)                                         │

00:00:41 #3034 [Verbose] > │ and closure37 () () : UH2 =                                                  │

00:00:41 #3035 [Verbose] > │     let v0 : (unit -> UH2) = closure38()                                     │

00:00:41 #3036 [Verbose] > │     UH2_0(4738381338321616896UL, v0)                                         │

00:00:41 #3037 [Verbose] > │ and closure36 () () : UH2 =                                                  │

00:00:41 #3038 [Verbose] > │     let v0 : (unit -> UH2) = closure37()                                     │

00:00:41 #3039 [Verbose] > │     UH2_0(789730223053602816UL, v0)                                          │

00:00:41 #3040 [Verbose] > │ and closure35 () () : UH2 =                                                  │

00:00:41 #3041 [Verbose] > │     let v0 : (unit -> UH2) = closure36()                                     │

00:00:41 #3042 [Verbose] > │     UH2_0(131621703842267136UL, v0)                                          │

00:00:41 #3043 [Verbose] > │ and closure34 () () : UH2 =                                                  │

00:00:41 #3044 [Verbose] > │     let v0 : (unit -> UH2) = closure35()                                     │

00:00:41 #3045 [Verbose] > │     UH2_0(21936950640377856UL, v0)                                           │

00:00:41 #3046 [Verbose] > │ and closure33 () () : UH2 =                                                  │

00:00:41 #3047 [Verbose] > │     let v0 : (unit -> UH2) = closure34()                                     │

00:00:41 #3048 [Verbose] > │     UH2_0(3656158440062976UL, v0)                                            │

00:00:41 #3049 [Verbose] > │ and closure32 () () : UH2 =                                                  │

00:00:41 #3050 [Verbose] > │     let v0 : (unit -> UH2) = closure33()                                     │

00:00:41 #3051 [Verbose] > │     UH2_0(609359740010496UL, v0)                                             │

00:00:41 #3052 [Verbose] > │ and closure31 () () : UH2 =                                                  │

00:00:41 #3053 [Verbose] > │     let v0 : (unit -> UH2) = closure32()                                     │

00:00:41 #3054 [Verbose] > │     UH2_0(101559956668416UL, v0)                                             │

00:00:41 #3055 [Verbose] > │ and closure30 () () : UH2 =                                                  │

00:00:41 #3056 [Verbose] > │     let v0 : (unit -> UH2) = closure31()                                     │

00:00:41 #3057 [Verbose] > │     UH2_0(16926659444736UL, v0)                                              │

00:00:41 #3058 [Verbose] > │ and closure29 () () : UH2 =                                                  │

00:00:41 #3059 [Verbose] > │     let v0 : (unit -> UH2) = closure30()                                     │

00:00:41 #3060 [Verbose] > │     UH2_0(2821109907456UL, v0)                                               │

00:00:41 #3061 [Verbose] > │ and closure28 () () : UH2 =                                                  │

00:00:41 #3062 [Verbose] > │     let v0 : (unit -> UH2) = closure29()                                     │

00:00:41 #3063 [Verbose] > │     UH2_0(470184984576UL, v0)                                                │

00:00:41 #3064 [Verbose] > │ and closure27 () () : UH2 =                                                  │

00:00:41 #3065 [Verbose] > │     let v0 : (unit -> UH2) = closure28()                                     │

00:00:41 #3066 [Verbose] > │     UH2_0(78364164096UL, v0)                                                 │

00:00:41 #3067 [Verbose] > │ and closure26 () () : UH2 =                                                  │

00:00:41 #3068 [Verbose] > │     let v0 : (unit -> UH2) = closure27()                                     │

00:00:41 #3069 [Verbose] > │     UH2_0(13060694016UL, v0)                                                 │

00:00:41 #3070 [Verbose] > │ and closure25 () () : UH2 =                                                  │

00:00:41 #3071 [Verbose] > │     let v0 : (unit -> UH2) = closure26()                                     │

00:00:41 #3072 [Verbose] > │     UH2_0(2176782336UL, v0)                                                  │

00:00:41 #3073 [Verbose] > │ and closure24 () () : UH2 =                                                  │

00:00:41 #3074 [Verbose] > │     let v0 : (unit -> UH2) = closure25()                                     │

00:00:41 #3075 [Verbose] > │     UH2_0(362797056UL, v0)                                                   │

00:00:41 #3076 [Verbose] > │ and closure23 () () : UH2 =                                                  │

00:00:41 #3077 [Verbose] > │     let v0 : (unit -> UH2) = closure24()                                     │

00:00:41 #3078 [Verbose] > │     UH2_0(60466176UL, v0)                                                    │

00:00:41 #3079 [Verbose] > │ and closure22 () () : UH2 =                                                  │

00:00:41 #3080 [Verbose] > │     let v0 : (unit -> UH2) = closure23()                                     │

00:00:41 #3081 [Verbose] > │     UH2_0(10077696UL, v0)                                                    │

00:00:41 #3082 [Verbose] > │ and closure21 () () : UH2 =                                                  │

00:00:41 #3083 [Verbose] > │     let v0 : (unit -> UH2) = closure22()                                     │

00:00:41 #3084 [Verbose] > │     UH2_0(1679616UL, v0)                                                     │

00:00:41 #3085 [Verbose] > │ and closure20 () () : UH2 =                                                  │

00:00:41 #3086 [Verbose] > │     let v0 : (unit -> UH2) = closure21()                                     │

00:00:41 #3087 [Verbose] > │     UH2_0(279936UL, v0)                                                      │

00:00:41 #3088 [Verbose] > │ and closure19 () () : UH2 =                                                  │

00:00:41 #3089 [Verbose] > │     let v0 : (unit -> UH2) = closure20()                                     │

00:00:41 #3090 [Verbose] > │     UH2_0(46656UL, v0)                                                       │

00:00:41 #3091 [Verbose] > │ and closure18 () () : UH2 =                                                  │

00:00:41 #3092 [Verbose] > │     let v0 : (unit -> UH2) = closure19()                                     │

00:00:41 #3093 [Verbose] > │     UH2_0(7776UL, v0)                                                        │

00:00:41 #3094 [Verbose] > │ and closure17 () () : UH2 =                                                  │

00:00:41 #3095 [Verbose] > │     let v0 : (unit -> UH2) = closure18()                                     │

00:00:41 #3096 [Verbose] > │     UH2_0(1296UL, v0)                                                        │

00:00:41 #3097 [Verbose] > │ and closure16 () () : UH2 =                                                  │

00:00:41 #3098 [Verbose] > │     let v0 : (unit -> UH2) = closure17()                                     │

00:00:41 #3099 [Verbose] > │     UH2_0(216UL, v0)                                                         │

00:00:41 #3100 [Verbose] > │ and closure15 () () : UH2 =                                                  │

00:00:41 #3101 [Verbose] > │     let v0 : (unit -> UH2) = closure16()                                     │

00:00:41 #3102 [Verbose] > │     UH2_0(36UL, v0)                                                          │

00:00:41 #3103 [Verbose] > │ and closure14 () () : UH2 =                                                  │

00:00:41 #3104 [Verbose] > │     let v0 : (unit -> UH2) = closure15()                                     │

00:00:41 #3105 [Verbose] > │     UH2_0(6UL, v0)                                                           │

00:00:41 #3106 [Verbose] > │ and method10 (v0 : int8, v1 : UH2) : US4 =                                   │

00:00:41 #3107 [Verbose] > │     match v1 with                                                            │

00:00:41 #3108 [Verbose] > │     | UH2_0(v2, v3) -> (* StreamCons *)                                      │

00:00:41 #3109 [Verbose] > │         let v4 : bool = v0 <= 0y                                             │

00:00:41 #3110 [Verbose] > │         if v4 then                                                           │

00:00:41 #3111 [Verbose] > │             US4_1(v2)                                                        │

00:00:41 #3112 [Verbose] > │         else                                                                 │

00:00:41 #3113 [Verbose] > │             let v6 : int8 = v0 - 1y                                          │

00:00:41 #3114 [Verbose] > │             let v7 : UH2 = v3 ()                                             │

00:00:41 #3115 [Verbose] > │             method10(v6, v7)                                                 │

00:00:41 #3116 [Verbose] > │     | UH2_1 -> (* StreamNil *)                                               │

00:00:41 #3117 [Verbose] > │         US4_0                                                                │

00:00:41 #3118 [Verbose] > │ and method9 (v0 : US0, v1 : int8, v2 : UH1, v3 : uint64) : US3 =             │

00:00:41 #3119 [Verbose] > │     let v4 : bool = v1 < 0y                                                  │

00:00:41 #3120 [Verbose] > │     if v4 then                                                               │

00:00:41 #3121 [Verbose] > │         let v5 : string = $"accumulate_dice_rolls / power: {v1} / acc: {v3}" │

00:00:41 #3122 [Verbose] > │         match v0 with                                                        │

00:00:41 #3123 [Verbose] > │         | US0_0 -> (* None *)                                                │

00:00:41 #3124 [Verbose] > │             ()                                                               │

00:00:41 #3125 [Verbose] > │         | US0_1(v6) -> (* Some *)                                            │

00:00:41 #3126 [Verbose] > │             v6 v5                                                            │

00:00:41 #3127 [Verbose] > │         let v7 : uint64 = v3 + 1UL                                           │

00:00:41 #3128 [Verbose] > │         US3_1(v7, v2)                                                        │

00:00:41 #3129 [Verbose] > │     else                                                                     │

00:00:41 #3130 [Verbose] > │         match v2 with                                                        │

00:00:41 #3131 [Verbose] > │         | UH1_0(v10, v11) -> (* Cons *)                                      │

00:00:41 #3132 [Verbose] > │             let v12 : bool = v10 > 1uy                                       │

00:00:41 #3133 [Verbose] > │             if v12 then                                                      │

00:00:41 #3134 [Verbose] > │                 let v13 : uint64 = 1UL                                       │

00:00:41 #3135 [Verbose] > │                 let v14 : (unit -> UH2) = closure14()                        │

00:00:41 #3136 [Verbose] > │                 let v15 : UH2 = UH2_0(v13, v14)                              │

00:00:41 #3137 [Verbose] > │                 let v16 : US4 = method10(v1, v15)                            │

00:00:41 #3138 [Verbose] > │                 let v20 : uint64 =                                           │

00:00:41 #3139 [Verbose] > │                     match v16 with                                           │

00:00:41 #3140 [Verbose] > │                     | US4_0 -> (* None *)                                    │

00:00:41 #3141 [Verbose] > │                         failwith<uint64> "Option does not have a value."     │

00:00:41 #3142 [Verbose] > │                     | US4_1(v17) -> (* Some *)                               │

00:00:41 #3143 [Verbose] > │                         v17                                                  │

00:00:41 #3144 [Verbose] > │                 let v21 : uint8 = v10 - 1uy                                  │

00:00:41 #3145 [Verbose] > │                 let v22 : uint64 = uint64 v21                                │

00:00:41 #3146 [Verbose] > │                 let v23 : uint64 = v22 * v20                                 │

00:00:41 #3147 [Verbose] > │                 let v24 : string = $"accumulate_dice_rolls / power: {v1} /   │

00:00:41 #3148 [Verbose] > │ acc: {v3} / roll: {v10} / value: {v23}"                                      │

00:00:41 #3149 [Verbose] > │                 match v0 with                                                │

00:00:41 #3150 [Verbose] > │                 | US0_0 -> (* None *)                                        │

00:00:41 #3151 [Verbose] > │                     ()                                                       │

00:00:41 #3152 [Verbose] > │                 | US0_1(v25) -> (* Some *)                                   │

00:00:41 #3153 [Verbose] > │                     v25 v24                                                  │

00:00:41 #3154 [Verbose] > │                 let v26 : uint64 = v3 + v23                                  │

00:00:41 #3155 [Verbose] > │                 let v27 : int8 = v1 - 1y                                     │

00:00:41 #3156 [Verbose] > │                 method9(v0, v27, v11, v26)                                   │

00:00:41 #3157 [Verbose] > │             else                                                             │

00:00:41 #3158 [Verbose] > │                 let v29 : string = $"accumulate_dice_rolls / power: {v1} /   │

00:00:41 #3159 [Verbose] > │ acc: {v3} / roll: {v10}"                                                     │

00:00:41 #3160 [Verbose] > │                 match v0 with                                                │

00:00:41 #3161 [Verbose] > │                 | US0_0 -> (* None *)                                        │

00:00:41 #3162 [Verbose] > │                     ()                                                       │

00:00:41 #3163 [Verbose] > │                 | US0_1(v30) -> (* Some *)                                   │

00:00:41 #3164 [Verbose] > │                     v30 v29                                                  │

00:00:41 #3165 [Verbose] > │                 let v31 : int8 = v1 - 1y                                     │

00:00:41 #3166 [Verbose] > │                 method9(v0, v31, v11, v3)                                    │

00:00:41 #3167 [Verbose] > │         | UH1_1 -> (* Nil *)                                                 │

00:00:41 #3168 [Verbose] > │             US3_0                                                            │

00:00:41 #3169 [Verbose] > │ and method11 (v0 : int8, v1 : (unit -> uint8), v2 : int8) : UH1 =            │

00:00:41 #3170 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:00:41 #3171 [Verbose] > │     if v3 then                                                               │

00:00:41 #3172 [Verbose] > │         let v4 : uint8 = v1 ()                                               │

00:00:41 #3173 [Verbose] > │         let v5 : int8 = v2 + 1y                                              │

00:00:41 #3174 [Verbose] > │         let v6 : UH1 = method11(v0, v1, v5)                                  │

00:00:41 #3175 [Verbose] > │         UH1_0(v4, v6)                                                        │

00:00:41 #3176 [Verbose] > │     else                                                                     │

00:00:41 #3177 [Verbose] > │         UH1_1                                                                │

00:00:41 #3178 [Verbose] > │ and method12 (v0 : US0, v1 : (unit -> uint8), v2 : bool, v3 : uint64, v4 :   │

00:00:41 #3179 [Verbose] > │ int8, v5 : UH1) : uint64 =                                                   │

00:00:41 #3180 [Verbose] > │     let v6 : int8 = v4 + 1y                                                  │

00:00:41 #3181 [Verbose] > │     let v7 : bool = v4 < v6                                                  │

00:00:41 #3182 [Verbose] > │     if v7 then                                                               │

00:00:41 #3183 [Verbose] > │         let v8 : uint8 = v1 ()                                               │

00:00:41 #3184 [Verbose] > │         let v9 : UH1 = UH1_0(v8, v5)                                         │

00:00:41 #3185 [Verbose] > │         method8(v0, v1, v2, v3, v4, v9, v6)                                  │

00:00:41 #3186 [Verbose] > │     else                                                                     │

00:00:41 #3187 [Verbose] > │         let v11 : uint64 = 0UL                                               │

00:00:41 #3188 [Verbose] > │         let v12 : US3 = method9(v0, v4, v5, v11)                             │

00:00:41 #3189 [Verbose] > │         match v12 with                                                       │

00:00:41 #3190 [Verbose] > │         | US3_1(v13, v14) -> (* Some *)                                      │

00:00:41 #3191 [Verbose] > │             let v15 : bool = v13 <= v3                                       │

00:00:41 #3192 [Verbose] > │             if v15 then                                                      │

00:00:41 #3193 [Verbose] > │                 v13                                                          │

00:00:41 #3194 [Verbose] > │             else                                                             │

00:00:41 #3195 [Verbose] > │                 if v2 then                                                   │

00:00:41 #3196 [Verbose] > │                     let v16 : int8 = 0y                                      │

00:00:41 #3197 [Verbose] > │                     let v17 : UH1 = method11(v4, v1, v16)                    │

00:00:41 #3198 [Verbose] > │                     method12(v0, v1, v2, v3, v4, v17)                        │

00:00:41 #3199 [Verbose] > │                 else                                                         │

00:00:41 #3200 [Verbose] > │                     let v19 : uint8 = v1 ()                                  │

00:00:41 #3201 [Verbose] > │                     let v20 : UH1 = UH1_0(v19, v5)                           │

00:00:41 #3202 [Verbose] > │                     method8(v0, v1, v2, v3, v4, v20, v6)                     │

00:00:41 #3203 [Verbose] > │         | _ ->                                                               │

00:00:41 #3204 [Verbose] > │             if v2 then                                                       │

00:00:41 #3205 [Verbose] > │                 let v24 : int8 = 0y                                          │

00:00:41 #3206 [Verbose] > │                 let v25 : UH1 = method11(v4, v1, v24)                        │

00:00:41 #3207 [Verbose] > │                 method12(v0, v1, v2, v3, v4, v25)                            │

00:00:41 #3208 [Verbose] > │             else                                                             │

00:00:41 #3209 [Verbose] > │                 let v27 : uint8 = v1 ()                                      │

00:00:41 #3210 [Verbose] > │                 let v28 : UH1 = UH1_0(v27, v5)                               │

00:00:41 #3211 [Verbose] > │                 method8(v0, v1, v2, v3, v4, v28, v6)                         │

00:00:41 #3212 [Verbose] > │ and method8 (v0 : US0, v1 : (unit -> uint8), v2 : bool, v3 : uint64, v4 :    │

00:00:41 #3213 [Verbose] > │ int8, v5 : UH1, v6 : int8) : uint64 =                                        │

00:00:41 #3214 [Verbose] > │     let v7 : int8 = v4 + 1y                                                  │

00:00:41 #3215 [Verbose] > │     let v8 : bool = v6 < v7                                                  │

00:00:41 #3216 [Verbose] > │     if v8 then                                                               │

00:00:41 #3217 [Verbose] > │         let v9 : uint8 = v1 ()                                               │

00:00:41 #3218 [Verbose] > │         let v10 : UH1 = UH1_0(v9, v5)                                        │

00:00:41 #3219 [Verbose] > │         let v11 : int8 = v6 + 1y                                             │

00:00:41 #3220 [Verbose] > │         method8(v0, v1, v2, v3, v4, v10, v11)                                │

00:00:41 #3221 [Verbose] > │     else                                                                     │

00:00:41 #3222 [Verbose] > │         let v13 : uint64 = 0UL                                               │

00:00:41 #3223 [Verbose] > │         let v14 : US3 = method9(v0, v4, v5, v13)                             │

00:00:41 #3224 [Verbose] > │         match v14 with                                                       │

00:00:41 #3225 [Verbose] > │         | US3_1(v15, v16) -> (* Some *)                                      │

00:00:41 #3226 [Verbose] > │             let v17 : bool = v15 <= v3                                       │

00:00:41 #3227 [Verbose] > │             if v17 then                                                      │

00:00:41 #3228 [Verbose] > │                 v15                                                          │

00:00:41 #3229 [Verbose] > │             else                                                             │

00:00:41 #3230 [Verbose] > │                 if v2 then                                                   │

00:00:41 #3231 [Verbose] > │                     let v18 : int8 = 0y                                      │

00:00:41 #3232 [Verbose] > │                     let v19 : UH1 = method11(v4, v1, v18)                    │

00:00:41 #3233 [Verbose] > │                     method12(v0, v1, v2, v3, v4, v19)                        │

00:00:41 #3234 [Verbose] > │                 else                                                         │

00:00:41 #3235 [Verbose] > │                     let v21 : uint8 = v1 ()                                  │

00:00:41 #3236 [Verbose] > │                     let v22 : UH1 = UH1_0(v21, v5)                           │

00:00:41 #3237 [Verbose] > │                     let v23 : int8 = v6 + 1y                                 │

00:00:41 #3238 [Verbose] > │                     method8(v0, v1, v2, v3, v4, v22, v23)                    │

00:00:41 #3239 [Verbose] > │         | _ ->                                                               │

00:00:41 #3240 [Verbose] > │             if v2 then                                                       │

00:00:41 #3241 [Verbose] > │                 let v27 : int8 = 0y                                          │

00:00:41 #3242 [Verbose] > │                 let v28 : UH1 = method11(v4, v1, v27)                        │

00:00:41 #3243 [Verbose] > │                 method12(v0, v1, v2, v3, v4, v28)                            │

00:00:41 #3244 [Verbose] > │             else                                                             │

00:00:41 #3245 [Verbose] > │                 let v30 : uint8 = v1 ()                                      │

00:00:41 #3246 [Verbose] > │                 let v31 : UH1 = UH1_0(v30, v5)                               │

00:00:41 #3247 [Verbose] > │                 let v32 : int8 = v6 + 1y                                     │

00:00:41 #3248 [Verbose] > │                 method8(v0, v1, v2, v3, v4, v31, v32)                        │

00:00:41 #3249 [Verbose] > │ and closure13 (v0 : US0, v1 : (unit -> uint8), v2 : bool) (v3 : uint64) :    │

00:00:41 #3250 [Verbose] > │ uint64 =                                                                     │

00:00:41 #3251 [Verbose] > │     let v4 : bool = v3 = 1UL                                                 │

00:00:41 #3252 [Verbose] > │     let v8 : int8 =                                                          │

00:00:41 #3253 [Verbose] > │         if v4 then                                                           │

00:00:41 #3254 [Verbose] > │             1y                                                               │

00:00:41 #3255 [Verbose] > │         else                                                                 │

00:00:41 #3256 [Verbose] > │             let v5 : int8 = 0y                                               │

00:00:41 #3257 [Verbose] > │             let v6 : uint64 = 1UL                                            │

00:00:41 #3258 [Verbose] > │             method7(v0, v3, v5, v6)                                          │

00:00:41 #3259 [Verbose] > │     let v9 : int8 = v8 - 1y                                                  │

00:00:41 #3260 [Verbose] > │     let v10 : UH1 = UH1_1                                                    │

00:00:41 #3261 [Verbose] > │     let v11 : int8 = 0y                                                      │

00:00:41 #3262 [Verbose] > │     method8(v0, v1, v2, v3, v9, v10, v11)                                    │

00:00:41 #3263 [Verbose] > │ and closure12 (v0 : US0, v1 : (unit -> uint8)) (v2 : bool) : (uint64 ->      │

00:00:41 #3264 [Verbose] > │ uint64) =                                                                    │

00:00:41 #3265 [Verbose] > │     closure13(v0, v1, v2)                                                    │

00:00:41 #3266 [Verbose] > │ and closure11 (v0 : US0) (v1 : (unit -> uint8)) : (bool -> (uint64 ->        │

00:00:41 #3267 [Verbose] > │ uint64)) =                                                                   │

00:00:41 #3268 [Verbose] > │     closure12(v0, v1)                                                        │

00:00:41 #3269 [Verbose] > │ and closure10 () (v0 : (string -> unit) option) : ((unit -> uint8) -> (bool  │

00:00:41 #3270 [Verbose] > │ -> (uint64 -> uint64))) =                                                    │

00:00:41 #3271 [Verbose] > │     let v1 : ((string -> unit) -> US0) = closure4()                          │

00:00:41 #3272 [Verbose] > │     let v2 : US0 = US0_0                                                     │

00:00:41 #3273 [Verbose] > │     let v3 : US0 = v0 |> Option.map v1 |> Option.defaultValue v2             │

00:00:41 #3274 [Verbose] > │     closure11(v3)                                                            │

00:00:41 #3275 [Verbose] > │ and method13 (v0 : UH1, v1 : int8) : int8 =                                  │

00:00:41 #3276 [Verbose] > │     match v0 with                                                            │

00:00:41 #3277 [Verbose] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

00:00:41 #3278 [Verbose] > │         let v4 : int8 = v1 + 1y                                              │

00:00:41 #3279 [Verbose] > │         method13(v3, v4)                                                     │

00:00:41 #3280 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3281 [Verbose] > │         v1                                                                   │

00:00:41 #3282 [Verbose] > │ and closure80 (v0 : (string -> unit) option, v1 : uint64) (v2 : UH1) :       │

00:00:41 #3283 [Verbose] > │ uint64 option =                                                              │

00:00:41 #3284 [Verbose] > │     let v3 : ((string -> unit) -> US0) = closure4()                          │

00:00:41 #3285 [Verbose] > │     let v4 : US0 = US0_0                                                     │

00:00:41 #3286 [Verbose] > │     let v5 : US0 = v0 |> Option.map v3 |> Option.defaultValue v4             │

00:00:41 #3287 [Verbose] > │     let v6 : int8 = 0y                                                       │

00:00:41 #3288 [Verbose] > │     let v7 : int8 = method13(v2, v6)                                         │

00:00:41 #3289 [Verbose] > │     let v8 : int8 = v7 - 1y                                                  │

00:00:41 #3290 [Verbose] > │     let v9 : uint64 = 0UL                                                    │

00:00:41 #3291 [Verbose] > │     let v10 : US3 = method9(v5, v8, v2, v9)                                  │

00:00:41 #3292 [Verbose] > │     let v20 : US4 =                                                          │

00:00:41 #3293 [Verbose] > │         match v10 with                                                       │

00:00:41 #3294 [Verbose] > │         | US3_1(v11, v12) -> (* Some *)                                      │

00:00:41 #3295 [Verbose] > │             let v13 : bool = v11 >= 1UL                                      │

00:00:41 #3296 [Verbose] > │             let v15 : bool =                                                 │

00:00:41 #3297 [Verbose] > │                 if v13 then                                                  │

00:00:41 #3298 [Verbose] > │                     let v14 : bool = v11 <= v1                               │

00:00:41 #3299 [Verbose] > │                     v14                                                      │

00:00:41 #3300 [Verbose] > │                 else                                                         │

00:00:41 #3301 [Verbose] > │                     false                                                    │

00:00:41 #3302 [Verbose] > │             if v15 then                                                      │

00:00:41 #3303 [Verbose] > │                 US4_1(v11)                                                   │

00:00:41 #3304 [Verbose] > │             else                                                             │

00:00:41 #3305 [Verbose] > │                 US4_0                                                        │

00:00:41 #3306 [Verbose] > │         | _ ->                                                               │

00:00:41 #3307 [Verbose] > │             US4_0                                                            │

00:00:41 #3308 [Verbose] > │     match v20 with                                                           │

00:00:41 #3309 [Verbose] > │     | US4_0 -> (* None *)                                                    │

00:00:41 #3310 [Verbose] > │         let v23 : uint64 option = None                                       │

00:00:41 #3311 [Verbose] > │         v23                                                                  │

00:00:41 #3312 [Verbose] > │     | US4_1(v21) -> (* Some *)                                               │

00:00:41 #3313 [Verbose] > │         let v22 : uint64 option = Some v21                                   │

00:00:41 #3314 [Verbose] > │         v22                                                                  │

00:00:41 #3315 [Verbose] > │ and closure79 (v0 : (string -> unit) option) (v1 : uint64) : (UH1 -> uint64  │

00:00:41 #3316 [Verbose] > │ option) =                                                                    │

00:00:41 #3317 [Verbose] > │     closure80(v0, v1)                                                        │

00:00:41 #3318 [Verbose] > │ and closure78 () (v0 : (string -> unit) option) : (uint64 -> (UH1 -> uint64  │

00:00:41 #3319 [Verbose] > │ option)) =                                                                   │

00:00:41 #3320 [Verbose] > │     closure79(v0)                                                            │

00:00:41 #3321 [Verbose] > │ and method39 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3322 [Verbose] > │     let v2 : string = $"accumulate_dice_rolls / power: {-1y} / acc: {v1}"    │

00:00:41 #3323 [Verbose] > │     System.Console.WriteLine v2                                              │

00:00:41 #3324 [Verbose] > │     let v3 : int64 = v1 + 1L                                                 │

00:00:41 #3325 [Verbose] > │     US5_1(v3, v0)                                                            │

00:00:41 #3326 [Verbose] > │ and method38 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3327 [Verbose] > │     match v0 with                                                            │

00:00:41 #3328 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3329 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3330 [Verbose] > │         if v5 then                                                           │

00:00:41 #3331 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3332 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3333 [Verbose] > │             let v8 : string = $"accumulate_dice_rolls / power: {0y} / acc:   │

00:00:41 #3334 [Verbose] > │ {v1} / roll: {v3} / value: {v7}"                                             │

00:00:41 #3335 [Verbose] > │             System.Console.WriteLine v8                                      │

00:00:41 #3336 [Verbose] > │             let v9 : int64 = v1 + v7                                         │

00:00:41 #3337 [Verbose] > │             method39(v4, v9)                                                 │

00:00:41 #3338 [Verbose] > │         else                                                                 │

00:00:41 #3339 [Verbose] > │             let v11 : string = $"accumulate_dice_rolls / power: {0y} / acc:  │

00:00:41 #3340 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3341 [Verbose] > │             System.Console.WriteLine v11                                     │

00:00:41 #3342 [Verbose] > │             method39(v4, v1)                                                 │

00:00:41 #3343 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3344 [Verbose] > │         US5_0                                                                │

00:00:41 #3345 [Verbose] > │ and method37 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3346 [Verbose] > │     match v0 with                                                            │

00:00:41 #3347 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3348 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3349 [Verbose] > │         if v5 then                                                           │

00:00:41 #3350 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3351 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3352 [Verbose] > │             let v8 : int64 = v7 * 6L                                         │

00:00:41 #3353 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {1y} / acc:   │

00:00:41 #3354 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3355 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3356 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3357 [Verbose] > │             method38(v4, v10)                                                │

00:00:41 #3358 [Verbose] > │         else                                                                 │

00:00:41 #3359 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {1y} / acc:  │

00:00:41 #3360 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3361 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3362 [Verbose] > │             method38(v4, v1)                                                 │

00:00:41 #3363 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3364 [Verbose] > │         US5_0                                                                │

00:00:41 #3365 [Verbose] > │ and method36 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3366 [Verbose] > │     match v0 with                                                            │

00:00:41 #3367 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3368 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3369 [Verbose] > │         if v5 then                                                           │

00:00:41 #3370 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3371 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3372 [Verbose] > │             let v8 : int64 = v7 * 36L                                        │

00:00:41 #3373 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {2y} / acc:   │

00:00:41 #3374 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3375 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3376 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3377 [Verbose] > │             method37(v4, v10)                                                │

00:00:41 #3378 [Verbose] > │         else                                                                 │

00:00:41 #3379 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {2y} / acc:  │

00:00:41 #3380 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3381 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3382 [Verbose] > │             method37(v4, v1)                                                 │

00:00:41 #3383 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3384 [Verbose] > │         US5_0                                                                │

00:00:41 #3385 [Verbose] > │ and method35 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3386 [Verbose] > │     match v0 with                                                            │

00:00:41 #3387 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3388 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3389 [Verbose] > │         if v5 then                                                           │

00:00:41 #3390 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3391 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3392 [Verbose] > │             let v8 : int64 = v7 * 216L                                       │

00:00:41 #3393 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {3y} / acc:   │

00:00:41 #3394 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3395 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3396 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3397 [Verbose] > │             method36(v4, v10)                                                │

00:00:41 #3398 [Verbose] > │         else                                                                 │

00:00:41 #3399 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {3y} / acc:  │

00:00:41 #3400 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3401 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3402 [Verbose] > │             method36(v4, v1)                                                 │

00:00:41 #3403 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3404 [Verbose] > │         US5_0                                                                │

00:00:41 #3405 [Verbose] > │ and method34 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3406 [Verbose] > │     match v0 with                                                            │

00:00:41 #3407 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3408 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3409 [Verbose] > │         if v5 then                                                           │

00:00:41 #3410 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3411 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3412 [Verbose] > │             let v8 : int64 = v7 * 1296L                                      │

00:00:41 #3413 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {4y} / acc:   │

00:00:41 #3414 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3415 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3416 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3417 [Verbose] > │             method35(v4, v10)                                                │

00:00:41 #3418 [Verbose] > │         else                                                                 │

00:00:41 #3419 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {4y} / acc:  │

00:00:41 #3420 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3421 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3422 [Verbose] > │             method35(v4, v1)                                                 │

00:00:41 #3423 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3424 [Verbose] > │         US5_0                                                                │

00:00:41 #3425 [Verbose] > │ and method33 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3426 [Verbose] > │     match v0 with                                                            │

00:00:41 #3427 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3428 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3429 [Verbose] > │         if v5 then                                                           │

00:00:41 #3430 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3431 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3432 [Verbose] > │             let v8 : int64 = v7 * 7776L                                      │

00:00:41 #3433 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {5y} / acc:   │

00:00:41 #3434 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3435 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3436 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3437 [Verbose] > │             method34(v4, v10)                                                │

00:00:41 #3438 [Verbose] > │         else                                                                 │

00:00:41 #3439 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {5y} / acc:  │

00:00:41 #3440 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3441 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3442 [Verbose] > │             method34(v4, v1)                                                 │

00:00:41 #3443 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3444 [Verbose] > │         US5_0                                                                │

00:00:41 #3445 [Verbose] > │ and method32 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3446 [Verbose] > │     match v0 with                                                            │

00:00:41 #3447 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3448 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3449 [Verbose] > │         if v5 then                                                           │

00:00:41 #3450 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3451 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3452 [Verbose] > │             let v8 : int64 = v7 * 46656L                                     │

00:00:41 #3453 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {6y} / acc:   │

00:00:41 #3454 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3455 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3456 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3457 [Verbose] > │             method33(v4, v10)                                                │

00:00:41 #3458 [Verbose] > │         else                                                                 │

00:00:41 #3459 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {6y} / acc:  │

00:00:41 #3460 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3461 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3462 [Verbose] > │             method33(v4, v1)                                                 │

00:00:41 #3463 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3464 [Verbose] > │         US5_0                                                                │

00:00:41 #3465 [Verbose] > │ and method31 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3466 [Verbose] > │     match v0 with                                                            │

00:00:41 #3467 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3468 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3469 [Verbose] > │         if v5 then                                                           │

00:00:41 #3470 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3471 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3472 [Verbose] > │             let v8 : int64 = v7 * 279936L                                    │

00:00:41 #3473 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {7y} / acc:   │

00:00:41 #3474 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3475 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3476 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3477 [Verbose] > │             method32(v4, v10)                                                │

00:00:41 #3478 [Verbose] > │         else                                                                 │

00:00:41 #3479 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {7y} / acc:  │

00:00:41 #3480 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3481 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3482 [Verbose] > │             method32(v4, v1)                                                 │

00:00:41 #3483 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3484 [Verbose] > │         US5_0                                                                │

00:00:41 #3485 [Verbose] > │ and method30 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3486 [Verbose] > │     match v0 with                                                            │

00:00:41 #3487 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3488 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3489 [Verbose] > │         if v5 then                                                           │

00:00:41 #3490 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3491 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3492 [Verbose] > │             let v8 : int64 = v7 * 1679616L                                   │

00:00:41 #3493 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {8y} / acc:   │

00:00:41 #3494 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3495 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3496 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3497 [Verbose] > │             method31(v4, v10)                                                │

00:00:41 #3498 [Verbose] > │         else                                                                 │

00:00:41 #3499 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {8y} / acc:  │

00:00:41 #3500 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3501 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3502 [Verbose] > │             method31(v4, v1)                                                 │

00:00:41 #3503 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3504 [Verbose] > │         US5_0                                                                │

00:00:41 #3505 [Verbose] > │ and method29 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3506 [Verbose] > │     match v0 with                                                            │

00:00:41 #3507 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3508 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3509 [Verbose] > │         if v5 then                                                           │

00:00:41 #3510 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3511 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3512 [Verbose] > │             let v8 : int64 = v7 * 10077696L                                  │

00:00:41 #3513 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {9y} / acc:   │

00:00:41 #3514 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3515 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3516 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3517 [Verbose] > │             method30(v4, v10)                                                │

00:00:41 #3518 [Verbose] > │         else                                                                 │

00:00:41 #3519 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {9y} / acc:  │

00:00:41 #3520 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3521 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3522 [Verbose] > │             method30(v4, v1)                                                 │

00:00:41 #3523 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3524 [Verbose] > │         US5_0                                                                │

00:00:41 #3525 [Verbose] > │ and method28 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3526 [Verbose] > │     match v0 with                                                            │

00:00:41 #3527 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3528 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3529 [Verbose] > │         if v5 then                                                           │

00:00:41 #3530 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3531 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3532 [Verbose] > │             let v8 : int64 = v7 * 60466176L                                  │

00:00:41 #3533 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {10y} / acc:  │

00:00:41 #3534 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3535 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3536 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3537 [Verbose] > │             method29(v4, v10)                                                │

00:00:41 #3538 [Verbose] > │         else                                                                 │

00:00:41 #3539 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {10y} / acc: │

00:00:41 #3540 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3541 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3542 [Verbose] > │             method29(v4, v1)                                                 │

00:00:41 #3543 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3544 [Verbose] > │         US5_0                                                                │

00:00:41 #3545 [Verbose] > │ and method27 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3546 [Verbose] > │     match v0 with                                                            │

00:00:41 #3547 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3548 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3549 [Verbose] > │         if v5 then                                                           │

00:00:41 #3550 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3551 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3552 [Verbose] > │             let v8 : int64 = v7 * 362797056L                                 │

00:00:41 #3553 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {11y} / acc:  │

00:00:41 #3554 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3555 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3556 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3557 [Verbose] > │             method28(v4, v10)                                                │

00:00:41 #3558 [Verbose] > │         else                                                                 │

00:00:41 #3559 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {11y} / acc: │

00:00:41 #3560 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3561 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3562 [Verbose] > │             method28(v4, v1)                                                 │

00:00:41 #3563 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3564 [Verbose] > │         US5_0                                                                │

00:00:41 #3565 [Verbose] > │ and method26 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3566 [Verbose] > │     match v0 with                                                            │

00:00:41 #3567 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3568 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3569 [Verbose] > │         if v5 then                                                           │

00:00:41 #3570 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3571 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3572 [Verbose] > │             let v8 : int64 = v7 * 2176782336L                                │

00:00:41 #3573 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {12y} / acc:  │

00:00:41 #3574 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3575 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3576 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3577 [Verbose] > │             method27(v4, v10)                                                │

00:00:41 #3578 [Verbose] > │         else                                                                 │

00:00:41 #3579 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {12y} / acc: │

00:00:41 #3580 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3581 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3582 [Verbose] > │             method27(v4, v1)                                                 │

00:00:41 #3583 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3584 [Verbose] > │         US5_0                                                                │

00:00:41 #3585 [Verbose] > │ and method25 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3586 [Verbose] > │     match v0 with                                                            │

00:00:41 #3587 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3588 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3589 [Verbose] > │         if v5 then                                                           │

00:00:41 #3590 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3591 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3592 [Verbose] > │             let v8 : int64 = v7 * 13060694016L                               │

00:00:41 #3593 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {13y} / acc:  │

00:00:41 #3594 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3595 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3596 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3597 [Verbose] > │             method26(v4, v10)                                                │

00:00:41 #3598 [Verbose] > │         else                                                                 │

00:00:41 #3599 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {13y} / acc: │

00:00:41 #3600 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3601 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3602 [Verbose] > │             method26(v4, v1)                                                 │

00:00:41 #3603 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3604 [Verbose] > │         US5_0                                                                │

00:00:41 #3605 [Verbose] > │ and method24 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3606 [Verbose] > │     match v0 with                                                            │

00:00:41 #3607 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3608 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3609 [Verbose] > │         if v5 then                                                           │

00:00:41 #3610 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3611 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3612 [Verbose] > │             let v8 : int64 = v7 * 78364164096L                               │

00:00:41 #3613 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {14y} / acc:  │

00:00:41 #3614 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3615 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3616 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3617 [Verbose] > │             method25(v4, v10)                                                │

00:00:41 #3618 [Verbose] > │         else                                                                 │

00:00:41 #3619 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {14y} / acc: │

00:00:41 #3620 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3621 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3622 [Verbose] > │             method25(v4, v1)                                                 │

00:00:41 #3623 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3624 [Verbose] > │         US5_0                                                                │

00:00:41 #3625 [Verbose] > │ and method23 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3626 [Verbose] > │     match v0 with                                                            │

00:00:41 #3627 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3628 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3629 [Verbose] > │         if v5 then                                                           │

00:00:41 #3630 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3631 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3632 [Verbose] > │             let v8 : int64 = v7 * 470184984576L                              │

00:00:41 #3633 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {15y} / acc:  │

00:00:41 #3634 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3635 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3636 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3637 [Verbose] > │             method24(v4, v10)                                                │

00:00:41 #3638 [Verbose] > │         else                                                                 │

00:00:41 #3639 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {15y} / acc: │

00:00:41 #3640 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3641 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3642 [Verbose] > │             method24(v4, v1)                                                 │

00:00:41 #3643 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3644 [Verbose] > │         US5_0                                                                │

00:00:41 #3645 [Verbose] > │ and method22 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3646 [Verbose] > │     match v0 with                                                            │

00:00:41 #3647 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3648 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3649 [Verbose] > │         if v5 then                                                           │

00:00:41 #3650 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3651 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3652 [Verbose] > │             let v8 : int64 = v7 * 2821109907456L                             │

00:00:41 #3653 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {16y} / acc:  │

00:00:41 #3654 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3655 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3656 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3657 [Verbose] > │             method23(v4, v10)                                                │

00:00:41 #3658 [Verbose] > │         else                                                                 │

00:00:41 #3659 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {16y} / acc: │

00:00:41 #3660 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3661 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3662 [Verbose] > │             method23(v4, v1)                                                 │

00:00:41 #3663 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3664 [Verbose] > │         US5_0                                                                │

00:00:41 #3665 [Verbose] > │ and method21 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3666 [Verbose] > │     match v0 with                                                            │

00:00:41 #3667 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3668 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3669 [Verbose] > │         if v5 then                                                           │

00:00:41 #3670 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3671 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3672 [Verbose] > │             let v8 : int64 = v7 * 16926659444736L                            │

00:00:41 #3673 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {17y} / acc:  │

00:00:41 #3674 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3675 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3676 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3677 [Verbose] > │             method22(v4, v10)                                                │

00:00:41 #3678 [Verbose] > │         else                                                                 │

00:00:41 #3679 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {17y} / acc: │

00:00:41 #3680 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3681 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3682 [Verbose] > │             method22(v4, v1)                                                 │

00:00:41 #3683 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3684 [Verbose] > │         US5_0                                                                │

00:00:41 #3685 [Verbose] > │ and method20 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3686 [Verbose] > │     match v0 with                                                            │

00:00:41 #3687 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3688 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3689 [Verbose] > │         if v5 then                                                           │

00:00:41 #3690 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3691 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3692 [Verbose] > │             let v8 : int64 = v7 * 101559956668416L                           │

00:00:41 #3693 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {18y} / acc:  │

00:00:41 #3694 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3695 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3696 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3697 [Verbose] > │             method21(v4, v10)                                                │

00:00:41 #3698 [Verbose] > │         else                                                                 │

00:00:41 #3699 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {18y} / acc: │

00:00:41 #3700 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3701 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3702 [Verbose] > │             method21(v4, v1)                                                 │

00:00:41 #3703 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3704 [Verbose] > │         US5_0                                                                │

00:00:41 #3705 [Verbose] > │ and method19 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3706 [Verbose] > │     match v0 with                                                            │

00:00:41 #3707 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3708 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3709 [Verbose] > │         if v5 then                                                           │

00:00:41 #3710 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3711 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3712 [Verbose] > │             let v8 : int64 = v7 * 609359740010496L                           │

00:00:41 #3713 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {19y} / acc:  │

00:00:41 #3714 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3715 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3716 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3717 [Verbose] > │             method20(v4, v10)                                                │

00:00:41 #3718 [Verbose] > │         else                                                                 │

00:00:41 #3719 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {19y} / acc: │

00:00:41 #3720 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3721 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3722 [Verbose] > │             method20(v4, v1)                                                 │

00:00:41 #3723 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3724 [Verbose] > │         US5_0                                                                │

00:00:41 #3725 [Verbose] > │ and method18 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3726 [Verbose] > │     match v0 with                                                            │

00:00:41 #3727 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3728 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3729 [Verbose] > │         if v5 then                                                           │

00:00:41 #3730 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3731 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3732 [Verbose] > │             let v8 : int64 = v7 * 3656158440062976L                          │

00:00:41 #3733 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {20y} / acc:  │

00:00:41 #3734 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3735 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3736 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3737 [Verbose] > │             method19(v4, v10)                                                │

00:00:41 #3738 [Verbose] > │         else                                                                 │

00:00:41 #3739 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {20y} / acc: │

00:00:41 #3740 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3741 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3742 [Verbose] > │             method19(v4, v1)                                                 │

00:00:41 #3743 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3744 [Verbose] > │         US5_0                                                                │

00:00:41 #3745 [Verbose] > │ and method17 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3746 [Verbose] > │     match v0 with                                                            │

00:00:41 #3747 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3748 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3749 [Verbose] > │         if v5 then                                                           │

00:00:41 #3750 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3751 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3752 [Verbose] > │             let v8 : int64 = v7 * 21936950640377856L                         │

00:00:41 #3753 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {21y} / acc:  │

00:00:41 #3754 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3755 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3756 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3757 [Verbose] > │             method18(v4, v10)                                                │

00:00:41 #3758 [Verbose] > │         else                                                                 │

00:00:41 #3759 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {21y} / acc: │

00:00:41 #3760 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3761 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3762 [Verbose] > │             method18(v4, v1)                                                 │

00:00:41 #3763 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3764 [Verbose] > │         US5_0                                                                │

00:00:41 #3765 [Verbose] > │ and method16 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3766 [Verbose] > │     match v0 with                                                            │

00:00:41 #3767 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3768 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3769 [Verbose] > │         if v5 then                                                           │

00:00:41 #3770 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3771 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3772 [Verbose] > │             let v8 : int64 = v7 * 131621703842267136L                        │

00:00:41 #3773 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {22y} / acc:  │

00:00:41 #3774 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3775 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3776 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3777 [Verbose] > │             method17(v4, v10)                                                │

00:00:41 #3778 [Verbose] > │         else                                                                 │

00:00:41 #3779 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {22y} / acc: │

00:00:41 #3780 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3781 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3782 [Verbose] > │             method17(v4, v1)                                                 │

00:00:41 #3783 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3784 [Verbose] > │         US5_0                                                                │

00:00:41 #3785 [Verbose] > │ and method15 (v0 : UH1, v1 : int64) : US5 =                                  │

00:00:41 #3786 [Verbose] > │     match v0 with                                                            │

00:00:41 #3787 [Verbose] > │     | UH1_0(v3, v4) -> (* Cons *)                                            │

00:00:41 #3788 [Verbose] > │         let v5 : bool = v3 > 1uy                                             │

00:00:41 #3789 [Verbose] > │         if v5 then                                                           │

00:00:41 #3790 [Verbose] > │             let v6 : uint8 = v3 - 1uy                                        │

00:00:41 #3791 [Verbose] > │             let v7 : int64 = int64 v6                                        │

00:00:41 #3792 [Verbose] > │             let v8 : int64 = v7 * 789730223053602816L                        │

00:00:41 #3793 [Verbose] > │             let v9 : string = $"accumulate_dice_rolls / power: {23y} / acc:  │

00:00:41 #3794 [Verbose] > │ {v1} / roll: {v3} / value: {v8}"                                             │

00:00:41 #3795 [Verbose] > │             System.Console.WriteLine v9                                      │

00:00:41 #3796 [Verbose] > │             let v10 : int64 = v1 + v8                                        │

00:00:41 #3797 [Verbose] > │             method16(v4, v10)                                                │

00:00:41 #3798 [Verbose] > │         else                                                                 │

00:00:41 #3799 [Verbose] > │             let v12 : string = $"accumulate_dice_rolls / power: {23y} / acc: │

00:00:41 #3800 [Verbose] > │ {v1} / roll: {v3}"                                                           │

00:00:41 #3801 [Verbose] > │             System.Console.WriteLine v12                                     │

00:00:41 #3802 [Verbose] > │             method16(v4, v1)                                                 │

00:00:41 #3803 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:00:41 #3804 [Verbose] > │         US5_0                                                                │

00:00:41 #3805 [Verbose] > │ and method14 (v0 : UH1, v1 : int8) : int64 =                                 │

00:00:41 #3806 [Verbose] > │     let v2 : bool = v1 < 24y                                                 │

00:00:41 #3807 [Verbose] > │     if v2 then                                                               │

00:00:41 #3808 [Verbose] > │         let mutable result = None                                            │

00:00:41 #3809 [Verbose] > │         #if FABLE_COMPILER_RUST                                              │

00:00:41 #3810 [Verbose] > │         #if !WASM                                                            │

00:00:41 #3811 [Verbose] > │         let v3 : string = "rand::Rng::gen_range(&mut rand::thread_rng(),     │

00:00:41 #3812 [Verbose] > │ 1..7)"                                                                       │

00:00:41 #3813 [Verbose] > │         let v4 : uint8 = Fable.Core.RustInterop.emitRustExpr () v3           │

00:00:41 #3814 [Verbose] > │         v4                                                                   │

00:00:41 #3815 [Verbose] > │         #else                                                                │

00:00:41 #3816 [Verbose] > │         let v5 : string = "1"                                                │

00:00:41 #3817 [Verbose] > │         let v6 : uint8 = Fable.Core.RustInterop.emitRustExpr () v5           │

00:00:41 #3818 [Verbose] > │         v6                                                                   │

00:00:41 #3819 [Verbose] > │         #endif                                                               │

00:00:41 #3820 [Verbose] > │         #else                                                                │

00:00:41 #3821 [Verbose] > │         let v7 : uint8 = System.Random().Next (1, 7) |> uint8                │

00:00:41 #3822 [Verbose] > │         v7                                                                   │

00:00:41 #3823 [Verbose] > │         #endif                                                               │

00:00:41 #3824 [Verbose] > │         |> fun x -> result <- Some x                                         │

00:00:41 #3825 [Verbose] > │         let v8 : uint8 = result |> Option.get                                │

00:00:41 #3826 [Verbose] > │         let v9 : UH1 = UH1_0(v8, v0)                                         │

00:00:41 #3827 [Verbose] > │         let v10 : int8 = v1 + 1y                                             │

00:00:41 #3828 [Verbose] > │         method14(v9, v10)                                                    │

00:00:41 #3829 [Verbose] > │     else                                                                     │

00:00:41 #3830 [Verbose] > │         let v12 : int64 = 0L                                                 │

00:00:41 #3831 [Verbose] > │         let v13 : US5 = method15(v0, v12)                                    │

00:00:41 #3832 [Verbose] > │         match v13 with                                                       │

00:00:41 #3833 [Verbose] > │         | US5_1(v14, v15) -> (* Some *)                                      │

00:00:41 #3834 [Verbose] > │             let v16 : bool = v14 <= 9223372036854775807L                     │

00:00:41 #3835 [Verbose] > │             if v16 then                                                      │

00:00:41 #3836 [Verbose] > │                 v14                                                          │

00:00:41 #3837 [Verbose] > │             else                                                             │

00:00:41 #3838 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #3839 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #3840 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #3841 [Verbose] > │                 let v17 : string = "rand::Rng::gen_range(&mut                │

00:00:41 #3842 [Verbose] > │ rand::thread_rng(), 1..7)"                                                   │

00:00:41 #3843 [Verbose] > │                 let v18 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #3844 [Verbose] > │                 v18                                                          │

00:00:41 #3845 [Verbose] > │                 #else                                                        │

00:00:41 #3846 [Verbose] > │                 let v19 : string = "1"                                       │

00:00:41 #3847 [Verbose] > │                 let v20 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #3848 [Verbose] > │                 v20                                                          │

00:00:41 #3849 [Verbose] > │                 #endif                                                       │

00:00:41 #3850 [Verbose] > │                 #else                                                        │

00:00:41 #3851 [Verbose] > │                 let v21 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #3852 [Verbose] > │                 v21                                                          │

00:00:41 #3853 [Verbose] > │                 #endif                                                       │

00:00:41 #3854 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #3855 [Verbose] > │                 let v22 : uint8 = result |> Option.get                       │

00:00:41 #3856 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #3857 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #3858 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #3859 [Verbose] > │                 let v23 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #3860 [Verbose] > │                 v23                                                          │

00:00:41 #3861 [Verbose] > │                 #else                                                        │

00:00:41 #3862 [Verbose] > │                 let v24 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #3863 [Verbose] > │                 v24                                                          │

00:00:41 #3864 [Verbose] > │                 #endif                                                       │

00:00:41 #3865 [Verbose] > │                 #else                                                        │

00:00:41 #3866 [Verbose] > │                 let v25 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #3867 [Verbose] > │                 v25                                                          │

00:00:41 #3868 [Verbose] > │                 #endif                                                       │

00:00:41 #3869 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #3870 [Verbose] > │                 let v26 : uint8 = result |> Option.get                       │

00:00:41 #3871 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #3872 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #3873 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #3874 [Verbose] > │                 let v27 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #3875 [Verbose] > │                 v27                                                          │

00:00:41 #3876 [Verbose] > │                 #else                                                        │

00:00:41 #3877 [Verbose] > │                 let v28 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #3878 [Verbose] > │                 v28                                                          │

00:00:41 #3879 [Verbose] > │                 #endif                                                       │

00:00:41 #3880 [Verbose] > │                 #else                                                        │

00:00:41 #3881 [Verbose] > │                 let v29 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #3882 [Verbose] > │                 v29                                                          │

00:00:41 #3883 [Verbose] > │                 #endif                                                       │

00:00:41 #3884 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #3885 [Verbose] > │                 let v30 : uint8 = result |> Option.get                       │

00:00:41 #3886 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #3887 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #3888 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #3889 [Verbose] > │                 let v31 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #3890 [Verbose] > │                 v31                                                          │

00:00:41 #3891 [Verbose] > │                 #else                                                        │

00:00:41 #3892 [Verbose] > │                 let v32 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #3893 [Verbose] > │                 v32                                                          │

00:00:41 #3894 [Verbose] > │                 #endif                                                       │

00:00:41 #3895 [Verbose] > │                 #else                                                        │

00:00:41 #3896 [Verbose] > │                 let v33 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #3897 [Verbose] > │                 v33                                                          │

00:00:41 #3898 [Verbose] > │                 #endif                                                       │

00:00:41 #3899 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #3900 [Verbose] > │                 let v34 : uint8 = result |> Option.get                       │

00:00:41 #3901 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #3902 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #3903 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #3904 [Verbose] > │                 let v35 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #3905 [Verbose] > │                 v35                                                          │

00:00:41 #3906 [Verbose] > │                 #else                                                        │

00:00:41 #3907 [Verbose] > │                 let v36 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #3908 [Verbose] > │                 v36                                                          │

00:00:41 #3909 [Verbose] > │                 #endif                                                       │

00:00:41 #3910 [Verbose] > │                 #else                                                        │

00:00:41 #3911 [Verbose] > │                 let v37 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #3912 [Verbose] > │                 v37                                                          │

00:00:41 #3913 [Verbose] > │                 #endif                                                       │

00:00:41 #3914 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #3915 [Verbose] > │                 let v38 : uint8 = result |> Option.get                       │

00:00:41 #3916 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #3917 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #3918 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #3919 [Verbose] > │                 let v39 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #3920 [Verbose] > │                 v39                                                          │

00:00:41 #3921 [Verbose] > │                 #else                                                        │

00:00:41 #3922 [Verbose] > │                 let v40 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #3923 [Verbose] > │                 v40                                                          │

00:00:41 #3924 [Verbose] > │                 #endif                                                       │

00:00:41 #3925 [Verbose] > │                 #else                                                        │

00:00:41 #3926 [Verbose] > │                 let v41 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #3927 [Verbose] > │                 v41                                                          │

00:00:41 #3928 [Verbose] > │                 #endif                                                       │

00:00:41 #3929 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #3930 [Verbose] > │                 let v42 : uint8 = result |> Option.get                       │

00:00:41 #3931 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #3932 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #3933 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #3934 [Verbose] > │                 let v43 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #3935 [Verbose] > │                 v43                                                          │

00:00:41 #3936 [Verbose] > │                 #else                                                        │

00:00:41 #3937 [Verbose] > │                 let v44 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #3938 [Verbose] > │                 v44                                                          │

00:00:41 #3939 [Verbose] > │                 #endif                                                       │

00:00:41 #3940 [Verbose] > │                 #else                                                        │

00:00:41 #3941 [Verbose] > │                 let v45 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #3942 [Verbose] > │                 v45                                                          │

00:00:41 #3943 [Verbose] > │                 #endif                                                       │

00:00:41 #3944 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #3945 [Verbose] > │                 let v46 : uint8 = result |> Option.get                       │

00:00:41 #3946 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #3947 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #3948 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #3949 [Verbose] > │                 let v47 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #3950 [Verbose] > │                 v47                                                          │

00:00:41 #3951 [Verbose] > │                 #else                                                        │

00:00:41 #3952 [Verbose] > │                 let v48 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #3953 [Verbose] > │                 v48                                                          │

00:00:41 #3954 [Verbose] > │                 #endif                                                       │

00:00:41 #3955 [Verbose] > │                 #else                                                        │

00:00:41 #3956 [Verbose] > │                 let v49 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #3957 [Verbose] > │                 v49                                                          │

00:00:41 #3958 [Verbose] > │                 #endif                                                       │

00:00:41 #3959 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #3960 [Verbose] > │                 let v50 : uint8 = result |> Option.get                       │

00:00:41 #3961 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #3962 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #3963 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #3964 [Verbose] > │                 let v51 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #3965 [Verbose] > │                 v51                                                          │

00:00:41 #3966 [Verbose] > │                 #else                                                        │

00:00:41 #3967 [Verbose] > │                 let v52 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #3968 [Verbose] > │                 v52                                                          │

00:00:41 #3969 [Verbose] > │                 #endif                                                       │

00:00:41 #3970 [Verbose] > │                 #else                                                        │

00:00:41 #3971 [Verbose] > │                 let v53 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #3972 [Verbose] > │                 v53                                                          │

00:00:41 #3973 [Verbose] > │                 #endif                                                       │

00:00:41 #3974 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #3975 [Verbose] > │                 let v54 : uint8 = result |> Option.get                       │

00:00:41 #3976 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #3977 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #3978 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #3979 [Verbose] > │                 let v55 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #3980 [Verbose] > │                 v55                                                          │

00:00:41 #3981 [Verbose] > │                 #else                                                        │

00:00:41 #3982 [Verbose] > │                 let v56 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #3983 [Verbose] > │                 v56                                                          │

00:00:41 #3984 [Verbose] > │                 #endif                                                       │

00:00:41 #3985 [Verbose] > │                 #else                                                        │

00:00:41 #3986 [Verbose] > │                 let v57 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #3987 [Verbose] > │                 v57                                                          │

00:00:41 #3988 [Verbose] > │                 #endif                                                       │

00:00:41 #3989 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #3990 [Verbose] > │                 let v58 : uint8 = result |> Option.get                       │

00:00:41 #3991 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #3992 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #3993 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #3994 [Verbose] > │                 let v59 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #3995 [Verbose] > │                 v59                                                          │

00:00:41 #3996 [Verbose] > │                 #else                                                        │

00:00:41 #3997 [Verbose] > │                 let v60 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #3998 [Verbose] > │                 v60                                                          │

00:00:41 #3999 [Verbose] > │                 #endif                                                       │

00:00:41 #4000 [Verbose] > │                 #else                                                        │

00:00:41 #4001 [Verbose] > │                 let v61 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #4002 [Verbose] > │                 v61                                                          │

00:00:41 #4003 [Verbose] > │                 #endif                                                       │

00:00:41 #4004 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #4005 [Verbose] > │                 let v62 : uint8 = result |> Option.get                       │

00:00:41 #4006 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #4007 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #4008 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #4009 [Verbose] > │                 let v63 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #4010 [Verbose] > │                 v63                                                          │

00:00:41 #4011 [Verbose] > │                 #else                                                        │

00:00:41 #4012 [Verbose] > │                 let v64 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #4013 [Verbose] > │                 v64                                                          │

00:00:41 #4014 [Verbose] > │                 #endif                                                       │

00:00:41 #4015 [Verbose] > │                 #else                                                        │

00:00:41 #4016 [Verbose] > │                 let v65 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #4017 [Verbose] > │                 v65                                                          │

00:00:41 #4018 [Verbose] > │                 #endif                                                       │

00:00:41 #4019 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #4020 [Verbose] > │                 let v66 : uint8 = result |> Option.get                       │

00:00:41 #4021 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #4022 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #4023 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #4024 [Verbose] > │                 let v67 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #4025 [Verbose] > │                 v67                                                          │

00:00:41 #4026 [Verbose] > │                 #else                                                        │

00:00:41 #4027 [Verbose] > │                 let v68 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #4028 [Verbose] > │                 v68                                                          │

00:00:41 #4029 [Verbose] > │                 #endif                                                       │

00:00:41 #4030 [Verbose] > │                 #else                                                        │

00:00:41 #4031 [Verbose] > │                 let v69 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #4032 [Verbose] > │                 v69                                                          │

00:00:41 #4033 [Verbose] > │                 #endif                                                       │

00:00:41 #4034 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #4035 [Verbose] > │                 let v70 : uint8 = result |> Option.get                       │

00:00:41 #4036 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #4037 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #4038 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #4039 [Verbose] > │                 let v71 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #4040 [Verbose] > │                 v71                                                          │

00:00:41 #4041 [Verbose] > │                 #else                                                        │

00:00:41 #4042 [Verbose] > │                 let v72 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #4043 [Verbose] > │                 v72                                                          │

00:00:41 #4044 [Verbose] > │                 #endif                                                       │

00:00:41 #4045 [Verbose] > │                 #else                                                        │

00:00:41 #4046 [Verbose] > │                 let v73 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #4047 [Verbose] > │                 v73                                                          │

00:00:41 #4048 [Verbose] > │                 #endif                                                       │

00:00:41 #4049 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #4050 [Verbose] > │                 let v74 : uint8 = result |> Option.get                       │

00:00:41 #4051 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #4052 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #4053 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #4054 [Verbose] > │                 let v75 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #4055 [Verbose] > │                 v75                                                          │

00:00:41 #4056 [Verbose] > │                 #else                                                        │

00:00:41 #4057 [Verbose] > │                 let v76 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #4058 [Verbose] > │                 v76                                                          │

00:00:41 #4059 [Verbose] > │                 #endif                                                       │

00:00:41 #4060 [Verbose] > │                 #else                                                        │

00:00:41 #4061 [Verbose] > │                 let v77 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #4062 [Verbose] > │                 v77                                                          │

00:00:41 #4063 [Verbose] > │                 #endif                                                       │

00:00:41 #4064 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #4065 [Verbose] > │                 let v78 : uint8 = result |> Option.get                       │

00:00:41 #4066 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #4067 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #4068 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #4069 [Verbose] > │                 let v79 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #4070 [Verbose] > │                 v79                                                          │

00:00:41 #4071 [Verbose] > │                 #else                                                        │

00:00:41 #4072 [Verbose] > │                 let v80 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #4073 [Verbose] > │                 v80                                                          │

00:00:41 #4074 [Verbose] > │                 #endif                                                       │

00:00:41 #4075 [Verbose] > │                 #else                                                        │

00:00:41 #4076 [Verbose] > │                 let v81 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #4077 [Verbose] > │                 v81                                                          │

00:00:41 #4078 [Verbose] > │                 #endif                                                       │

00:00:41 #4079 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #4080 [Verbose] > │                 let v82 : uint8 = result |> Option.get                       │

00:00:41 #4081 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #4082 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #4083 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #4084 [Verbose] > │                 let v83 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #4085 [Verbose] > │                 v83                                                          │

00:00:41 #4086 [Verbose] > │                 #else                                                        │

00:00:41 #4087 [Verbose] > │                 let v84 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #4088 [Verbose] > │                 v84                                                          │

00:00:41 #4089 [Verbose] > │                 #endif                                                       │

00:00:41 #4090 [Verbose] > │                 #else                                                        │

00:00:41 #4091 [Verbose] > │                 let v85 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #4092 [Verbose] > │                 v85                                                          │

00:00:41 #4093 [Verbose] > │                 #endif                                                       │

00:00:41 #4094 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #4095 [Verbose] > │                 let v86 : uint8 = result |> Option.get                       │

00:00:41 #4096 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #4097 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #4098 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #4099 [Verbose] > │                 let v87 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #4100 [Verbose] > │                 v87                                                          │

00:00:41 #4101 [Verbose] > │                 #else                                                        │

00:00:41 #4102 [Verbose] > │                 let v88 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #4103 [Verbose] > │                 v88                                                          │

00:00:41 #4104 [Verbose] > │                 #endif                                                       │

00:00:41 #4105 [Verbose] > │                 #else                                                        │

00:00:41 #4106 [Verbose] > │                 let v89 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #4107 [Verbose] > │                 v89                                                          │

00:00:41 #4108 [Verbose] > │                 #endif                                                       │

00:00:41 #4109 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #4110 [Verbose] > │                 let v90 : uint8 = result |> Option.get                       │

00:00:41 #4111 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #4112 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #4113 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #4114 [Verbose] > │                 let v91 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #4115 [Verbose] > │                 v91                                                          │

00:00:41 #4116 [Verbose] > │                 #else                                                        │

00:00:41 #4117 [Verbose] > │                 let v92 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #4118 [Verbose] > │                 v92                                                          │

00:00:41 #4119 [Verbose] > │                 #endif                                                       │

00:00:41 #4120 [Verbose] > │                 #else                                                        │

00:00:41 #4121 [Verbose] > │                 let v93 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #4122 [Verbose] > │                 v93                                                          │

00:00:41 #4123 [Verbose] > │                 #endif                                                       │

00:00:41 #4124 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #4125 [Verbose] > │                 let v94 : uint8 = result |> Option.get                       │

00:00:41 #4126 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #4127 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #4128 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #4129 [Verbose] > │                 let v95 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #4130 [Verbose] > │                 v95                                                          │

00:00:41 #4131 [Verbose] > │                 #else                                                        │

00:00:41 #4132 [Verbose] > │                 let v96 : uint8 = Fable.Core.RustInterop.emitRustExpr () v19 │

00:00:41 #4133 [Verbose] > │                 v96                                                          │

00:00:41 #4134 [Verbose] > │                 #endif                                                       │

00:00:41 #4135 [Verbose] > │                 #else                                                        │

00:00:41 #4136 [Verbose] > │                 let v97 : uint8 = System.Random().Next (1, 7) |> uint8       │

00:00:41 #4137 [Verbose] > │                 v97                                                          │

00:00:41 #4138 [Verbose] > │                 #endif                                                       │

00:00:41 #4139 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #4140 [Verbose] > │                 let v98 : uint8 = result |> Option.get                       │

00:00:41 #4141 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #4142 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #4143 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #4144 [Verbose] > │                 let v99 : uint8 = Fable.Core.RustInterop.emitRustExpr () v17 │

00:00:41 #4145 [Verbose] > │                 v99                                                          │

00:00:41 #4146 [Verbose] > │                 #else                                                        │

00:00:41 #4147 [Verbose] > │                 let v100 : uint8 = Fable.Core.RustInterop.emitRustExpr ()    │

00:00:41 #4148 [Verbose] > │ v19                                                                          │

00:00:41 #4149 [Verbose] > │                 v100                                                         │

00:00:41 #4150 [Verbose] > │                 #endif                                                       │

00:00:41 #4151 [Verbose] > │                 #else                                                        │

00:00:41 #4152 [Verbose] > │                 let v101 : uint8 = System.Random().Next (1, 7) |> uint8      │

00:00:41 #4153 [Verbose] > │                 v101                                                         │

00:00:41 #4154 [Verbose] > │                 #endif                                                       │

00:00:41 #4155 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #4156 [Verbose] > │                 let v102 : uint8 = result |> Option.get                      │

00:00:41 #4157 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #4158 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #4159 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #4160 [Verbose] > │                 let v103 : uint8 = Fable.Core.RustInterop.emitRustExpr ()    │

00:00:41 #4161 [Verbose] > │ v17                                                                          │

00:00:41 #4162 [Verbose] > │                 v103                                                         │

00:00:41 #4163 [Verbose] > │                 #else                                                        │

00:00:41 #4164 [Verbose] > │                 let v104 : uint8 = Fable.Core.RustInterop.emitRustExpr ()    │

00:00:41 #4165 [Verbose] > │ v19                                                                          │

00:00:41 #4166 [Verbose] > │                 v104                                                         │

00:00:41 #4167 [Verbose] > │                 #endif                                                       │

00:00:41 #4168 [Verbose] > │                 #else                                                        │

00:00:41 #4169 [Verbose] > │                 let v105 : uint8 = System.Random().Next (1, 7) |> uint8      │

00:00:41 #4170 [Verbose] > │                 v105                                                         │

00:00:41 #4171 [Verbose] > │                 #endif                                                       │

00:00:41 #4172 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #4173 [Verbose] > │                 let v106 : uint8 = result |> Option.get                      │

00:00:41 #4174 [Verbose] > │                 let mutable result = None                                    │

00:00:41 #4175 [Verbose] > │                 #if FABLE_COMPILER_RUST                                      │

00:00:41 #4176 [Verbose] > │                 #if !WASM                                                    │

00:00:41 #4177 [Verbose] > │                 let v107 : uint8 = Fable.Core.RustInterop.emitRustExpr ()    │

00:00:41 #4178 [Verbose] > │ v17                                                                          │

00:00:41 #4179 [Verbose] > │                 v107                                                         │

00:00:41 #4180 [Verbose] > │                 #else                                                        │

00:00:41 #4181 [Verbose] > │                 let v108 : uint8 = Fable.Core.RustInterop.emitRustExpr ()    │

00:00:41 #4182 [Verbose] > │ v19                                                                          │

00:00:41 #4183 [Verbose] > │                 v108                                                         │

00:00:41 #4184 [Verbose] > │                 #endif                                                       │

00:00:41 #4185 [Verbose] > │                 #else                                                        │

00:00:41 #4186 [Verbose] > │                 let v109 : uint8 = System.Random().Next (1, 7) |> uint8      │

00:00:41 #4187 [Verbose] > │                 v109                                                         │

00:00:41 #4188 [Verbose] > │                 #endif                                                       │

00:00:41 #4189 [Verbose] > │                 |> fun x -> result <- Some x                                 │

00:00:41 #4190 [Verbose] > │                 let v110 : uint8 = result |> Option.get                      │

00:00:41 #4191 [Verbose] > │                 let v111 : UH1 = UH1_1                                       │

00:00:41 #4192 [Verbose] > │                 let v112 : UH1 = UH1_0(v110, v111)                           │

00:00:41 #4193 [Verbose] > │                 let v113 : UH1 = UH1_0(v106, v112)                           │

00:00:41 #4194 [Verbose] > │                 let v114 : UH1 = UH1_0(v102, v113)                           │

00:00:41 #4195 [Verbose] > │                 let v115 : UH1 = UH1_0(v98, v114)                            │

00:00:41 #4196 [Verbose] > │                 let v116 : UH1 = UH1_0(v94, v115)                            │

00:00:41 #4197 [Verbose] > │                 let v117 : UH1 = UH1_0(v90, v116)                            │

00:00:41 #4198 [Verbose] > │                 let v118 : UH1 = UH1_0(v86, v117)                            │

00:00:41 #4199 [Verbose] > │                 let v119 : UH1 = UH1_0(v82, v118)                            │

00:00:41 #4200 [Verbose] > │                 let v120 : UH1 = UH1_0(v78, v119)                            │

00:00:41 #4201 [Verbose] > │                 let v121 : UH1 = UH1_0(v74, v120)                            │

00:00:41 #4202 [Verbose] > │                 let v122 : UH1 = UH1_0(v70, v121)                            │

00:00:41 #4203 [Verbose] > │                 let v123 : UH1 = UH1_0(v66, v122)                            │

00:00:41 #4204 [Verbose] > │                 let v124 : UH1 = UH1_0(v62, v123)                            │

00:00:41 #4205 [Verbose] > │                 let v125 : UH1 = UH1_0(v58, v124)                            │

00:00:41 #4206 [Verbose] > │                 let v126 : UH1 = UH1_0(v54, v125)                            │

00:00:41 #4207 [Verbose] > │                 let v127 : UH1 = UH1_0(v50, v126)                            │

00:00:41 #4208 [Verbose] > │                 let v128 : UH1 = UH1_0(v46, v127)                            │

00:00:41 #4209 [Verbose] > │                 let v129 : UH1 = UH1_0(v42, v128)                            │

00:00:41 #4210 [Verbose] > │                 let v130 : UH1 = UH1_0(v38, v129)                            │

00:00:41 #4211 [Verbose] > │                 let v131 : UH1 = UH1_0(v34, v130)                            │

00:00:41 #4212 [Verbose] > │                 let v132 : UH1 = UH1_0(v30, v131)                            │

00:00:41 #4213 [Verbose] > │                 let v133 : UH1 = UH1_0(v26, v132)                            │

00:00:41 #4214 [Verbose] > │                 let v134 : UH1 = UH1_0(v22, v133)                            │

00:00:41 #4215 [Verbose] > │                 let v135 : int8 = 23y                                        │

00:00:41 #4216 [Verbose] > │                 method14(v134, v135)                                         │

00:00:41 #4217 [Verbose] > │         | _ ->                                                               │

00:00:41 #4218 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4219 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4220 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4221 [Verbose] > │             let v138 : string = "rand::Rng::gen_range(&mut                   │

00:00:41 #4222 [Verbose] > │ rand::thread_rng(), 1..7)"                                                   │

00:00:41 #4223 [Verbose] > │             let v139 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4224 [Verbose] > │             v139                                                             │

00:00:41 #4225 [Verbose] > │             #else                                                            │

00:00:41 #4226 [Verbose] > │             let v140 : string = "1"                                          │

00:00:41 #4227 [Verbose] > │             let v141 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4228 [Verbose] > │             v141                                                             │

00:00:41 #4229 [Verbose] > │             #endif                                                           │

00:00:41 #4230 [Verbose] > │             #else                                                            │

00:00:41 #4231 [Verbose] > │             let v142 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4232 [Verbose] > │             v142                                                             │

00:00:41 #4233 [Verbose] > │             #endif                                                           │

00:00:41 #4234 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4235 [Verbose] > │             let v143 : uint8 = result |> Option.get                          │

00:00:41 #4236 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4237 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4238 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4239 [Verbose] > │             let v144 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4240 [Verbose] > │             v144                                                             │

00:00:41 #4241 [Verbose] > │             #else                                                            │

00:00:41 #4242 [Verbose] > │             let v145 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4243 [Verbose] > │             v145                                                             │

00:00:41 #4244 [Verbose] > │             #endif                                                           │

00:00:41 #4245 [Verbose] > │             #else                                                            │

00:00:41 #4246 [Verbose] > │             let v146 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4247 [Verbose] > │             v146                                                             │

00:00:41 #4248 [Verbose] > │             #endif                                                           │

00:00:41 #4249 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4250 [Verbose] > │             let v147 : uint8 = result |> Option.get                          │

00:00:41 #4251 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4252 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4253 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4254 [Verbose] > │             let v148 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4255 [Verbose] > │             v148                                                             │

00:00:41 #4256 [Verbose] > │             #else                                                            │

00:00:41 #4257 [Verbose] > │             let v149 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4258 [Verbose] > │             v149                                                             │

00:00:41 #4259 [Verbose] > │             #endif                                                           │

00:00:41 #4260 [Verbose] > │             #else                                                            │

00:00:41 #4261 [Verbose] > │             let v150 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4262 [Verbose] > │             v150                                                             │

00:00:41 #4263 [Verbose] > │             #endif                                                           │

00:00:41 #4264 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4265 [Verbose] > │             let v151 : uint8 = result |> Option.get                          │

00:00:41 #4266 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4267 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4268 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4269 [Verbose] > │             let v152 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4270 [Verbose] > │             v152                                                             │

00:00:41 #4271 [Verbose] > │             #else                                                            │

00:00:41 #4272 [Verbose] > │             let v153 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4273 [Verbose] > │             v153                                                             │

00:00:41 #4274 [Verbose] > │             #endif                                                           │

00:00:41 #4275 [Verbose] > │             #else                                                            │

00:00:41 #4276 [Verbose] > │             let v154 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4277 [Verbose] > │             v154                                                             │

00:00:41 #4278 [Verbose] > │             #endif                                                           │

00:00:41 #4279 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4280 [Verbose] > │             let v155 : uint8 = result |> Option.get                          │

00:00:41 #4281 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4282 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4283 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4284 [Verbose] > │             let v156 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4285 [Verbose] > │             v156                                                             │

00:00:41 #4286 [Verbose] > │             #else                                                            │

00:00:41 #4287 [Verbose] > │             let v157 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4288 [Verbose] > │             v157                                                             │

00:00:41 #4289 [Verbose] > │             #endif                                                           │

00:00:41 #4290 [Verbose] > │             #else                                                            │

00:00:41 #4291 [Verbose] > │             let v158 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4292 [Verbose] > │             v158                                                             │

00:00:41 #4293 [Verbose] > │             #endif                                                           │

00:00:41 #4294 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4295 [Verbose] > │             let v159 : uint8 = result |> Option.get                          │

00:00:41 #4296 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4297 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4298 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4299 [Verbose] > │             let v160 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4300 [Verbose] > │             v160                                                             │

00:00:41 #4301 [Verbose] > │             #else                                                            │

00:00:41 #4302 [Verbose] > │             let v161 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4303 [Verbose] > │             v161                                                             │

00:00:41 #4304 [Verbose] > │             #endif                                                           │

00:00:41 #4305 [Verbose] > │             #else                                                            │

00:00:41 #4306 [Verbose] > │             let v162 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4307 [Verbose] > │             v162                                                             │

00:00:41 #4308 [Verbose] > │             #endif                                                           │

00:00:41 #4309 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4310 [Verbose] > │             let v163 : uint8 = result |> Option.get                          │

00:00:41 #4311 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4312 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4313 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4314 [Verbose] > │             let v164 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4315 [Verbose] > │             v164                                                             │

00:00:41 #4316 [Verbose] > │             #else                                                            │

00:00:41 #4317 [Verbose] > │             let v165 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4318 [Verbose] > │             v165                                                             │

00:00:41 #4319 [Verbose] > │             #endif                                                           │

00:00:41 #4320 [Verbose] > │             #else                                                            │

00:00:41 #4321 [Verbose] > │             let v166 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4322 [Verbose] > │             v166                                                             │

00:00:41 #4323 [Verbose] > │             #endif                                                           │

00:00:41 #4324 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4325 [Verbose] > │             let v167 : uint8 = result |> Option.get                          │

00:00:41 #4326 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4327 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4328 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4329 [Verbose] > │             let v168 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4330 [Verbose] > │             v168                                                             │

00:00:41 #4331 [Verbose] > │             #else                                                            │

00:00:41 #4332 [Verbose] > │             let v169 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4333 [Verbose] > │             v169                                                             │

00:00:41 #4334 [Verbose] > │             #endif                                                           │

00:00:41 #4335 [Verbose] > │             #else                                                            │

00:00:41 #4336 [Verbose] > │             let v170 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4337 [Verbose] > │             v170                                                             │

00:00:41 #4338 [Verbose] > │             #endif                                                           │

00:00:41 #4339 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4340 [Verbose] > │             let v171 : uint8 = result |> Option.get                          │

00:00:41 #4341 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4342 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4343 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4344 [Verbose] > │             let v172 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4345 [Verbose] > │             v172                                                             │

00:00:41 #4346 [Verbose] > │             #else                                                            │

00:00:41 #4347 [Verbose] > │             let v173 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4348 [Verbose] > │             v173                                                             │

00:00:41 #4349 [Verbose] > │             #endif                                                           │

00:00:41 #4350 [Verbose] > │             #else                                                            │

00:00:41 #4351 [Verbose] > │             let v174 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4352 [Verbose] > │             v174                                                             │

00:00:41 #4353 [Verbose] > │             #endif                                                           │

00:00:41 #4354 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4355 [Verbose] > │             let v175 : uint8 = result |> Option.get                          │

00:00:41 #4356 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4357 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4358 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4359 [Verbose] > │             let v176 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4360 [Verbose] > │             v176                                                             │

00:00:41 #4361 [Verbose] > │             #else                                                            │

00:00:41 #4362 [Verbose] > │             let v177 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4363 [Verbose] > │             v177                                                             │

00:00:41 #4364 [Verbose] > │             #endif                                                           │

00:00:41 #4365 [Verbose] > │             #else                                                            │

00:00:41 #4366 [Verbose] > │             let v178 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4367 [Verbose] > │             v178                                                             │

00:00:41 #4368 [Verbose] > │             #endif                                                           │

00:00:41 #4369 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4370 [Verbose] > │             let v179 : uint8 = result |> Option.get                          │

00:00:41 #4371 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4372 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4373 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4374 [Verbose] > │             let v180 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4375 [Verbose] > │             v180                                                             │

00:00:41 #4376 [Verbose] > │             #else                                                            │

00:00:41 #4377 [Verbose] > │             let v181 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4378 [Verbose] > │             v181                                                             │

00:00:41 #4379 [Verbose] > │             #endif                                                           │

00:00:41 #4380 [Verbose] > │             #else                                                            │

00:00:41 #4381 [Verbose] > │             let v182 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4382 [Verbose] > │             v182                                                             │

00:00:41 #4383 [Verbose] > │             #endif                                                           │

00:00:41 #4384 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4385 [Verbose] > │             let v183 : uint8 = result |> Option.get                          │

00:00:41 #4386 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4387 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4388 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4389 [Verbose] > │             let v184 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4390 [Verbose] > │             v184                                                             │

00:00:41 #4391 [Verbose] > │             #else                                                            │

00:00:41 #4392 [Verbose] > │             let v185 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4393 [Verbose] > │             v185                                                             │

00:00:41 #4394 [Verbose] > │             #endif                                                           │

00:00:41 #4395 [Verbose] > │             #else                                                            │

00:00:41 #4396 [Verbose] > │             let v186 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4397 [Verbose] > │             v186                                                             │

00:00:41 #4398 [Verbose] > │             #endif                                                           │

00:00:41 #4399 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4400 [Verbose] > │             let v187 : uint8 = result |> Option.get                          │

00:00:41 #4401 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4402 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4403 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4404 [Verbose] > │             let v188 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4405 [Verbose] > │             v188                                                             │

00:00:41 #4406 [Verbose] > │             #else                                                            │

00:00:41 #4407 [Verbose] > │             let v189 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4408 [Verbose] > │             v189                                                             │

00:00:41 #4409 [Verbose] > │             #endif                                                           │

00:00:41 #4410 [Verbose] > │             #else                                                            │

00:00:41 #4411 [Verbose] > │             let v190 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4412 [Verbose] > │             v190                                                             │

00:00:41 #4413 [Verbose] > │             #endif                                                           │

00:00:41 #4414 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4415 [Verbose] > │             let v191 : uint8 = result |> Option.get                          │

00:00:41 #4416 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4417 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4418 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4419 [Verbose] > │             let v192 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4420 [Verbose] > │             v192                                                             │

00:00:41 #4421 [Verbose] > │             #else                                                            │

00:00:41 #4422 [Verbose] > │             let v193 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4423 [Verbose] > │             v193                                                             │

00:00:41 #4424 [Verbose] > │             #endif                                                           │

00:00:41 #4425 [Verbose] > │             #else                                                            │

00:00:41 #4426 [Verbose] > │             let v194 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4427 [Verbose] > │             v194                                                             │

00:00:41 #4428 [Verbose] > │             #endif                                                           │

00:00:41 #4429 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4430 [Verbose] > │             let v195 : uint8 = result |> Option.get                          │

00:00:41 #4431 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4432 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4433 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4434 [Verbose] > │             let v196 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4435 [Verbose] > │             v196                                                             │

00:00:41 #4436 [Verbose] > │             #else                                                            │

00:00:41 #4437 [Verbose] > │             let v197 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4438 [Verbose] > │             v197                                                             │

00:00:41 #4439 [Verbose] > │             #endif                                                           │

00:00:41 #4440 [Verbose] > │             #else                                                            │

00:00:41 #4441 [Verbose] > │             let v198 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4442 [Verbose] > │             v198                                                             │

00:00:41 #4443 [Verbose] > │             #endif                                                           │

00:00:41 #4444 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4445 [Verbose] > │             let v199 : uint8 = result |> Option.get                          │

00:00:41 #4446 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4447 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4448 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4449 [Verbose] > │             let v200 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4450 [Verbose] > │             v200                                                             │

00:00:41 #4451 [Verbose] > │             #else                                                            │

00:00:41 #4452 [Verbose] > │             let v201 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4453 [Verbose] > │             v201                                                             │

00:00:41 #4454 [Verbose] > │             #endif                                                           │

00:00:41 #4455 [Verbose] > │             #else                                                            │

00:00:41 #4456 [Verbose] > │             let v202 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4457 [Verbose] > │             v202                                                             │

00:00:41 #4458 [Verbose] > │             #endif                                                           │

00:00:41 #4459 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4460 [Verbose] > │             let v203 : uint8 = result |> Option.get                          │

00:00:41 #4461 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4462 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4463 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4464 [Verbose] > │             let v204 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4465 [Verbose] > │             v204                                                             │

00:00:41 #4466 [Verbose] > │             #else                                                            │

00:00:41 #4467 [Verbose] > │             let v205 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4468 [Verbose] > │             v205                                                             │

00:00:41 #4469 [Verbose] > │             #endif                                                           │

00:00:41 #4470 [Verbose] > │             #else                                                            │

00:00:41 #4471 [Verbose] > │             let v206 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4472 [Verbose] > │             v206                                                             │

00:00:41 #4473 [Verbose] > │             #endif                                                           │

00:00:41 #4474 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4475 [Verbose] > │             let v207 : uint8 = result |> Option.get                          │

00:00:41 #4476 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4477 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4478 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4479 [Verbose] > │             let v208 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4480 [Verbose] > │             v208                                                             │

00:00:41 #4481 [Verbose] > │             #else                                                            │

00:00:41 #4482 [Verbose] > │             let v209 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4483 [Verbose] > │             v209                                                             │

00:00:41 #4484 [Verbose] > │             #endif                                                           │

00:00:41 #4485 [Verbose] > │             #else                                                            │

00:00:41 #4486 [Verbose] > │             let v210 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4487 [Verbose] > │             v210                                                             │

00:00:41 #4488 [Verbose] > │             #endif                                                           │

00:00:41 #4489 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4490 [Verbose] > │             let v211 : uint8 = result |> Option.get                          │

00:00:41 #4491 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4492 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4493 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4494 [Verbose] > │             let v212 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4495 [Verbose] > │             v212                                                             │

00:00:41 #4496 [Verbose] > │             #else                                                            │

00:00:41 #4497 [Verbose] > │             let v213 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4498 [Verbose] > │             v213                                                             │

00:00:41 #4499 [Verbose] > │             #endif                                                           │

00:00:41 #4500 [Verbose] > │             #else                                                            │

00:00:41 #4501 [Verbose] > │             let v214 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4502 [Verbose] > │             v214                                                             │

00:00:41 #4503 [Verbose] > │             #endif                                                           │

00:00:41 #4504 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4505 [Verbose] > │             let v215 : uint8 = result |> Option.get                          │

00:00:41 #4506 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4507 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4508 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4509 [Verbose] > │             let v216 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4510 [Verbose] > │             v216                                                             │

00:00:41 #4511 [Verbose] > │             #else                                                            │

00:00:41 #4512 [Verbose] > │             let v217 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4513 [Verbose] > │             v217                                                             │

00:00:41 #4514 [Verbose] > │             #endif                                                           │

00:00:41 #4515 [Verbose] > │             #else                                                            │

00:00:41 #4516 [Verbose] > │             let v218 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4517 [Verbose] > │             v218                                                             │

00:00:41 #4518 [Verbose] > │             #endif                                                           │

00:00:41 #4519 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4520 [Verbose] > │             let v219 : uint8 = result |> Option.get                          │

00:00:41 #4521 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4522 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4523 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4524 [Verbose] > │             let v220 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4525 [Verbose] > │             v220                                                             │

00:00:41 #4526 [Verbose] > │             #else                                                            │

00:00:41 #4527 [Verbose] > │             let v221 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4528 [Verbose] > │             v221                                                             │

00:00:41 #4529 [Verbose] > │             #endif                                                           │

00:00:41 #4530 [Verbose] > │             #else                                                            │

00:00:41 #4531 [Verbose] > │             let v222 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4532 [Verbose] > │             v222                                                             │

00:00:41 #4533 [Verbose] > │             #endif                                                           │

00:00:41 #4534 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4535 [Verbose] > │             let v223 : uint8 = result |> Option.get                          │

00:00:41 #4536 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4537 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4538 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4539 [Verbose] > │             let v224 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4540 [Verbose] > │             v224                                                             │

00:00:41 #4541 [Verbose] > │             #else                                                            │

00:00:41 #4542 [Verbose] > │             let v225 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4543 [Verbose] > │             v225                                                             │

00:00:41 #4544 [Verbose] > │             #endif                                                           │

00:00:41 #4545 [Verbose] > │             #else                                                            │

00:00:41 #4546 [Verbose] > │             let v226 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4547 [Verbose] > │             v226                                                             │

00:00:41 #4548 [Verbose] > │             #endif                                                           │

00:00:41 #4549 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4550 [Verbose] > │             let v227 : uint8 = result |> Option.get                          │

00:00:41 #4551 [Verbose] > │             let mutable result = None                                        │

00:00:41 #4552 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:00:41 #4553 [Verbose] > │             #if !WASM                                                        │

00:00:41 #4554 [Verbose] > │             let v228 : uint8 = Fable.Core.RustInterop.emitRustExpr () v138   │

00:00:41 #4555 [Verbose] > │             v228                                                             │

00:00:41 #4556 [Verbose] > │             #else                                                            │

00:00:41 #4557 [Verbose] > │             let v229 : uint8 = Fable.Core.RustInterop.emitRustExpr () v140   │

00:00:41 #4558 [Verbose] > │             v229                                                             │

00:00:41 #4559 [Verbose] > │             #endif                                                           │

00:00:41 #4560 [Verbose] > │             #else                                                            │

00:00:41 #4561 [Verbose] > │             let v230 : uint8 = System.Random().Next (1, 7) |> uint8          │

00:00:41 #4562 [Verbose] > │             v230                                                             │

00:00:41 #4563 [Verbose] > │             #endif                                                           │

00:00:41 #4564 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:00:41 #4565 [Verbose] > │             let v231 : uint8 = result |> Option.get                          │

00:00:41 #4566 [Verbose] > │             let v232 : UH1 = UH1_1                                           │

00:00:41 #4567 [Verbose] > │             let v233 : UH1 = UH1_0(v231, v232)                               │

00:00:41 #4568 [Verbose] > │             let v234 : UH1 = UH1_0(v227, v233)                               │

00:00:41 #4569 [Verbose] > │             let v235 : UH1 = UH1_0(v223, v234)                               │

00:00:41 #4570 [Verbose] > │             let v236 : UH1 = UH1_0(v219, v235)                               │

00:00:41 #4571 [Verbose] > │             let v237 : UH1 = UH1_0(v215, v236)                               │

00:00:41 #4572 [Verbose] > │             let v238 : UH1 = UH1_0(v211, v237)                               │

00:00:41 #4573 [Verbose] > │             let v239 : UH1 = UH1_0(v207, v238)                               │

00:00:41 #4574 [Verbose] > │             let v240 : UH1 = UH1_0(v203, v239)                               │

00:00:41 #4575 [Verbose] > │             let v241 : UH1 = UH1_0(v199, v240)                               │

00:00:41 #4576 [Verbose] > │             let v242 : UH1 = UH1_0(v195, v241)                               │

00:00:41 #4577 [Verbose] > │             let v243 : UH1 = UH1_0(v191, v242)                               │

00:00:41 #4578 [Verbose] > │             let v244 : UH1 = UH1_0(v187, v243)                               │

00:00:41 #4579 [Verbose] > │             let v245 : UH1 = UH1_0(v183, v244)                               │

00:00:41 #4580 [Verbose] > │             let v246 : UH1 = UH1_0(v179, v245)                               │

00:00:41 #4581 [Verbose] > │             let v247 : UH1 = UH1_0(v175, v246)                               │

00:00:41 #4582 [Verbose] > │             let v248 : UH1 = UH1_0(v171, v247)                               │

00:00:41 #4583 [Verbose] > │             let v249 : UH1 = UH1_0(v167, v248)                               │

00:00:41 #4584 [Verbose] > │             let v250 : UH1 = UH1_0(v163, v249)                               │

00:00:41 #4585 [Verbose] > │             let v251 : UH1 = UH1_0(v159, v250)                               │

00:00:41 #4586 [Verbose] > │             let v252 : UH1 = UH1_0(v155, v251)                               │

00:00:41 #4587 [Verbose] > │             let v253 : UH1 = UH1_0(v151, v252)                               │

00:00:41 #4588 [Verbose] > │             let v254 : UH1 = UH1_0(v147, v253)                               │

00:00:41 #4589 [Verbose] > │             let v255 : UH1 = UH1_0(v143, v254)                               │

00:00:41 #4590 [Verbose] > │             let v256 : int8 = 23y                                            │

00:00:41 #4591 [Verbose] > │             method14(v255, v256)                                             │

00:00:41 #4592 [Verbose] > │ and closure81 () (v0 : (string [])) : int32 =                                │

00:00:41 #4593 [Verbose] > │     let v1 : string = $"calculate_dice_count / max: {9223372036854775807L} / │

00:00:41 #4594 [Verbose] > │ n: {24y} / p: {4738381338321616896L}"                                        │

00:00:41 #4595 [Verbose] > │     System.Console.WriteLine v1                                              │

00:00:41 #4596 [Verbose] > │     let v2 : UH1 = UH1_1                                                     │

00:00:41 #4597 [Verbose] > │     let v3 : int8 = 0y                                                       │

00:00:41 #4598 [Verbose] > │     let v4 : int64 = method14(v2, v3)                                        │

00:00:41 #4599 [Verbose] > │     let v5 : string = $"result: {v4}"                                        │

00:00:41 #4600 [Verbose] > │     System.Console.WriteLine v5                                              │

00:00:41 #4601 [Verbose] > │     0                                                                        │

00:00:41 #4602 [Verbose] > │ let v0 : (int64 -> (UH0 -> UH0)) = closure0()                                │

00:00:41 #4603 [Verbose] > │ let rotate_numbers x = v0 x                                                  │

00:00:41 #4604 [Verbose] > │ let v1 : ((string -> unit) option -> (UH1 -> (unit -> uint8))) = closure3()  │

00:00:41 #4605 [Verbose] > │ let create_sequential_roller x = v1 x                                        │

00:00:41 #4606 [Verbose] > │ let v2 : ((string -> unit) option -> ((unit -> uint8) -> (bool -> (uint64 -> │

00:00:41 #4607 [Verbose] > │ uint64)))) = closure10()                                                     │

00:00:41 #4608 [Verbose] > │ let roll_progressively x = v2 x                                              │

00:00:41 #4609 [Verbose] > │ let v3 : ((string -> unit) option -> (uint64 -> (UH1 -> uint64 option))) =   │

00:00:41 #4610 [Verbose] > │ closure78()                                                                  │

00:00:41 #4611 [Verbose] > │ let roll_within_bounds x = v3 x                                              │

00:00:41 #4612 [Verbose] > │ let v4 : ((string []) -> int32) = closure81()                                │

00:00:41 #4613 [Verbose] > │ let main args = v4 args                                                      │

00:00:41 #4614 [Verbose] > │ ()                                                                           │

00:00:41 #4615 [Verbose] > │                                                                              │

00:00:41 #4616 [Verbose] > │                                                                              │

00:00:41 #4617 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:44 #4618 [Verbose] > [NbConvertApp] Converting notebook dice.dib.ipynb to html

00:00:44 #4619 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:00:44 #4620 [Verbose] >   validate(nb)

00:00:45 #4621 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:00:45 #4622 [Verbose] >   return _pygments_highlight(

00:00:45 #4623 [Verbose] > [NbConvertApp] Writing 498095 bytes to dice.dib.html

00:00:46 #4624 [Debug] executeAsync / exitCode: 0 / output.Length: 352996

00:00:46 #4625 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] writeDibCode / output: Spi / path: dice.dib

00:00:00 #2 [Debug] parseDibCode / output: Spi / file: dice.dib

00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@411-297> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\apps\dice

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: [] / typeErrorCount: 0

00:00:01 #11 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: [] / typeErrorCount: 0

00:00:01 #12 [Debug] sendJson / port: 13805 / json: {"FileOpen":{"spiText":"// // # dice (Polyglot)\n\n// // ## sixth_power_sequence\n\ninl sixth_power_sequence () =\n    stream.iterate ((*) 6) 1\n\n// // ## accumulate_dice_rolls\n\ninl accumulate_dice_rolls\n    (log : option (string -\u003E ()))\n    (rolls : list u8)\n    (power : i8)\n    acc\n    =\n    inl rec body acc power rolls =\n        match rolls with\n        | _ when power \u003C 0 =\u003E\n            log |\u003E optionm\u0027.iter ((|\u003E) $\u0022$\\\u0022accumulate_dice_rolls / power: {!power} / acc: {!acc}\\\u0022\u0022)\n            Some (acc \u002B 1, rolls)\n        | [] =\u003E None\n        | roll :: rest when roll \u003E 1 =\u003E\n            inl coeff = sixth_power_sequence () |\u003E stream.item power\n            inl value = conv (roll - 1) * coeff\n            log |\u003E optionm\u0027.iter ((|\u003E) $\u0022$\\\u0022accumulate_dice_rolls / power: {!power} / acc: {!acc} / roll: {!roll} / value: {!value}\\\u0022\u0022\n            )\n            loop (acc \u002B value) (power - 1) rest\n        | roll :: rest =\u003E\n            log |\u003E optionm\u0027.iter ((|\u003E) $\u0022$\\\u0022accumulate_dice_rolls / power: {!power} / acc: {!acc} / roll: {!roll}\\\u0022\u0022)\n            loop acc (power - 1) rest\n    and inl loop acc power rolls =\n        if var_is rolls |\u003E not\n        then body acc power rolls\n        else\n            inl acc = dyn acc\n            join body acc power rolls\n    loop acc power rolls\n\n// // ## roll_within_bounds\n\ninl roll_within_bounds (log : option (string -\u003E ())) max rolls =\n    inl power = listm.length rolls - 1\n    match accumulate_dice_rolls log rolls power 0 with\n    | Some (result, _) when result \u003E= 1 \u0026\u0026 result \u003C= max =\u003E Some result\n    | _ =\u003E None\n\n// // ## calculate_dice_count\n\ninl calculate_dice_count (log : option (string -\u003E ())) max =\n    inl rec body n p =\n        inl return () =\n            log |\u003E optionm\u0027.iter ((|\u003E) $\u0022$\\\u0022calculate_dice_count / max: {!max} / n: {!n} / p: {!p}\\\u0022\u0022)\n            n\n\n        if p \u003C max then\n            inl p\u0027 = p * 6\n            if p\u0027 \u003E p\n            then loop (n \u002B 1) p\u0027\n            else return ()\n        else return ()\n\n    and inl loop n p =\n        if var_is max |\u003E not\n        then body n p\n        else\n            inl n = dyn n\n            inl p = dyn p\n            join body n p\n    if max = 1\n    then 1\n    else loop 0 1\n\n// // ## roll_dice\n\ninl roll_dice () : u8 =\n    run_target function\n        | Fsharp =\u003E fun () =\u003E $\u0022System.Random().Next (1, 7) |\u003E uint8\u0022\n        | Rust (Native) =\u003E fun () =\u003E rust.emit_expr () \u0022rand::Rng::gen_range(\u0026mut rand::thread_rng(), 1..7)\u0022\n        | Rust (Wasm) =\u003E fun () =\u003E rust.emit_expr () \u00221\u0022\n\n// // ## rotate_number\n\ninl rotate_number forall t {number}. (max : i64) (n : t) : t =\n    (conv n - 1 \u002B max) % max \u002B 1 |\u003E conv\n\n// // ## rotate_numbers\n\ninl rotate_numbers max items =\n    items |\u003E stream.map (rotate_number max)\n\n// // ## create_sequential_roller\n\ninl create_sequential_roller (log : option (string -\u003E ())) list =\n    log |\u003E optionm\u0027.iter ((|\u003E) $\u0022$\\\u0022create_sequential_roller ()\\\u0022\u0022)\n    inl s = list |\u003E listm.rev |\u003E listm.append list |\u003E stream.from_list |\u003E stream.memoize\n    inl current_index = mut 0i64\n    inl acc = mut 1\n    inl len = mut -1\n    inl last_item = mut None\n    let rec loop () =\n        fun () =\u003E\n            inl current_index = *current_index\n            inl acc = *acc\n            inl len = *len\n            inl last_item = *last_item\n            log |\u003E optionm\u0027.iter ((|\u003E) $\u0022$\\\u0022create_sequential_roller / roll / current_index: {!current_index} / acc: {!acc} / len: {!len} / last_item: %A{!last_item}\\\u0022\u0022)\n        |\u003E fun x =\u003E x ()\n        match s () |\u003E stream.try_item *current_index with\n        | Some item =\u003E\n            current_index \u003C- *current_index \u002B 1\n            last_item \u003C- Some item\n            item\n        | None =\u003E\n            log |\u003E optionm\u0027.iter ((|\u003E) $\u0022$\\\u0022create_sequential_roller / roll / None\\\u0022\u0022)\n            if *len = -1\n            then len \u003C- *current_index\n            acc \u003C-\n                if *acc \u003E= *len\n                then 1\n                else *acc \u002B 1\n            current_index \u003C- *acc - 1\n            last_item \u003C- None\n            loop ()\n    loop\n\n// // ## roll_progressively\n\ninl roll_progressively (log : option (string -\u003E ())) roll reroll max =\n    inl power = (calculate_dice_count log max) - 1\n    let rec loop rolls size =\n        if size \u003C power \u002B 1\n        then loop (roll () :: rolls) (size \u002B 1)\n        else accumulate_dice_rolls log rolls power 0 |\u003E function\n            | Some (result, _) when result \u003C= max =\u003E result\n            | _ when reroll =\u003E loop (listm.init power (fun _ =\u003E roll ())) power\n            | _ =\u003E loop (roll () :: rolls) (size \u002B 1)\n    loop [] 0\n\n// // ## main\n\ninl main (_args : array_base string) =\n    inl result = roll_progressively (Some console.write_line) roll_dice true (limit.max : i64)\n    console.write_line ($\u0022$\\\u0022result: {!result}\\\u0022\u0022 : string)\n    0i32\n\ninl main () =\n    inl rotate_numbers\u0027 : i64 -\u003E stream.stream u8 -\u003E stream.stream u8 =\n        rotate_numbers\n\n    inl create_sequential_roller\u0027 :\n        optionm\u0027.option\u0027 (string -\u003E ())\n        -\u003E list u8 \n        -\u003E (() -\u003E u8)\n        =\n        optionm\u0027.unbox \u003E\u003E create_sequential_roller\n\n    inl roll_progressively\u0027 :\n        optionm\u0027.option\u0027 (string -\u003E ()) \n        -\u003E (() -\u003E u8)\n        -\u003E bool\n        -\u003E u64\n        -\u003E u64\n        =\n        optionm\u0027.unbox \u003E\u003E roll_progressively\n\n    inl roll_within_bounds\u0027 :\n        optionm\u0027.option\u0027 (string -\u003E ())\n        -\u003E u64\n        -\u003E list u8\n        -\u003E optionm\u0027.option\u0027 u64\n        =\n        fun a b c =\u003E\n            (optionm\u0027.unbox \u003E\u003E roll_within_bounds) a b c\n            |\u003E optionm\u0027.box\n\n    $\u0022let rotate_numbers x = !rotate_numbers\u0027 x\u0022 : ()\n    $\u0022let create_sequential_roller x = !create_sequential_roller\u0027 x\u0022 : ()\n    $\u0022let roll_progressively x = !roll_progressively\u0027 x\u0022 : ()\n    $\u0022let roll_within_bounds x = !roll_within_bounds\u0027 x\u0022 : ()\n    $\u0022let main args = !main args\u0022 : ()\n","uri":"file:///C:\\home\\git\\polyglot\\apps\\dice\\dice.spi"}} / result.Length:

00:00:01 #13 [Debug] sendJson / port: 13805 / json: {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\home\\git\\polyglot\\apps\\dice\\dice.spi"}} / result.Length:

00:00:02 #14 [Verbose] > Building C:\home\git\polyglot\apps\dice\dice.spi

00:00:02 #15 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: [] / typeErrorCount: 0

00:00:03 #16 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: [] / typeErrorCount: 0

00:00:03 #17 [Debug] buildFile / takeWhileInclusive / fsxContent: type UH0 =

    | UH0_0 of uint8 * (unit -> UH0)

    | UH0_1

and UH1 =

    | UH1_0 of uint8 * UH1

    | UH1_1

and [<Struct>] US0 =

    | US0_0

    | US0_1 of f1_0 : (string -> unit)

and [<Struct>] US1 =

    | US1_0 of f0_0 : UH0

    | US1_1 of f1_0 : (unit -> UH0)

and Mut0 = {mutable l0 : US1}

and Mut1 = {mutable l0 : int64}

and [<Struct>] US2 =

    | US2_0

    | US2_1 of f1_0 : uint8

and Mut2 = {mutable l0 : US2}

and [<Struct>] US3 =

    | US3_0

    | US3_1 of f1_0 : uint64 * f1_1 : UH1

and UH2 =

    | UH2_0 of uint64 * (unit -> UH2)

    | UH2_1

and [<Struct>] US4 =

    | US4_0

    | US4_1 of f1_0 : uint64

and [<Struct>] US5 =

    | US5_0

    | US5_1 of f1_0 : int64 * f1_1 : UH1

let rec closure2 (v0 : UH0) () : UH0 =

    v0

and method0 (v0 ... / errors: [] / typeErrorCount: 0

00:00:03 #18 [Debug] watchWithFilter / Disposing watch stream / filter: FileName, LastWrite

00:00:00 #1 [Debug] persistCodeProject / packages: [Fable.Core] / modules: [lib/fsharp/Common.fs] / name: dice / code.Length: 67754

00:00:00 #2 [Debug] buildProject / fullPath: C:\home\git\polyglot\target\polyglot\builder\dice\dice.fsproj

00:00:00 #3 [Debug] executeAsync / options: { Command =

   "dotnet publish "C:\home\git\polyglot\target/polyglot/builder\dice\dice.fsproj" --configuration Release --output "C:\home\git\polyglot\apps\dice\dist" --runtime linux-x64"

  WorkingDirectory = Some "C:\home\git\polyglot\target\polyglot\builder\dice"

  CancellationToken = None

  OnLine = None }

00:00:00 #4 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET

00:00:01 #5 [Verbose] >   Determining projects to restore...

00:00:04 #6 [Verbose] >   Restored C:\home\git\polyglot\target\polyglot\builder\dice\dice.fsproj (in 2.9 sec).

00:00:11 #7 [Verbose] >   dice -> C:\home\git\polyglot\target\polyglot\builder\dice\bin\Release\net8.0\linux-x64\dice.dll

00:00:12 #8 [Verbose] >   dice -> C:\home\git\polyglot\apps\dice\dist\

00:00:12 #9 [Debug] executeAsync / exitCode: 0 / output.Length: 310

00:00:12 #10 [Debug] executeAsync / options: { Command =

   "dotnet publish "C:\home\git\polyglot\target/polyglot/builder\dice\dice.fsproj" --configuration Release --output "C:\home\git\polyglot\apps\dice\dist" --runtime win-x64"

  WorkingDirectory = Some "C:\home\git\polyglot\target\polyglot\builder\dice"

  CancellationToken = None

  OnLine = None }

00:00:13 #11 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET

00:00:13 #12 [Verbose] >   Determining projects to restore...

00:00:14 #13 [Verbose] >   Restored C:\home\git\polyglot\target\polyglot\builder\dice\dice.fsproj (in 430 ms).

00:00:20 #14 [Verbose] >   dice -> C:\home\git\polyglot\target\polyglot\builder\dice\bin\Release\net8.0\win-x64\dice.dll

00:00:24 #15 [Verbose] >   dice -> C:\home\git\polyglot\apps\dice\dist\

00:00:24 #16 [Debug] executeAsync / exitCode: 0 / output.Length: 307

Fable 4.5.0: F# to Rust compiler (status: alpha)



Thanks to the contributor! @cmeeren

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing ..\..\target\polyglot\builder\dice\dice.fsproj...

Retrieving project options from cache, in case of issues run `dotnet fable clean` or try `--noCache` option.

Project and references (2 source files) parsed in 278ms



Started Fable compilation...

Fable compilation finished in 4315ms



Fable 4.5.0: F# to TypeScript compiler

Minimum fable-library version (when installed from npm): 1.1.1



Thanks to the contributor! @davedawkins

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing ..\..\target\polyglot\builder\dice\dice.fsproj...

Retrieving project options from cache, in case of issues run `dotnet fable clean` or try `--noCache` option.

Project and references (2 source files) parsed in 274ms



Started Fable compilation...

Fable compilation finished in 4522ms



Fable 4.5.0: F# to Python compiler (status: beta)



Thanks to the contributor! @johlrich

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing ..\..\target\polyglot\builder\dice\dice.fsproj...

Retrieving project options from cache, in case of issues run `dotnet fable clean` or try `--noCache` option.

Project and references (2 source files) parsed in 273ms



Started Fable compilation...

Fable compilation finished in 4154ms



Fable 4.5.0: F# to PHP compiler (status: experimental)



Thanks to the contributor! @cloudRoutine

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing ..\..\target\polyglot\builder\dice\dice.fsproj...

Retrieving project options from cache, in case of issues run `dotnet fable clean` or try `--noCache` option.

Project and references (2 source files) parsed in 285ms



Started Fable compilation...

Fable compilation finished in 4218ms



.\..\..\lib\fsharp\Common.fs(56,17): (56,49) error FABLE: String templates are not supported

.\..\..\lib\fsharp\Common.fs(135,23): (135,35) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(39,30): (39,32) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(42,32): (42,34) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(105,30): (105,32) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(109,34): (109,36) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(161,32): (161,34) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(137,31): (137,34) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(147,16): (147,18) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(150,40): (150,42) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(154,32): (154,34) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(182,27): (182,29) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(183,27): (183,29) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(184,27): (184,30) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(196,31): (196,34) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(202,30): (202,85) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(210,27): (210,82) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(219,10): (219,13) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(222,10): (222,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(225,10): (225,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(228,10): (228,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(231,10): (231,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(234,10): (234,32) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(237,10): (237,32) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(240,10): (240,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(243,10): (243,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(246,10): (246,32) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(249,10): (249,32) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(252,10): (252,32) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(255,10): (255,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(258,10): (258,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(261,10): (261,32) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(264,10): (264,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(267,10): (267,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(270,10): (270,30) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(273,10): (273,30) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(276,10): (276,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(279,10): (279,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(282,10): (282,32) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(285,10): (285,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(288,10): (288,32) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(291,10): (291,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(294,10): (294,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(297,10): (297,30) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(300,10): (300,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(303,10): (303,32) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(306,10): (306,32) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(309,10): (309,32) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(312,10): (312,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(315,10): (315,32) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(318,10): (318,32) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(321,10): (321,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(324,10): (324,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(327,10): (327,32) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(330,10): (330,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(333,10): (333,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(336,10): (336,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(339,10): (339,31) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(342,10): (342,30) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(345,10): (345,30) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(348,10): (348,29) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(351,10): (351,28) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(354,10): (354,27) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(357,10): (357,27) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(360,10): (360,26) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(363,10): (363,25) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(366,10): (366,24) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(369,10): (369,23) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(372,10): (372,23) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(375,10): (375,22) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(378,10): (378,21) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(381,10): (381,20) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(384,10): (384,20) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(387,10): (387,19) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(390,10): (390,18) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(393,10): (393,17) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(396,10): (396,16) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(399,10): (399,16) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(402,10): (402,15) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(405,10): (405,14) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(408,10): (408,13) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(424,26): (424,76) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(430,31): (430,34) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(437,35): (437,38) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(450,35): (450,114) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(460,35): (460,99) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(487,27): (487,30) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(521,27): (521,30) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(549,25): (549,28) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(555,30): (555,33) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(584,22): (584,25) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(589,36): (589,39) error FABLE: Numeric literal is not supported: System.UInt64

.\..\..\target\polyglot\builder\dice\dice.fs(614,22): (614,73) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(616,26): (616,28) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(625,30): (625,107) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(630,31): (630,94) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(642,34): (642,36) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(643,30): (643,107) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(648,31): (648,94) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(660,34): (660,37) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(661,30): (661,107) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(666,31): (666,94) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(678,34): (678,38) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(679,30): (679,107) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(684,31): (684,94) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(696,34): (696,39) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(697,30): (697,107) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(702,31): (702,94) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(714,34): (714,39) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(715,30): (715,107) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(720,31): (720,94) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(732,34): (732,40) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(733,30): (733,107) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(738,31): (738,94) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(750,34): (750,41) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(751,30): (751,107) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(756,31): (756,94) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(768,34): (768,42) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(769,30): (769,107) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(774,31): (774,94) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(786,34): (786,43) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(787,30): (787,107) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(792,31): (792,94) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(804,34): (804,43) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(805,30): (805,108) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(810,31): (810,95) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(822,34): (822,44) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(823,30): (823,108) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(828,31): (828,95) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(840,34): (840,45) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(841,30): (841,108) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(846,31): (846,95) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(858,34): (858,46) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(859,30): (859,108) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(864,31): (864,95) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(876,34): (876,46) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(877,30): (877,108) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(882,31): (882,95) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(894,34): (894,47) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(895,30): (895,108) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(900,31): (900,95) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(912,34): (912,48) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(913,30): (913,108) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(918,31): (918,95) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(930,34): (930,49) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(931,30): (931,108) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(936,31): (936,95) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(948,34): (948,50) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(949,30): (949,108) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(954,31): (954,95) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(966,34): (966,50) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(967,30): (967,108) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(972,31): (972,95) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(984,34): (984,51) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(985,30): (985,108) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(990,31): (990,95) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(1002,34): (1002,52) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(1003,30): (1003,108) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(1008,31): (1008,95) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(1020,34): (1020,53) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(1021,30): (1021,108) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(1026,31): (1026,95) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(1038,34): (1038,53) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(1039,30): (1039,108) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(1044,31): (1044,95) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(1073,26): (1073,28) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(1077,36): (1077,56) error FABLE: Numeric literal is not supported: System.Int64

.\..\..\target\polyglot\builder\dice\dice.fs(1829,22): (1829,114) error FABLE: String templates are not supported

.\..\..\target\polyglot\builder\dice\dice.fs(1834,22): (1834,37) error FABLE: String templates are not supported

Compilation failed


# Invoke-Block / $Retry: 1 / $OnError: Continue / $exitcode: 1 / $EnvVars: null / $Error: '' / $ScriptBlock:
'dotnet fable $targetDir/dice.fsproj --optimize --lang php --extension .php --outDir $targetDir/php'


Fable 4.5.0: F# to Dart compiler (status: beta)



Thanks to the contributor! @byte-666

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing ..\..\target\polyglot\builder\dice\dice.fsproj...

Retrieving project options from cache, in case of issues run `dotnet fable clean` or try `--noCache` option.

Project and references (2 source files) parsed in 272ms



Started Fable compilation...

Fable compilation finished in 4345ms



.\..\..\lib\fsharp\Common.fs(1,1): error FABLE: Cannot find reference for Microsoft.FSharp.Core.PrintfFormat`5

.\..\..\target\polyglot\builder\dice\dice.fs(1,1): error FABLE: Cannot find reference for Microsoft.FSharp.Core.PrintfFormat`5

.\..\..\target\polyglot\builder\dice\dice.fs(1,1): error FABLE: Cannot find reference for System.Random

Compilation failed


# Invoke-Block / $Retry: 1 / $OnError: Continue / $exitcode: 1 / $EnvVars: null / $Error: '' / $ScriptBlock:
'dotnet fable $targetDir/dice.fsproj --optimize --lang dart --extension .dart --outDir $targetDir/dart'


Fable 4.5.0: F# to Rust compiler (status: alpha)



Thanks to the contributor! @devcrafting

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing ..\..\target\polyglot\builder\dice\dice.fsproj...

Retrieving project options from cache, in case of issues run `dotnet fable clean` or try `--noCache` option.

Project and references (2 source files) parsed in 273ms



Started Fable compilation...

Fable compilation finished in 4648ms



   Compiling dice v0.0.1 (C:\home\git\polyglot\apps\dice)

    Finished release [optimized] target(s) in 9.97s

     Running `C:\home\git\polyglot\target\release\dice.exe`

calculate_dice_count / max: 9223372036854775807 / n: 24 / p: 4738381338321616896

accumulate_dice_rolls / power: 23 / acc: 0 / roll: 5 / value: 3158920892214411264

accumulate_dice_rolls / power: 22 / acc: 3158920892214411264 / roll: 5 / value: 526486815369068544

accumulate_dice_rolls / power: 21 / acc: 3685407707583479808 / roll: 1

accumulate_dice_rolls / power: 20 / acc: 3685407707583479808 / roll: 4 / value: 10968475320188928

accumulate_dice_rolls / power: 19 / acc: 3696376182903668736 / roll: 5 / value: 2437438960041984

accumulate_dice_rolls / power: 18 / acc: 3698813621863710720 / roll: 5 / value: 406239826673664

accumulate_dice_rolls / power: 17 / acc: 3699219861690384384 / roll: 5 / value: 67706637778944

accumulate_dice_rolls / power: 16 / acc: 3699287568328163328 / roll: 6 / value: 14105549537280

accumulate_dice_rolls / power: 15 / acc: 3699301673877700608 / roll: 2 / value: 470184984576

accumulate_dice_rolls / power: 14 / acc: 3699302144062685184 / roll: 6 / value: 391820820480

accumulate_dice_rolls / power: 13 / acc: 3699302535883505664 / roll: 2 / value: 13060694016

accumulate_dice_rolls / power: 12 / acc: 3699302548944199680 / roll: 6 / value: 10883911680

accumulate_dice_rolls / power: 11 / acc: 3699302559828111360 / roll: 6 / value: 1813985280

accumulate_dice_rolls / power: 10 / acc: 3699302561642096640 / roll: 5 / value: 241864704

accumulate_dice_rolls / power: 9 / acc: 3699302561883961344 / roll: 5 / value: 40310784

accumulate_dice_rolls / power: 8 / acc: 3699302561924272128 / roll: 5 / value: 6718464

accumulate_dice_rolls / power: 7 / acc: 3699302561930990592 / roll: 6 / value: 1399680

accumulate_dice_rolls / power: 6 / acc: 3699302561932390272 / roll: 3 / value: 93312

accumulate_dice_rolls / power: 5 / acc: 3699302561932483584 / roll: 2 / value: 7776

accumulate_dice_rolls / power: 4 / acc: 3699302561932491360 / roll: 2 / value: 1296

accumulate_dice_rolls / power: 3 / acc: 3699302561932492656 / roll: 4 / value: 648

accumulate_dice_rolls / power: 2 / acc: 3699302561932493304 / roll: 4 / value: 108

accumulate_dice_rolls / power: 1 / acc: 3699302561932493412 / roll: 6 / value: 30

accumulate_dice_rolls / power: 0 / acc: 3699302561932493442 / roll: 4 / value: 3

accumulate_dice_rolls / power: -1 / acc: 3699302561932493445

result: 3699302561932493446

   Compiling dice v0.0.1 (C:\home\git\polyglot\apps\dice)

   Compiling dice_contract v0.0.1 (C:\home\git\polyglot\apps\dice\contract)

    Finished release [optimized] target(s) in 11.19s

    Finished release [optimized] target(s) in 15.62s

     Running `/mnt/c/home/git/polyglot/target/release/dice_contract_tests`

Updated the logging layer according to `log_config.json`





new: ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 5274698488722,

    },

    transaction: ExecutionOutcome {

        transaction_hash: Ax18sp18jFQZWNmuf8B2BZYCH9hb7j5BQpAaAnN3z9q4,

        block_hash: 34tqQv4WvGAtEzjA5SGgMbBAki1eCQybvCN9o7ZFne6e,

        logs: [],

        receipt_ids: [

            4f31cW2NQ3whPNa9XqPuf2uxGMuGTWrKxYQm1wX71xKY,

        ],

        gas_burnt: NearGas {

            inner: 2427927707802,

        },

        tokens_burnt: NearToken {

            inner: 242792770780200000000,

        },

        executor_id: AccountId(

            "dev-20240208204410-14332594826062",

        ),

        status: SuccessReceiptId(4f31cW2NQ3whPNa9XqPuf2uxGMuGTWrKxYQm1wX71xKY),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: 4f31cW2NQ3whPNa9XqPuf2uxGMuGTWrKxYQm1wX71xKY,

            block_hash: 34tqQv4WvGAtEzjA5SGgMbBAki1eCQybvCN9o7ZFne6e,

            logs: [],

            receipt_ids: [

                96ABuDeJuABh1xHY4NLryi2ZYWFW3EBipLEMCFytdDrT,

            ],

            gas_burnt: NearGas {

                inner: 2623588218420,

            },

            tokens_burnt: NearToken {

                inner: 262358821842000000000,

            },

            executor_id: AccountId(

                "dev-20240208204410-14332594826062",

            ),

            status: SuccessValue(''),

        },

        ExecutionOutcome {

            transaction_hash: 96ABuDeJuABh1xHY4NLryi2ZYWFW3EBipLEMCFytdDrT,

            block_hash: 4NALHGcPbHHWaX1T8HXvuXfJtyUfnP5e2iNdBs8G37iq,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: NearToken {

                inner: 0,

            },

            executor_id: AccountId(

                "dev-20240208204410-14332594826062",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(''),

}

total_gas_burnt_usd: 0.003523498590466296

outcome (success: true):

  outcome_gas_burnt_usd: 0.001621855708811736

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00175255692990456

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





roll_within_bounds(contract, ''): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 5425249792795,

    },

    transaction: ExecutionOutcome {

        transaction_hash: BhCWsmq2HG1HsJiNhnUMpw1B57se6wppw65jiJLQQG2z,

        block_hash: C223sgHXZVKxNoek7s4dZhcsz926uNKZSc7NNgGYT8xv,

        logs: [],

        receipt_ids: [

            6rGbNmWtEL9YmmoGZjpDx1t9ajV21Vv3zU1LuePy5cE8,

        ],

        gas_burnt: NearGas {

            inner: 2428032796700,

        },

        tokens_burnt: NearToken {

            inner: 242803279670000000000,

        },

        executor_id: AccountId(

            "dev-20240208204410-14332594826062",

        ),

        status: SuccessReceiptId(6rGbNmWtEL9YmmoGZjpDx1t9ajV21Vv3zU1LuePy5cE8),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: 6rGbNmWtEL9YmmoGZjpDx1t9ajV21Vv3zU1LuePy5cE8,

            block_hash: C223sgHXZVKxNoek7s4dZhcsz926uNKZSc7NNgGYT8xv,

            logs: [

                "roll_within_bounds / max: 2000 / rolls: [1, 5, 4, 4, 5]",

                "accumulate_dice_rolls / power: 4 / acc: 0 / roll: 1\naccumulate_dice_rolls / power: 3 / acc: 0 / roll: 5 / value: 864\naccumulate_dice_rolls / power: 2 / acc: 864 / roll: 4 / value: 108\naccumulate_dice_rolls / power: 1 / acc: 972 / roll: 4 / value: 18\naccumulate_dice_rolls / power: 0 / acc: 990 / roll: 5 / value: 4",

                "accumulate_dice_rolls / power: -1 / acc: 994",

            ],

            receipt_ids: [

                FSiKkM7XenAoyRHBA1w5idCG9JrXv3Uu8TBq8k21BkCs,

            ],

            gas_burnt: NearGas {

                inner: 2774034433595,

            },

            tokens_burnt: NearToken {

                inner: 277403443359500000000,

            },

            executor_id: AccountId(

                "dev-20240208204410-14332594826062",

            ),

            status: SuccessValue('995'),

        },

        ExecutionOutcome {

            transaction_hash: FSiKkM7XenAoyRHBA1w5idCG9JrXv3Uu8TBq8k21BkCs,

            block_hash: 6fkcji4wEfPtNtJiQYN7EEMzpP9vBvfB4QgbR75jf8uc,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: NearToken {

                inner: 0,

            },

            executor_id: AccountId(

                "dev-20240208204410-14332594826062",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue('995'),

}

total_gas_burnt_usd: 0.00362406686158706

outcome (success: true):

  outcome_gas_burnt_usd: 0.0016219259081956

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00185305500164146

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0





roll_within_bounds_borsh(contract, ''): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 5435035853134,

    },

    transaction: ExecutionOutcome {

        transaction_hash: GmGvwkPVFz19eYhrcKAGwYVjmYFW2TdoqUbiLy7SnoXR,

        block_hash: 2AgrYvz5p5Se6JUymQc2h5Bdf5tsAY8TQwo7Pnjfhnos,

        logs: [],

        receipt_ids: [

            624uKfRzb99tqHqLtggc84r918t6udhRUyysTn7N5jAd,

        ],

        gas_burnt: NearGas {

            inner: 2428012673294,

        },

        tokens_burnt: NearToken {

            inner: 242801267329400000000,

        },

        executor_id: AccountId(

            "dev-20240208204410-14332594826062",

        ),

        status: SuccessReceiptId(624uKfRzb99tqHqLtggc84r918t6udhRUyysTn7N5jAd),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: 624uKfRzb99tqHqLtggc84r918t6udhRUyysTn7N5jAd,

            block_hash: 2AgrYvz5p5Se6JUymQc2h5Bdf5tsAY8TQwo7Pnjfhnos,

            logs: [

                "roll_within_bounds / max: 2000 / rolls: [2, 2, 6, 4, 5]",

                "accumulate_dice_rolls / power: 4 / acc: 0 / roll: 2 / value: 1296\naccumulate_dice_rolls / power: 3 / acc: 1296 / roll: 2 / value: 216\naccumulate_dice_rolls / power: 2 / acc: 1512 / roll: 6 / value: 180\naccumulate_dice_rolls / power: 1 / acc: 1692 / roll: 4 / value: 18\naccumulate_dice_rolls / power: 0 / acc: 1710 / roll: 5 / value: 4",

                "accumulate_dice_rolls / power: -1 / acc: 1714",

            ],

            receipt_ids: [

                BDm1P35qQJQ1B6zQLVyTv4przMM8VRVGRaFE4qxLKWm1,

            ],

            gas_burnt: NearGas {

                inner: 2783840617340,

            },

            tokens_burnt: NearToken {

                inner: 278384061734000000000,

            },

            executor_id: AccountId(

                "dev-20240208204410-14332594826062",

            ),

            status: SuccessValue(AbMGAAAAAAAA),

        },

        ExecutionOutcome {

            transaction_hash: BDm1P35qQJQ1B6zQLVyTv4przMM8VRVGRaFE4qxLKWm1,

            block_hash: 76aTZjQbp1RQVyc8SC4SJtU5B8NdbNpw1quPeMuCFWD3,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: NearToken {

                inner: 0,

            },

            executor_id: AccountId(

                "dev-20240208204410-14332594826062",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue(AbMGAAAAAAAA),

}

total_gas_burnt_usd: 0.003630603949893512

outcome (success: true):

  outcome_gas_burnt_usd: 0.001621912465760392

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.0018596055323831196

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0

n: Some(

    Some(

        1715,

    ),

)





generate_random_number(contract, ''): ExecutionFinalResult {

    total_gas_burnt: NearGas {

        inner: 11917964189173,

    },

    transaction: ExecutionOutcome {

        transaction_hash: GGVFp82oTQaf7kDGfj9TJctgYMfdSpPxL9vjgCDwiRyJ,

        block_hash: 6Jci4XuH2EdyimRwh7RgP5xbixztn4WSjnFV2yxJKZQd,

        logs: [],

        receipt_ids: [

            A5PPiUsEtMbrro8xCSVoaXxoPpcTmSJFRPZSZ3KHhgcs,

        ],

        gas_burnt: NearGas {

            inner: 2428059627908,

        },

        tokens_burnt: NearToken {

            inner: 242805962790800000000,

        },

        executor_id: AccountId(

            "dev-20240208204410-14332594826062",

        ),

        status: SuccessReceiptId(A5PPiUsEtMbrro8xCSVoaXxoPpcTmSJFRPZSZ3KHhgcs),

    },

    receipts: [

        ExecutionOutcome {

            transaction_hash: A5PPiUsEtMbrro8xCSVoaXxoPpcTmSJFRPZSZ3KHhgcs,

            block_hash: 6Jci4XuH2EdyimRwh7RgP5xbixztn4WSjnFV2yxJKZQd,

            logs: [

                "generate_random_number / max: 2000 / key: \"key\" / proof: \"proof\" / block_timestamp: 1707425054637546872 / block_height: 22 / epoch_height: 1 / account_balance: NearToken {\n    inner: 99996919082249315940280000,\n} / signer_account_id: \"dev-20240208204410-14332594826062\"\n / seed: [71, 246, 128, 114, 194, 21, 232, 5, 190, 97, 229, 124, 52, 167, 194, 54, 87, 239, 157, 230, 123, 51, 199, 143, 210, 199, 138, 55, 71, 170, 139, 38]\n / entropy: [71, 246, 128, 114, 194, 21, 232, 5, 190, 97, 229, 124, 52, 167, 194, 54, 87, 239, 157, 230, 123, 51, 199, 143, 210, 199, 138, 55, 71, 170, 139, 38, 120, 221, 69, 118, 10, 254, 177, 23, 22, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 192, 166, 31, 125, 250, 105, 117, 216, 43, 183, 82, 0, 0, 0, 0, 0, 100, 101, 118, 45, 50, 48, 50, 52, 48, 50, 48, 56, 50, 48, 52, 52, 49, 48, 45, 49, 52, 51, 51, 50, 53, 57, 52, 56, 50, 54, 48, 54, 50, 107, 101, 121, 112, 114, 111, 111, 102]\n / hash_u8: [43, 53, 120, 255, 7, 144, 238, 137, 246, 119, 8, 228, 224, 26, 245, 109, 248, 246, 231, 193, 38, 190, 74, 153, 49, 246, 9, 91, 50, 154, 67, 4, 192, 110, 198, 88, 2, 88, 157, 248, 52, 143, 242, 249, 145, 62, 174, 17, 79, 154, 144, 136, 148, 161, 24, 212, 29, 4, 54, 33, 138, 106, 4, 177]\n / rolls_list: [1, 5, 6, 3, 1, 6, 4, 5, 6, 5, 2, 6, 2, 2, 5, 1, 2, 6, 3, 1, 2, 4, 2, 3, 1, 6, 3, 1, 2, 4, 1, 4, 6, 2, 6, 4, 2, 4, 1, 2, 4, 5, 2, 3, 1, 2, 6, 5, 1, 4, 6, 4, 4, 5, 6, 2, 5, 4, 6, 3, 6, 4, 4, 3]",

                "create_sequential_roller ()\ncalculate_dice_count / max: 2000 / n: 5 / p: 7776\ncreate_sequential_roller / roll / current_index: 0 / acc: 1 / len: -1 / last_item: US2_0\ncreate_sequential_roller / roll / current_index: 1 / acc: 1 / len: -1 / last_item: US2_1(1)\ncreate_sequential_roller / roll / current_index: 2 / acc: 1 / len: -1 / last_item: US2_1(5)",

                "create_sequential_roller / roll / current_index: 3 / acc: 1 / len: -1 / last_item: US2_1(6)\ncreate_sequential_roller / roll / current_index: 4 / acc: 1 / len: -1 / last_item: US2_1(3)\naccumulate_dice_rolls / power: 4 / acc: 0 / roll: 1\naccumulate_dice_rolls / power: 3 / acc: 0 / roll: 3 / value: 432\naccumulate_dice_rolls / power: 2 / acc: 432 / roll: 6 / value: 180\naccumulate_dice_rolls / power: 1 / acc: 612 / roll: 5 / value: 24",

                "accumulate_dice_rolls / power: 0 / acc: 636 / roll: 1\naccumulate_dice_rolls / power: -1 / acc: 636",

            ],

            receipt_ids: [

                3LgMm3CBcQFnTTvkJN3HxXcz8CWfqtb4pQnLouvJvuqk,

            ],

            gas_burnt: NearGas {

                inner: 9266721998765,

            },

            tokens_burnt: NearToken {

                inner: 926672199876500000000,

            },

            executor_id: AccountId(

                "dev-20240208204410-14332594826062",

            ),

            status: SuccessValue('637'),

        },

        ExecutionOutcome {

            transaction_hash: 3LgMm3CBcQFnTTvkJN3HxXcz8CWfqtb4pQnLouvJvuqk,

            block_hash: 9cRyJdHKCdMnjuzU7CZDBRhA97nQQofZoVfxHzD9TCio,

            logs: [],

            receipt_ids: [],

            gas_burnt: NearGas {

                inner: 223182562500,

            },

            tokens_burnt: NearToken {

                inner: 0,

            },

            executor_id: AccountId(

                "dev-20240208204410-14332594826062",

            ),

            status: SuccessValue(''),

        },

    ],

    status: SuccessValue('637'),

}

total_gas_burnt_usd: 0.007961200078367562

outcome (success: true):

  outcome_gas_burnt_usd: 0.001621943831442544

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00619017029517502

  outcome_tokens_burnt_usd: 0.0

outcome (success: true):

  outcome_gas_burnt_usd: 0.00014908595175

  outcome_tokens_burnt_usd: 0.0

n: 637

00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@411-297> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\apps\dice\ui

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: [] / typeErrorCount: 0

00:00:01 #11 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: [] / typeErrorCount: 0

00:00:01 #12 [Debug] sendJson / port: 13805 / json: {"FileOpen":{"spiText":"open rust_operators\n\ninl main (args : array_base string) =\n    leptos.log $\u0027\u0022main / args: \u0022 \u002B string !args \u002B \u0022\u0022\u0027\n\n    !\\($\u0027\u0022let _ = console_log::init_with_level(log::Level::Debug)\u0022\u0027)\n    !\\($\u0027\u0022console_error_panic_hook::set_once()\u0022\u0027)\n\n    inl body : optionm\u0027.option\u0027 rust.html_element = !\\($\u0027\u0022leptos::document().body()\u0022\u0027)\n    inl body = body |\u003E optionm\u0027.unbox\n    inl body_log = body |\u003E sm\u0027.format_debug\n\n    leptos.log $\u0027\u0022main / mount_to_body / body: \u0022 \u002B string !body_log \u002B \u0022\u0022\u0027\n\n    let mount () =\n        fun () =\u003E\n            components.app.render ()\n            |\u003E leptos.to_view_trait\n        |\u003E leptos.mount_to_body\n\n    match body with\n    | Some body =\u003E\n        body |\u003E leptos.set_inner_html \u0022\u0022\n\n        mount ()\n    | _ =\u003E\n        inl fn : rust.box (rust.dyn\u0027 rust.fn_unit) = rust.box_fn mount\n        inl fn_closure = fn |\u003E rust.closure_wrap\n        inl fn = fn_closure |\u003E rust.closure_as_ref |\u003E rust.unchecked_ref\n\n        !\\($\u0027\u0022leptos::document().add_event_listener_with_callback(\\\\\\\u0022DOMContentLoaded\\\\\\\u0022, !fn).unwrap()\u0022\u0027)\n\n        fn_closure |\u003E rust.closure_forget\n\n    0i32\n\ninl main () =\n    print_static \u0022\u003Cdice_ui\u003E\u0022\n    rust.types ()\n    leptos.types ()\n    model.near.nearblocks.types ()\n\n    $\u0022let main args = !main args\u0022 : ()\n    print_static \u0022\u003C/dice_ui\u003E\u0022\n","uri":"file:///C:\\home\\git\\polyglot\\apps\\dice\\ui\\src\\dice_ui.spi"}} / result.Length:

00:00:01 #13 [Debug] sendJson / port: 13805 / json: {"BuildFile":{"backend":"Fsharp","uri":"file:///C:\\home\\git\\polyglot\\apps\\dice\\ui\\src\\dice_ui.spi"}} / result.Length:

00:00:02 #14 [Verbose] > Building C:\home\git\polyglot\apps\dice\ui\src\dice_ui.spi

00:00:02 #15 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: [] / typeErrorCount: 0

00:00:03 #16 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: [] / typeErrorCount: 0

00:00:04 #17 [Verbose] > <dice_ui>

00:00:04 #18 [Verbose] > <app.render>

00:00:04 #19 [Verbose] > <home.render>

00:00:04 #20 [Verbose] > <content.render>

00:00:04 #21 [Verbose] > <transactions.render>

00:00:04 #22 [Verbose] > <transaction.render>

00:00:04 #23 [Verbose] > <settings.render>

00:00:04 #24 [Verbose] > <menu_tabs.render>

00:00:04 #25 [Verbose] > <home.render>

00:00:04 #26 [Verbose] > <home.render>

00:00:04 #27 [Verbose] > <home.render>

00:00:04 #28 [Verbose] > </dice_ui>

00:00:04 #29 [Debug] buildFile / takeWhileInclusive / fsxContent:  / errors: [] / typeErrorCount: 0

00:00:04 #30 [Debug] buildFile / takeWhileInclusive / fsxContent: [<Fable.Core.Erase; Fable.Core.Emit("Func0<$0>")>] type Func0<'T> = class end

[<Fable.Core.Erase; Fable.Core.Emit("Func1<$0, $1>")>] type Func0<'T, 'U> = class end

[<Fable.Core.Erase; Fable.Core.Emit("Box<$0>")>] type Box<'T> = class end

[<Fable.Core.Erase; Fable.Core.Emit("dyn $0")>] type Dyn<'T> = class end

[<Fable.Core.Erase; Fable.Core.Emit("Fn() -> $0")>] type Fn<'T> = class end

[<Fable.Core.Erase; Fable.Core.Emit("Fn()")>] type FnUnit = class end

[<Fable.Core.Erase; Fable.Core.Emit("FnOnce() -> $0")>] type FnOnce<'T> = class end

[<Fable.Core.Erase; Fable.Core.Emit("Fn($0, $1)")>] type ActionFn2<'T, 'U> = class end

[<Fable.Core.Erase; Fable.Core.Emit("impl $0")>] type Impl<'T> = class end

[<Fable.Core.Erase; Fable.Core.Emit("mut $0")>]... / errors: [] / typeErrorCount: 0

00:00:04 #31 [Debug] watchWithFilter / Disposing watch stream / filter: FileName, LastWrite

00:00:00 #1 [Debug] persistCodeProject / packages: [Fable.Core] / modules: [lib/fsharp/Common.fs] / name: dice_ui / code.Length: 328194

00:00:00 #2 [Debug] buildProject / fullPath: C:\home\git\polyglot\target\polyglot\builder\dice_ui\dice_ui.fsproj

00:00:00 #3 [Debug] executeAsync / options: { Command =

   "dotnet publish "C:\home\git\polyglot\target/polyglot/builder\dice_ui\dice_ui.fsproj" --configuration Release --output "C:\home\git\polyglot\apps\dice\ui\src\dist" --runtime linux-x64"

  WorkingDirectory = Some "C:\home\git\polyglot\target\polyglot\builder\dice_ui"

  CancellationToken = None

  OnLine = None }

00:00:00 #4 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET

00:00:01 #5 [Verbose] >   Determining projects to restore...

00:00:03 #6 [Verbose] >   Restored C:\home\git\polyglot\target\polyglot\builder\dice_ui\dice_ui.fsproj (in 668 ms).

00:00:10 #7 [Verbose] > C:\home\git\polyglot\target\polyglot\builder\dice_ui\dice_ui.fs(2583,35): warning FS0025: Incomplete pattern matches on this expression. For example, the value 'US29_1 (_)' may indicate a case not covered by the pattern(s). [C:\home\git\polyglot\target\polyglot\builder\dice_ui\dice_ui.fsproj]

00:00:16 #8 [Verbose] >   dice_ui -> C:\home\git\polyglot\target\polyglot\builder\dice_ui\bin\Release\net8.0\linux-x64\dice_ui.dll

00:00:18 #9 [Verbose] >   dice_ui -> C:\home\git\polyglot\apps\dice\ui\src\dist\

00:00:18 #10 [Debug] executeAsync / exitCode: 0 / output.Length: 628

00:00:18 #11 [Debug] executeAsync / options: { Command =

   "dotnet publish "C:\home\git\polyglot\target/polyglot/builder\dice_ui\dice_ui.fsproj" --configuration Release --output "C:\home\git\polyglot\apps\dice\ui\src\dist" --runtime win-x64"

  WorkingDirectory = Some "C:\home\git\polyglot\target\polyglot\builder\dice_ui"

  CancellationToken = None

  OnLine = None }

00:00:18 #12 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET

00:00:19 #13 [Verbose] >   Determining projects to restore...

00:00:20 #14 [Verbose] >   Restored C:\home\git\polyglot\target\polyglot\builder\dice_ui\dice_ui.fsproj (in 414 ms).

00:00:25 #15 [Verbose] > C:\home\git\polyglot\target\polyglot\builder\dice_ui\dice_ui.fs(2583,35): warning FS0025: Incomplete pattern matches on this expression. For example, the value 'US29_1 (_)' may indicate a case not covered by the pattern(s). [C:\home\git\polyglot\target\polyglot\builder\dice_ui\dice_ui.fsproj]

00:00:30 #16 [Verbose] >   dice_ui -> C:\home\git\polyglot\target\polyglot\builder\dice_ui\bin\Release\net8.0\win-x64\dice_ui.dll

00:00:34 #17 [Verbose] >   dice_ui -> C:\home\git\polyglot\apps\dice\ui\src\dist\

00:00:34 #18 [Debug] executeAsync / exitCode: 0 / output.Length: 626

Fable 4.5.0: F# to Rust compiler (status: alpha)



Thanks to the contributor! @ncave

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing ..\..\..\target\polyglot\builder\dice_ui\dice_ui.fsproj...

Retrieving project options from cache, in case of issues run `dotnet fable clean` or try `--noCache` option.

Project and references (2 source files) parsed in 260ms



Started Fable compilation...

Fable compilation finished in 8285ms



.\..\..\..\target\polyglot\builder\dice_ui\dice_ui.fs(2583,35): (2583,38) warning FSHARP: Incomplete pattern matches on this expression. For example, the value 'US29_1 (_)' may indicate a case not covered by the pattern(s). (code 25)

max_width = 100

tab_spaces = 4

indentation_style = "Auto"

newline_style = "Auto"

attr_value_brace_style = "WhenRequired"



✅ src\dice_ui_wasm.rs

ℹ️ Formatted 1 files in 454 ms

Lockfile is up to date, resolution step is skipped

Already up to date



Done in 2.6s



> dice_ui@ build-css C:\home\git\polyglot\apps\dice\ui

> tailwindcss -i input.css -o target/tailwind.css





Rebuilding...



Done in 2911ms.

2024-02-08T20:45:18.605838Z  INFO 🚀 Starting trunk 0.18.7

2024-02-08T20:45:18.607792Z  INFO 📦 starting build

2024-02-08T20:45:18.608991Z  INFO spawning asset pipelines

2024-02-08T20:45:20.540093Z  INFO building dice_ui

2024-02-08T20:45:20.540702Z  INFO copying & hashing css path="\\\\?\\C:\\home\\git\\polyglot\\deps\\hyperui\\public\\components.css"

2024-02-08T20:45:20.540797Z  INFO copying & hashing css path="\\\\?\\C:\\home\\git\\polyglot\\apps\\dice\\ui\\target\\tailwind.css"

2024-02-08T20:45:20.540434Z  INFO copying & hashing icon path="\\\\?\\C:\\home\\git\\polyglot\\apps\\dice\\ui\\public\\favicon.ico"

2024-02-08T20:45:20.545803Z  WARN Failed to minify CSS: Invalid block at line 2

2024-02-08T20:45:20.545837Z  WARN Failed to minify CSS: Invalid block at line 447

2024-02-08T20:45:20.546849Z  INFO finished copying & hashing icon path="\\\\?\\C:\\home\\git\\polyglot\\apps\\dice\\ui\\public\\favicon.ico"

2024-02-08T20:45:20.547967Z  INFO finished copying & hashing css path="\\\\?\\C:\\home\\git\\polyglot\\apps\\dice\\ui\\target\\tailwind.css"

2024-02-08T20:45:20.548424Z  INFO finished copying & hashing css path="\\\\?\\C:\\home\\git\\polyglot\\deps\\hyperui\\public\\components.css"

   Compiling dice_ui v0.0.1 (C:\home\git\polyglot\apps\dice\ui)

    Finished release [optimized] target(s) in 48.54s

2024-02-08T20:46:09.269967Z  INFO fetching cargo artifacts

2024-02-08T20:46:10.165139Z  INFO tool version mismatch (required: 0.2.89, system: 0.2.88) app=wasm-bindgen

2024-02-08T20:46:10.170466Z  INFO calling wasm-bindgen for dice_ui

2024-02-08T20:46:10.441992Z  INFO calling wasm-opt

2024-02-08T20:46:16.030606Z  INFO rust build complete

2024-02-08T20:46:16.066705Z  INFO applying new distribution

2024-02-08T20:46:16.071589Z  INFO ✅ success

(node:26312) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.

(Use `node --trace-deprecation ...` to show where the warning was created)

Filename          	Size     

dist/2-4K34KTSZ.js	25.93 KiB



Filename                                     	Size       

dist/2-4K34KTSZ.js                           	25.93 KiB  

dist\favicon-f1d578da7a480441.ico            	16.28 KiB  

dist\dice_ui-5bde7557b100879c.js             	28.29 KiB  

dist\dice_ui-5bde7557b100879c_bg.wasm        	949.75 KiB 

dist/1-Y7PRCC3K.css                          	677.00 B   

dist/tailwind-98c5992d43e4bf06-G42TVHKI.css  	17.38 KiB  

dist/components-61317960c9987b2e-YWB32TZ5.css	78.01 KiB  

dist\index.html                              	795.00 B   

                                             	———————————

                                             	1.09 MiB   





Build completed!



Filename                                     	Size       

dist/2-4K34KTSZ.js                           	25.93 KiB  

dist\favicon-f1d578da7a480441.ico            	16.28 KiB  

dist\dice_ui-5bde7557b100879c.js             	28.29 KiB  

dist\dice_ui-5bde7557b100879c_bg.wasm        	949.75 KiB 

dist/1-Y7PRCC3K.css                          	677.00 B   

dist/tailwind-98c5992d43e4bf06-G42TVHKI.css  	17.38 KiB  

dist/components-61317960c9987b2e-YWB32TZ5.css	78.01 KiB  

dist\index.html                              	795.00 B   

                                             	———————————

                                             	1.09 MiB   



Lockfile is up to date, resolution step is skipped

Already up to date



Done in 1.7s



> e2e@ test:e2e C:\home\git\polyglot\apps\dice\ui\e2e

> playwright test



[WebServer] (node:33320) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.

(Use `node --trace-deprecation ...` to show where the warning was created)





Running 1 test using 1 worker



[1/1] [Desktop Chrome] › test.spec.ts:3:5 › test

  1 passed (20.3s)



To open last HTML report run:



  pnpm exec playwright show-report



In [ ]:
{ . "$ScriptDir/../apps/dice/fsharp/build.ps1" } | Invoke-Block
00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\apps\dice\fsharp

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../../scripts/invoke-dib.ps1 dice_fsharp.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:04 #11 [Verbose] >

00:00:04 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:04 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:04 #14 [Verbose] > │ # dice_fsharp (Polyglot)                                                     │

00:00:04 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:04 #16 [Verbose] >

00:00:04 #17 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:04 #18 [Verbose] > #!import ../../../lib/fsharp/Testing.dib

00:00:04 #19 [Verbose] >

00:00:04 #20 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:04 #21 [Verbose] > #r

00:00:04 #22 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

00:00:04 #23 [Verbose] > spNetCore.Html.Abstractions.dll"

00:00:04 #24 [Verbose] > #r

00:00:04 #25 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

00:00:04 #26 [Verbose] > otNet.Interactive.dll"

00:00:04 #27 [Verbose] > #r

00:00:04 #28 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

00:00:04 #29 [Verbose] > otNet.Interactive.FSharp.dll"

00:00:04 #30 [Verbose] > #r

00:00:04 #31 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

00:00:04 #32 [Verbose] > otNet.Interactive.Formatting.dll"

00:00:04 #33 [Verbose] > open System

00:00:04 #34 [Verbose] > open System.IO

00:00:04 #35 [Verbose] > open System.Text

00:00:04 #36 [Verbose] > open Microsoft.DotNet.Interactive.Formatting

00:00:08 #37 [Verbose] >

00:00:08 #38 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:08 #39 [Verbose] > #r

00:00:08 #40 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

00:00:08 #41 [Verbose] > otNet.Interactive.FSharp.dll"

00:00:08 #42 [Verbose] > open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

00:00:08 #43 [Verbose] > #r

00:00:08 #44 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

00:00:08 #45 [Verbose] > otNet.Interactive.dll"

00:00:08 #46 [Verbose] > open type Microsoft.DotNet.Interactive.Kernel

00:00:09 #47 [Verbose] >

00:00:09 #48 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:09 #49 [Verbose] > #r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"

00:00:09 #50 [Verbose] >

00:00:09 #51 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:09 #52 [Verbose] > //// test

00:00:09 #53 [Verbose] >

00:00:09 #54 [Verbose] > Formatter.ListExpansionLimit <- 100

00:00:09 #55 [Verbose] >

00:00:09 #56 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:09 #57 [Verbose] > //// test

00:00:09 #58 [Verbose] >

00:00:09 #59 [Verbose] > type AssertExceptionFormatter (ex) =

00:00:09 #60 [Verbose] >     member _.Text =

00:00:09 #61 [Verbose] >         ex.ToString()

00:00:09 #62 [Verbose] >             .Replace("32m", "<span style=\"color: green;\">")

00:00:09 #63 [Verbose] >             .Replace("36m", "</span>")

00:00:09 #64 [Verbose] >             .Replace("31m", "<span style=\"color: red;\">")

00:00:09 #65 [Verbose] >             .Replace("\n", "<br/>\n")

00:00:09 #66 [Verbose] >

00:00:09 #67 [Verbose] >

00:00:09 #68 [Verbose] > Formatter.Register<AssertExceptionFormatter> ((fun (x :

00:00:09 #69 [Verbose] > AssertExceptionFormatter) -> x.Text), "text/html")

00:00:10 #70 [Verbose] >

00:00:10 #71 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:10 #72 [Verbose] > //// test

00:00:10 #73 [Verbose] >

00:00:10 #74 [Verbose] > let inline __expect fn log expected actual =

00:00:10 #75 [Verbose] >     if log then printfn $"{actual.ToDisplayString ()}"

00:00:10 #76 [Verbose] >     try

00:00:10 #77 [Verbose] >         "Testing.__expect" |> fn actual expected

00:00:10 #78 [Verbose] >     with :? Expecto.AssertException as ex ->

00:00:10 #79 [Verbose] >         AssertExceptionFormatter(ex).Display () |> ignore

00:00:10 #80 [Verbose] >         failwith (ex.GetType().FullName)

00:00:10 #81 [Verbose] >

00:00:10 #82 [Verbose] > let inline __contains log expected actual = __expect Expecto.Expect.contains log

00:00:10 #83 [Verbose] > expected actual

00:00:10 #84 [Verbose] > let inline _contains expected actual = __contains true expected actual

00:00:10 #85 [Verbose] >

00:00:10 #86 [Verbose] > let inline __equal log expected actual = __expect Expecto.Expect.equal log

00:00:10 #87 [Verbose] > expected actual

00:00:10 #88 [Verbose] > let inline _equal expected actual = __equal true expected actual

00:00:10 #89 [Verbose] >

00:00:10 #90 [Verbose] > let inline __isGreaterThan log expected actual = __expect

00:00:10 #91 [Verbose] > Expecto.Expect.isGreaterThan log expected actual

00:00:10 #92 [Verbose] > let ...

00:00:11 #93 [Verbose] >

00:00:11 #94 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:11 #95 [Verbose] > //// test

00:00:11 #96 [Verbose] >

00:00:11 #97 [Verbose] > let inline __isBetween log a b actual =

00:00:11 #98 [Verbose] >     let inline isBetween actual (a, b) _ =

00:00:11 #99 [Verbose] >         __isGreaterThanOrEqual log a actual

00:00:11 #100 [Verbose] >         __isLessThanOrEqual log b actual

00:00:11 #101 [Verbose] >     __expect isBetween log (a, b) actual

00:00:11 #102 [Verbose] > let inline _isBetween a b actual = __isBetween true a b actual

00:00:11 #103 [Verbose] >

00:00:11 #104 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:11 #105 [Verbose] > #!import ../../../lib/fsharp/Common.fs

00:00:11 #106 [Verbose] >

00:00:11 #107 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:11 #108 [Verbose] > #if !INTERACTIVE

00:00:11 #109 [Verbose] > namespace Polyglot

00:00:11 #110 [Verbose] > #endif

00:00:11 #111 [Verbose] >

00:00:11 #112 [Verbose] > module Common =

00:00:11 #113 [Verbose] >

00:00:11 #114 [Verbose] >     let nl = System.Environment.NewLine

00:00:11 #115 [Verbose] >     let q = @""""

00:00:11 #116 [Verbose] >

00:00:11 #117 [Verbose] >     let inline cons head tail = head :: tail

00:00:11 #118 [Verbose] >

00:00:11 #119 [Verbose] >     module String =

00:00:11 #120 [Verbose] >         let inline contains (value : string) (input : string) =

00:00:11 #121 [Verbose] >             input.Contains value

00:00:11 #122 [Verbose] >

00:00:11 #123 [Verbose] >         let inline endsWith (value : string) (input : string) =

00:00:11 #124 [Verbose] >             input.EndsWith value

00:00:11 #125 [Verbose] >

00:00:11 #126 [Verbose] >         let inline padLeft totalWidth paddingChar (input : string) =

00:00:11 #127 [Verbose] >             input.PadLeft (totalWidth, paddingChar)

00:00:11 #128 [Verbose] >

00:00:11 #129 [Verbose] >         let inline replace (oldValue : string) (newValue : string) (input :

00:00:11 #130 [Verbose] > string) =

00:00:11 #131 [Verbose] >             input.Replace (oldValue, newValue)

00:00:11 #132 [Verbose] >

00:00:11 #133 [Verbose] >         let inline split separator (input : string) =

00:00:11 #134 [Verbose] >             input.Split separator

00:00:11 #135 [Verbose] >

00:00:11 #136 [Verbose] >         let inline spli...

00:00:12 #137 [Verbose] >

00:00:12 #138 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #139 [Verbose] > open Common

00:00:12 #140 [Verbose] >

00:00:12 #141 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #142 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #143 [Verbose] > │ ## sixthPowerSequence                                                        │

00:00:12 #144 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #145 [Verbose] >

00:00:12 #146 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #147 [Verbose] > let sixthPowerSequence = 1 |> Seq.unfold (fun state -> Some (state, state * 6))

00:00:12 #148 [Verbose] > |> Seq.cache

00:00:12 #149 [Verbose] >

00:00:12 #150 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #151 [Verbose] > //// test

00:00:12 #152 [Verbose] >

00:00:12 #153 [Verbose] > sixthPowerSequence

00:00:12 #154 [Verbose] > |> Seq.take 8

00:00:12 #155 [Verbose] > |> Seq.toList

00:00:12 #156 [Verbose] > |> _equal [[ 1; 6; 36; 216; 1296; 7776; 46656; 279936 ]]

00:00:12 #157 [Verbose] >

00:00:12 #158 [Verbose] > ╭─[ 93.28ms - stdout ]─────────────────────────────────────────────────────────╮

00:00:12 #159 [Verbose] > │ [ 1, 6, 36, 216, 1296, 7776, 46656, 279936 ]                                 │

00:00:12 #160 [Verbose] > │                                                                              │

00:00:12 #161 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #162 [Verbose] >

00:00:12 #163 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #164 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #165 [Verbose] > │ ## accumulateDiceRolls                                                       │

00:00:12 #166 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #167 [Verbose] >

00:00:12 #168 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #169 [Verbose] > let rec accumulateDiceRolls log rolls power acc =

00:00:12 #170 [Verbose] >     match rolls with

00:00:12 #171 [Verbose] >     | _ when power < 0 ->

00:00:12 #172 [Verbose] >         log |> Option.iter ((|>) $"accumulateDiceRolls / power: {power} / acc:

00:00:12 #173 [Verbose] > {acc}")

00:00:12 #174 [Verbose] >         Some (acc + 1, rolls)

00:00:12 #175 [Verbose] >     | [[]] -> None

00:00:12 #176 [Verbose] >     | roll :: rest when roll > 1 ->

00:00:12 #177 [Verbose] >         let coeff = sixthPowerSequence |> Seq.item power

00:00:12 #178 [Verbose] >         let value = (roll - 1) * coeff

00:00:12 #179 [Verbose] >         log |> Option.iter ((|>) $"accumulateDiceRolls / \

00:00:12 #180 [Verbose] >             power: {power} / acc: {acc} / roll: {roll} / value: {value}"

00:00:12 #181 [Verbose] >         )

00:00:12 #182 [Verbose] >         accumulateDiceRolls log rest (power - 1) (acc + value)

00:00:12 #183 [Verbose] >     | roll :: rest ->

00:00:12 #184 [Verbose] >         log |> Option.iter ((|>) $"accumulateDiceRolls / power: {power} / acc:

00:00:12 #185 [Verbose] > {acc} / roll: {roll}")

00:00:12 #186 [Verbose] >         accumulateDiceRolls log rest (power - 1) acc

00:00:12 #187 [Verbose] >

00:00:12 #188 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #189 [Verbose] > //// test

00:00:12 #190 [Verbose] >

00:00:12 #191 [Verbose] > accumulateDiceRolls (Some (printfn "%s")) [[ 6; 5; 4; 3; 2 ]] 0 1000

00:00:12 #192 [Verbose] > |> _equal (Some (1006, [[ 5; 4; 3; 2 ]]))

00:00:12 #193 [Verbose] >

00:00:12 #194 [Verbose] > ╭─[ 47.88ms - stdout ]─────────────────────────────────────────────────────────╮

00:00:12 #195 [Verbose] > │ accumulateDiceRolls / power: 0 / acc: 1000 / roll: 6 / value: 5              │

00:00:12 #196 [Verbose] > │ accumulateDiceRolls / power: -1 / acc: 1005                                  │

00:00:12 #197 [Verbose] > │ FSharpOption<Tuple<Int32,FSharpList<Int32>>>                                 │

00:00:12 #198 [Verbose] > │       Value:       - 1006                                                    │

00:00:12 #199 [Verbose] > │       - [ 5, 4, 3, 2 ]                                                       │

00:00:12 #200 [Verbose] > │                                                                              │

00:00:12 #201 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #202 [Verbose] >

00:00:12 #203 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #204 [Verbose] > //// test

00:00:12 #205 [Verbose] >

00:00:12 #206 [Verbose] > accumulateDiceRolls (Some (printfn "%s")) [[ 6; 5; 4; 3; 2 ]] 1 1000

00:00:12 #207 [Verbose] > |> _equal (Some (1035, [[ 4; 3; 2 ]]))

00:00:12 #208 [Verbose] >

00:00:12 #209 [Verbose] > ╭─[ 28.29ms - stdout ]─────────────────────────────────────────────────────────╮

00:00:12 #210 [Verbose] > │ accumulateDiceRolls / power: 1 / acc: 1000 / roll: 6 / value: 30             │

00:00:12 #211 [Verbose] > │ accumulateDiceRolls / power: 0 / acc: 1030 / roll: 5 / value: 4              │

00:00:12 #212 [Verbose] > │ accumulateDiceRolls / power: -1 / acc: 1034                                  │

00:00:12 #213 [Verbose] > │ FSharpOption<Tuple<Int32,FSharpList<Int32>>>                                 │

00:00:12 #214 [Verbose] > │       Value:       - 1035                                                    │

00:00:12 #215 [Verbose] > │       - [ 4, 3, 2 ]                                                          │

00:00:12 #216 [Verbose] > │                                                                              │

00:00:12 #217 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #218 [Verbose] >

00:00:12 #219 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #220 [Verbose] > //// test

00:00:12 #221 [Verbose] >

00:00:12 #222 [Verbose] > accumulateDiceRolls (Some (printfn "%s")) [[ 6; 5; 4; 3; 2 ]] 2 1000

00:00:12 #223 [Verbose] > |> _equal (Some (1208, [[ 3; 2 ]]))

00:00:12 #224 [Verbose] >

00:00:12 #225 [Verbose] > ╭─[ 39.81ms - stdout ]─────────────────────────────────────────────────────────╮

00:00:12 #226 [Verbose] > │ accumulateDiceRolls / power: 2 / acc: 1000 / roll: 6 / value: 180            │

00:00:12 #227 [Verbose] > │ accumulateDiceRolls / power: 1 / acc: 1180 / roll: 5 / value: 24             │

00:00:12 #228 [Verbose] > │ accumulateDiceRolls / power: 0 / acc: 1204 / roll: 4 / value: 3              │

00:00:12 #229 [Verbose] > │ accumulateDiceRolls / power: -1 / acc: 1207                                  │

00:00:12 #230 [Verbose] > │ FSharpOption<Tuple<Int32,FSharpList<Int32>>>                                 │

00:00:12 #231 [Verbose] > │       Value:       - 1208                                                    │

00:00:12 #232 [Verbose] > │       - [ 3, 2 ]                                                             │

00:00:12 #233 [Verbose] > │                                                                              │

00:00:12 #234 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #235 [Verbose] >

00:00:12 #236 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #237 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #238 [Verbose] > │ ## rollWithinBounds                                                          │

00:00:12 #239 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #240 [Verbose] >

00:00:12 #241 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #242 [Verbose] > let rollWithinBounds log max rolls =

00:00:12 #243 [Verbose] >     let power = List.length rolls - 1

00:00:12 #244 [Verbose] >     match accumulateDiceRolls log rolls power 0 with

00:00:12 #245 [Verbose] >     | Some (result, _) when result >= 1 && result <= max -> Some result

00:00:12 #246 [Verbose] >     | _ -> None

00:00:12 #247 [Verbose] >

00:00:12 #248 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #249 [Verbose] > //// test

00:00:12 #250 [Verbose] >

00:00:12 #251 [Verbose] > rollWithinBounds (Some (printfn "%s")) 2000 [[ 1; 5; 4; 4; 5 ]]

00:00:12 #252 [Verbose] > |> _equal (Some 995)

00:00:12 #253 [Verbose] >

00:00:12 #254 [Verbose] > ╭─[ 30.99ms - stdout ]─────────────────────────────────────────────────────────╮

00:00:12 #255 [Verbose] > │ accumulateDiceRolls / power: 4 / acc: 0 / roll: 1                            │

00:00:12 #256 [Verbose] > │ accumulateDiceRolls / power: 3 / acc: 0 / roll: 5 / value: 864               │

00:00:12 #257 [Verbose] > │ accumulateDiceRolls / power: 2 / acc: 864 / roll: 4 / value: 108             │

00:00:12 #258 [Verbose] > │ accumulateDiceRolls / power: 1 / acc: 972 / roll: 4 / value: 18              │

00:00:12 #259 [Verbose] > │ accumulateDiceRolls / power: 0 / acc: 990 / roll: 5 / value: 4               │

00:00:12 #260 [Verbose] > │ accumulateDiceRolls / power: -1 / acc: 994                                   │

00:00:12 #261 [Verbose] > │ FSharpOption<Int32>                                                          │

00:00:12 #262 [Verbose] > │       Value: 995                                                             │

00:00:12 #263 [Verbose] > │                                                                              │

00:00:12 #264 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #265 [Verbose] >

00:00:12 #266 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #267 [Verbose] > //// test

00:00:12 #268 [Verbose] >

00:00:12 #269 [Verbose] > rollWithinBounds (Some (printfn "%s")) 2000 [[ 2; 2; 6; 4; 5 ]]

00:00:12 #270 [Verbose] > |> _equal (Some 1715)

00:00:12 #271 [Verbose] >

00:00:12 #272 [Verbose] > ╭─[ 28.83ms - stdout ]─────────────────────────────────────────────────────────╮

00:00:12 #273 [Verbose] > │ accumulateDiceRolls / power: 4 / acc: 0 / roll: 2 / value: 1296              │

00:00:12 #274 [Verbose] > │ accumulateDiceRolls / power: 3 / acc: 1296 / roll: 2 / value: 216            │

00:00:12 #275 [Verbose] > │ accumulateDiceRolls / power: 2 / acc: 1512 / roll: 6 / value: 180            │

00:00:12 #276 [Verbose] > │ accumulateDiceRolls / power: 1 / acc: 1692 / roll: 4 / value: 18             │

00:00:12 #277 [Verbose] > │ accumulateDiceRolls / power: 0 / acc: 1710 / roll: 5 / value: 4              │

00:00:12 #278 [Verbose] > │ accumulateDiceRolls / power: -1 / acc: 1714                                  │

00:00:12 #279 [Verbose] > │ FSharpOption<Int32>                                                          │

00:00:12 #280 [Verbose] > │       Value: 1715                                                            │

00:00:12 #281 [Verbose] > │                                                                              │

00:00:12 #282 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #283 [Verbose] >

00:00:12 #284 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #285 [Verbose] > //// test

00:00:12 #286 [Verbose] >

00:00:12 #287 [Verbose] > rollWithinBounds (Some (printfn "%s")) 2000 [[ 4; 1; 1; 2; 3 ]]

00:00:12 #288 [Verbose] > |> _equal None

00:00:12 #289 [Verbose] >

00:00:12 #290 [Verbose] > ╭─[ 23.60ms - stdout ]─────────────────────────────────────────────────────────╮

00:00:12 #291 [Verbose] > │ accumulateDiceRolls / power: 4 / acc: 0 / roll: 4 / value: 3888              │

00:00:12 #292 [Verbose] > │ accumulateDiceRolls / power: 3 / acc: 3888 / roll: 1                         │

00:00:12 #293 [Verbose] > │ accumulateDiceRolls / power: 2 / acc: 3888 / roll: 1                         │

00:00:12 #294 [Verbose] > │ accumulateDiceRolls / power: 1 / acc: 3888 / roll: 2 / value: 6              │

00:00:12 #295 [Verbose] > │ accumulateDiceRolls / power: 0 / acc: 3894 / roll: 3 / value: 2              │

00:00:12 #296 [Verbose] > │ accumulateDiceRolls / power: -1 / acc: 3896                                  │

00:00:12 #297 [Verbose] > │ <null>                                                                       │

00:00:12 #298 [Verbose] > │                                                                              │

00:00:12 #299 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #300 [Verbose] >

00:00:12 #301 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #302 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #303 [Verbose] > │ ## calculateDiceCount                                                        │

00:00:12 #304 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #305 [Verbose] >

00:00:12 #306 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #307 [Verbose] > let inline calculateDiceCount log max =

00:00:12 #308 [Verbose] >     let rec loop n p =

00:00:12 #309 [Verbose] >         if p < max

00:00:12 #310 [Verbose] >         then loop (n + 1) (p * 6)

00:00:12 #311 [Verbose] >         else

00:00:12 #312 [Verbose] >             log |> Option.iter ((|>) $"calculateDiceCount / max: {max} / n: {n}

00:00:12 #313 [Verbose] > / p: {p}")

00:00:12 #314 [Verbose] >             n

00:00:12 #315 [Verbose] >     if max = 1

00:00:12 #316 [Verbose] >     then 1

00:00:12 #317 [Verbose] >     else loop 0 1

00:00:12 #318 [Verbose] >

00:00:12 #319 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #320 [Verbose] > //// test

00:00:12 #321 [Verbose] >

00:00:12 #322 [Verbose] > calculateDiceCount (Some (printfn "%s")) 36

00:00:12 #323 [Verbose] > |> _equal 2

00:00:12 #324 [Verbose] >

00:00:12 #325 [Verbose] > ╭─[ 30.26ms - stdout ]─────────────────────────────────────────────────────────╮

00:00:12 #326 [Verbose] > │ calculateDiceCount / max: 36 / n: 2 / p: 36                                  │

00:00:12 #327 [Verbose] > │ 2                                                                            │

00:00:12 #328 [Verbose] > │                                                                              │

00:00:12 #329 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #330 [Verbose] >

00:00:12 #331 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #332 [Verbose] > //// test

00:00:12 #333 [Verbose] >

00:00:12 #334 [Verbose] > calculateDiceCount (Some (printfn "%s")) 7777

00:00:12 #335 [Verbose] > |> _equal 6

00:00:12 #336 [Verbose] >

00:00:12 #337 [Verbose] > ╭─[ 24.84ms - stdout ]─────────────────────────────────────────────────────────╮

00:00:12 #338 [Verbose] > │ calculateDiceCount / max: 7777 / n: 6 / p: 46656                             │

00:00:12 #339 [Verbose] > │ 6                                                                            │

00:00:12 #340 [Verbose] > │                                                                              │

00:00:12 #341 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #342 [Verbose] >

00:00:12 #343 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #344 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #345 [Verbose] > │ ## rollDice                                                                  │

00:00:12 #346 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #347 [Verbose] >

00:00:12 #348 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #349 [Verbose] > #if FABLE_COMPILER_RUST

00:00:12 #350 [Verbose] > let rollDice () : int =

00:00:12 #351 [Verbose] > #if !WASM

00:00:12 #352 [Verbose] >     Fable.Core.RustInterop.emitRustExpr () "rand::Rng::gen_range(&mut

00:00:12 #353 [Verbose] > rand::thread_rng(), 1..7)"

00:00:12 #354 [Verbose] > #else

00:00:12 #355 [Verbose] >     1

00:00:12 #356 [Verbose] > #endif

00:00:12 #357 [Verbose] > #else

00:00:12 #358 [Verbose] > let private random = System.Random ()

00:00:12 #359 [Verbose] > let rollDice () =

00:00:12 #360 [Verbose] >     random.Next (1, 7)

00:00:12 #361 [Verbose] > #endif

00:00:12 #362 [Verbose] >

00:00:12 #363 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #364 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #365 [Verbose] > │ ## rotateNumber                                                              │

00:00:12 #366 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #367 [Verbose] >

00:00:12 #368 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #369 [Verbose] > let rotateNumber max n =

00:00:12 #370 [Verbose] >     (n - 1 + max) % max + 1

00:00:12 #371 [Verbose] >

00:00:12 #372 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #373 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #374 [Verbose] > │ ## rotateNumbers                                                             │

00:00:12 #375 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #376 [Verbose] >

00:00:12 #377 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #378 [Verbose] > let rotateNumbers max items =

00:00:12 #379 [Verbose] >     items |> Seq.map (rotateNumber max)

00:00:12 #380 [Verbose] >

00:00:12 #381 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #382 [Verbose] > //// test

00:00:12 #383 [Verbose] >

00:00:12 #384 [Verbose] > [[ -1 .. 14 ]]

00:00:12 #385 [Verbose] > |> rotateNumbers 6

00:00:12 #386 [Verbose] > |> Seq.toList

00:00:12 #387 [Verbose] > |> _equal [[ 5; 6; 1; 2; 3; 4; 5; 6; 1; 2; 3; 4; 5; 6; 1; 2 ]]

00:00:12 #388 [Verbose] >

00:00:12 #389 [Verbose] > ╭─[ 43.21ms - stdout ]─────────────────────────────────────────────────────────╮

00:00:12 #390 [Verbose] > │ [ 5, 6, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 6, 1, 2 ]                           │

00:00:12 #391 [Verbose] > │                                                                              │

00:00:12 #392 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #393 [Verbose] >

00:00:12 #394 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #395 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #396 [Verbose] > │ ## createSequentialRoller                                                    │

00:00:12 #397 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #398 [Verbose] >

00:00:12 #399 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #400 [Verbose] > let createSequentialRoller list =

00:00:12 #401 [Verbose] >     let mutable currentIndex = 0

00:00:12 #402 [Verbose] >     fun () ->

00:00:12 #403 [Verbose] >         match list |> List.tryItem currentIndex with

00:00:12 #404 [Verbose] >         | Some item ->

00:00:12 #405 [Verbose] >             currentIndex <- currentIndex + 1

00:00:12 #406 [Verbose] >             item

00:00:12 #407 [Verbose] >         | None ->

00:00:12 #408 [Verbose] >             failwith "createSequentialRoller / End of list"

00:00:12 #409 [Verbose] >

00:00:12 #410 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:12 #411 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:12 #412 [Verbose] > │ ## rollProgressively                                                         │

00:00:12 #413 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #414 [Verbose] >

00:00:12 #415 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #416 [Verbose] > let rollProgressively log roll reroll max =

00:00:12 #417 [Verbose] >     let power = (calculateDiceCount log max) - 1

00:00:12 #418 [Verbose] >     let rec loop rolls size =

00:00:12 #419 [Verbose] >         if size < power + 1

00:00:12 #420 [Verbose] >         then loop (roll () :: rolls) (size + 1)

00:00:12 #421 [Verbose] >         else

00:00:12 #422 [Verbose] >             match accumulateDiceRolls log rolls power 0 with

00:00:12 #423 [Verbose] >             | Some (result, _) when result <= max -> result

00:00:12 #424 [Verbose] >             | _ when reroll -> loop (List.init power (fun _ -> roll ())) power

00:00:12 #425 [Verbose] >             | _ -> loop (roll () :: rolls) (size + 1)

00:00:12 #426 [Verbose] >     loop [[]] 0

00:00:12 #427 [Verbose] >

00:00:12 #428 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #429 [Verbose] > //// test

00:00:12 #430 [Verbose] >

00:00:12 #431 [Verbose] > rollProgressively None rollDice false 1

00:00:12 #432 [Verbose] > |> _equal 1

00:00:12 #433 [Verbose] >

00:00:12 #434 [Verbose] > ╭─[ 27.25ms - stdout ]─────────────────────────────────────────────────────────╮

00:00:12 #435 [Verbose] > │ 1                                                                            │

00:00:12 #436 [Verbose] > │                                                                              │

00:00:12 #437 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #438 [Verbose] >

00:00:12 #439 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #440 [Verbose] > //// test

00:00:12 #441 [Verbose] >

00:00:12 #442 [Verbose] > let sequentialRoll = createSequentialRoller [[ 5; 4; 4; 5; 1 ]]

00:00:12 #443 [Verbose] >

00:00:12 #444 [Verbose] > rollProgressively (Some (printfn "%s")) sequentialRoll false 2000

00:00:12 #445 [Verbose] > |> _equal 995

00:00:12 #446 [Verbose] >

00:00:12 #447 [Verbose] > ╭─[ 34.42ms - stdout ]─────────────────────────────────────────────────────────╮

00:00:12 #448 [Verbose] > │ calculateDiceCount / max: 2000 / n: 5 / p: 7776                              │

00:00:12 #449 [Verbose] > │ accumulateDiceRolls / power: 4 / acc: 0 / roll: 1                            │

00:00:12 #450 [Verbose] > │ accumulateDiceRolls / power: 3 / acc: 0 / roll: 5 / value: 864               │

00:00:12 #451 [Verbose] > │ accumulateDiceRolls / power: 2 / acc: 864 / roll: 4 / value: 108             │

00:00:12 #452 [Verbose] > │ accumulateDiceRolls / power: 1 / acc: 972 / roll: 4 / value: 18              │

00:00:12 #453 [Verbose] > │ accumulateDiceRolls / power: 0 / acc: 990 / roll: 5 / value: 4               │

00:00:12 #454 [Verbose] > │ accumulateDiceRolls / power: -1 / acc: 994                                   │

00:00:12 #455 [Verbose] > │ 995                                                                          │

00:00:12 #456 [Verbose] > │                                                                              │

00:00:12 #457 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #458 [Verbose] >

00:00:12 #459 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #460 [Verbose] > //// test

00:00:12 #461 [Verbose] >

00:00:12 #462 [Verbose] > let sequentialRoll = createSequentialRoller [[ 5; 4; 4; 5; 2 ]]

00:00:12 #463 [Verbose] >

00:00:12 #464 [Verbose] > fun () -> rollProgressively (Some (printfn "%s")) sequentialRoll false 2000 |>

00:00:12 #465 [Verbose] > ignore

00:00:12 #466 [Verbose] > |> _throwsC (fun ex _ ->

00:00:12 #467 [Verbose] >     printException ex

00:00:12 #468 [Verbose] >     |> _equal "System.Exception: createSequentialRoller / End of list"

00:00:12 #469 [Verbose] > )

00:00:12 #470 [Verbose] >

00:00:12 #471 [Verbose] > ╭─[ 65.26ms - stdout ]─────────────────────────────────────────────────────────╮

00:00:12 #472 [Verbose] > │ FSI_0031+it@5-11                                                             │

00:00:12 #473 [Verbose] > │ calculateDiceCount / max: 2000 / n: 5 / p: 7776                              │

00:00:12 #474 [Verbose] > │ accumulateDiceRolls / power: 4 / acc: 0 / roll: 2 / value: 1296              │

00:00:12 #475 [Verbose] > │ accumulateDiceRolls / power: 3 / acc: 1296 / roll: 5 / value: 864            │

00:00:12 #476 [Verbose] > │ accumulateDiceRolls / power: 2 / acc: 2160 / roll: 4 / value: 108            │

00:00:12 #477 [Verbose] > │ accumulateDiceRolls / power: 1 / acc: 2268 / roll: 4 / value: 18             │

00:00:12 #478 [Verbose] > │ accumulateDiceRolls / power: 0 / acc: 2286 / roll: 5 / value: 4              │

00:00:12 #479 [Verbose] > │ accumulateDiceRolls / power: -1 / acc: 2290                                  │

00:00:12 #480 [Verbose] > │ System.Exception: createSequentialRoller / End of list                       │

00:00:12 #481 [Verbose] > │                                                                              │

00:00:12 #482 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:12 #483 [Verbose] >

00:00:12 #484 [Verbose] > ── fsharp - ignored ────────────────────────────────────────────────────────────

00:00:12 #485 [Verbose] > //// ignore

00:00:12 #486 [Verbose] >

00:00:12 #487 [Verbose] > rollProgressively (Some (printfn "%s")) rollDice false 2000

00:00:12 #488 [Verbose] >

00:00:12 #489 [Verbose] > ── fsharp - ignored ────────────────────────────────────────────────────────────

00:00:12 #490 [Verbose] > //// ignore

00:00:12 #491 [Verbose] >

00:00:12 #492 [Verbose] > rollProgressively (Some (printfn "%s")) rollDice true 2000

00:00:12 #493 [Verbose] >

00:00:12 #494 [Verbose] > ── fsharp - ignored ────────────────────────────────────────────────────────────

00:00:12 #495 [Verbose] > //// ignore

00:00:12 #496 [Verbose] >

00:00:12 #497 [Verbose] > [[ 1 .. 10000 ]]

00:00:12 #498 [Verbose] > |> List.map (fun _ -> rollProgressively None rollDice false 10)

00:00:12 #499 [Verbose] > |> List.groupBy id

00:00:12 #500 [Verbose] > |> List.map (fun (k, v) -> k, v.Length)

00:00:12 #501 [Verbose] > |> List.sortBy fst

00:00:12 #502 [Verbose] >

00:00:12 #503 [Verbose] > ── fsharp - ignored ────────────────────────────────────────────────────────────

00:00:12 #504 [Verbose] > //// ignore

00:00:12 #505 [Verbose] >

00:00:12 #506 [Verbose] > [[ 1 .. 10000 ]]

00:00:12 #507 [Verbose] > |> List.map (fun _ -> rollProgressively None rollDice true 10)

00:00:12 #508 [Verbose] > |> List.groupBy id

00:00:12 #509 [Verbose] > |> List.map (fun (k, v) -> k, v.Length)

00:00:12 #510 [Verbose] > |> List.sortBy fst

00:00:12 #511 [Verbose] >

00:00:12 #512 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:12 #513 [Verbose] > //// test

00:00:12 #514 [Verbose] >

00:00:12 #515 [Verbose] > [[ 1 .. 100 ]]

00:00:12 #516 [Verbose] > |> List.iter (fun n ->

00:00:12 #517 [Verbose] >     [[ 0 .. 1 ]]

00:00:12 #518 [Verbose] >     |> List.iter (fun reroll ->

00:00:12 #519 [Verbose] >         [[ 1 .. 3500 ]]

00:00:12 #520 [Verbose] >         |> List.map (fun _ -> rollProgressively None rollDice (reroll = 1) n)

00:00:12 #521 [Verbose] >         |> List.groupBy id

00:00:12 #522 [Verbose] >         |> List.length

00:00:12 #523 [Verbose] >         |> __equal false n

00:00:12 #524 [Verbose] >     )

00:00:12 #525 [Verbose] > )

00:00:21 #526 [Verbose] >

00:00:21 #527 [Verbose] > ── fsharp - ignored ────────────────────────────────────────────────────────────

00:00:21 #528 [Verbose] > //// ignore

00:00:21 #529 [Verbose] >

00:00:21 #530 [Verbose] > let run () =

00:00:21 #531 [Verbose] >     let inline rollMax fn max n =

00:00:21 #532 [Verbose] >         [[ 1 .. n ]]

00:00:21 #533 [Verbose] >         |> List.map (fun _ -> fn max)

00:00:21 #534 [Verbose] >         |> List.groupBy id

00:00:21 #535 [Verbose] >         |> List.map (fun (_, v) -> v.Length)

00:00:21 #536 [Verbose] >

00:00:21 #537 [Verbose] >     let max = 10

00:00:21 #538 [Verbose] >     let n = 30

00:00:21 #539 [Verbose] >     let even = (n / max) |> int

00:00:21 #540 [Verbose] >

00:00:21 #541 [Verbose] >     let rec rollN current =

00:00:21 #542 [Verbose] >         let roll = rollMax (rollProgressively None rollDice true) max n

00:00:21 #543 [Verbose] >         if roll |> List.forall ((=) even)

00:00:21 #544 [Verbose] >         then current

00:00:21 #545 [Verbose] >         else rollN (current + 1)

00:00:21 #546 [Verbose] >

00:00:21 #547 [Verbose] >     rollN 0

00:00:21 #548 [Verbose] >

00:00:21 #549 [Verbose] > // run ()

00:00:21 #550 [Verbose] >

00:00:21 #551 [Verbose] > ── fsharp - ignored ────────────────────────────────────────────────────────────

00:00:21 #552 [Verbose] > //// ignore

00:00:21 #553 [Verbose] >

00:00:21 #554 [Verbose] > // [[ 1 .. 100 ]]

00:00:21 #555 [Verbose] > // |> List.map (fun i ->

00:00:21 #556 [Verbose] > //     let roll = rollN 0

00:00:21 #557 [Verbose] > //     printfn $"i: {i} / roll: {roll}"

00:00:21 #558 [Verbose] > //     roll

00:00:21 #559 [Verbose] > // )

00:00:21 #560 [Verbose] > // |> List.map float

00:00:21 #561 [Verbose] > // |> List.average

00:00:21 #562 [Verbose] >

00:00:21 #563 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:21 #564 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:21 #565 [Verbose] > │ ## main                                                                      │

00:00:21 #566 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:21 #567 [Verbose] >

00:00:21 #568 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:21 #569 [Verbose] > let main args =

00:00:21 #570 [Verbose] >     let result = rollProgressively (Some (printfn "%s")) rollDice true

00:00:21 #571 [Verbose] > (System.Int32.MaxValue / 10)

00:00:21 #572 [Verbose] >     trace Debug (fun () -> $"main / result: {result}") getLocals

00:00:21 #573 [Verbose] >     0

00:00:23 #574 [Verbose] > [NbConvertApp] Converting notebook dice_fsharp.dib.ipynb to html

00:00:23 #575 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:00:23 #576 [Verbose] >   validate(nb)

00:00:24 #577 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:00:24 #578 [Verbose] >   return _pygments_highlight(

00:00:25 #579 [Verbose] > [NbConvertApp] Writing 325742 bytes to dice_fsharp.dib.html

00:00:26 #580 [Debug] executeAsync / exitCode: 0 / output.Length: 25065

00:00:26 #581 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] writeDibCode / output: Fs / path: dice_fsharp.dib

00:00:00 #2 [Debug] parseDibCode / output: Fs / file: dice_fsharp.dib

00:00:00 #1 [Debug] persistCodeProject / packages: [Fable.Core] / modules: [lib/fsharp/Common.fs] / name: dice_fsharp / code.Length: 3337

00:00:00 #2 [Debug] buildProject / fullPath: C:\home\git\polyglot\target\polyglot\builder\dice_fsharp\dice_fsharp.fsproj

00:00:00 #3 [Debug] executeAsync / options: { Command =

   "dotnet publish "C:\home\git\polyglot\target/polyglot/builder\dice_fsharp\dice_fsharp.fsproj" --configuration Release --output "C:\home\git\polyglot\apps\dice\fsharp\dist" --runtime linux-x64"

  WorkingDirectory =

   Some "C:\home\git\polyglot\target\polyglot\builder\dice_fsharp"

  CancellationToken = None

  OnLine = None }

00:00:00 #4 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET

00:00:01 #5 [Verbose] >   Determining projects to restore...

00:00:02 #6 [Verbose] >   Paket version 8.0.0-alpha002+6339fce88f07b4d959d03b78330fdb5a6d936483

00:00:02 #7 [Verbose] >   The last full restore is still up to date. Nothing left to do.

00:00:02 #8 [Verbose] >   Total time taken: 0 milliseconds

00:00:03 #9 [Verbose] >   Paket version 8.0.0-alpha002+6339fce88f07b4d959d03b78330fdb5a6d936483

00:00:04 #10 [Verbose] >   Restoring C:\home\git\polyglot\target\polyglot\builder\dice_fsharp\dice_fsharp.fsproj

00:00:04 #11 [Verbose] >   Starting restore process.

00:00:04 #12 [Verbose] >   Total time taken: 0 milliseconds

00:00:05 #13 [Verbose] >   Restored C:\home\git\polyglot\target\polyglot\builder\dice_fsharp\dice_fsharp.fsproj (in 538 ms).

00:00:10 #14 [Verbose] >   dice_fsharp -> C:\home\git\polyglot\target\polyglot\builder\dice_fsharp\bin\Release\net8.0\linux-x64\dice_fsharp.dll

00:00:11 #15 [Verbose] >   dice_fsharp -> C:\home\git\polyglot\apps\dice\fsharp\dist\

00:00:12 #16 [Debug] executeAsync / exitCode: 0 / output.Length: 753

00:00:12 #17 [Debug] executeAsync / options: { Command =

   "dotnet publish "C:\home\git\polyglot\target/polyglot/builder\dice_fsharp\dice_fsharp.fsproj" --configuration Release --output "C:\home\git\polyglot\apps\dice\fsharp\dist" --runtime win-x64"

  WorkingDirectory =

   Some "C:\home\git\polyglot\target\polyglot\builder\dice_fsharp"

  CancellationToken = None

  OnLine = None }

00:00:12 #18 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET

00:00:13 #19 [Verbose] >   Determining projects to restore...

00:00:14 #20 [Verbose] >   Restored C:\home\git\polyglot\target\polyglot\builder\dice_fsharp\dice_fsharp.fsproj (in 493 ms).

00:00:18 #21 [Verbose] >   dice_fsharp -> C:\home\git\polyglot\target\polyglot\builder\dice_fsharp\bin\Release\net8.0\win-x64\dice_fsharp.dll

00:00:22 #22 [Verbose] >   dice_fsharp -> C:\home\git\polyglot\apps\dice\fsharp\dist\

00:00:22 #23 [Debug] executeAsync / exitCode: 0 / output.Length: 356

Fable 4.5.0: F# to Rust compiler (status: alpha)



Thanks to the contributor! @enricosada

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing ..\..\..\target\polyglot\builder\dice_fsharp\dice_fsharp.fsproj...

..\..\..\target\polyglot\builder\dice_fsharp> cmd /C dotnet restore dice_fsharp.csproj -p:FABLE_COMPILER=true -p:FABLE_COMPILER_4=true -p:FABLE_COMPILER_RUST=true

  Determining projects to restore...

  Paket version 8.0.0-alpha002+6339fce88f07b4d959d03b78330fdb5a6d936483

  The last full restore is still up to date. Nothing left to do.

  Total time taken: 0 milliseconds

  Paket version 8.0.0-alpha002+6339fce88f07b4d959d03b78330fdb5a6d936483

  Restoring C:\home\git\polyglot\target\polyglot\builder\dice_fsharp\dice_fsharp.csproj

  Starting restore process.

  Total time taken: 0 milliseconds

  Restored C:\home\git\polyglot\target\polyglot\builder\dice_fsharp\dice_fsharp.csproj (in 614 ms).

Project and references (2 source files) parsed in 11680ms



Started Fable compilation...

Fable compilation finished in 3863ms



Fable 4.5.0: F# to TypeScript compiler

Minimum fable-library version (when installed from npm): 1.1.1



Thanks to the contributor! @tpetricek

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing ..\..\..\target\polyglot\builder\dice_fsharp\dice_fsharp.fsproj...

..\..\..\target\polyglot\builder\dice_fsharp> cmd /C dotnet restore dice_fsharp.csproj -p:FABLE_COMPILER=true -p:FABLE_COMPILER_4=true -p:FABLE_COMPILER_TYPESCRIPT=true

  Determining projects to restore...

  All projects are up-to-date for restore.

Project and references (2 source files) parsed in 5242ms



Started Fable compilation...

Fable compilation finished in 3257ms



Fable 4.5.0: F# to Python compiler (status: beta)



Thanks to the contributor! @dbrattli

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing ..\..\..\target\polyglot\builder\dice_fsharp\dice_fsharp.fsproj...

..\..\..\target\polyglot\builder\dice_fsharp> cmd /C dotnet restore dice_fsharp.csproj -p:FABLE_COMPILER=true -p:FABLE_COMPILER_4=true -p:FABLE_COMPILER_PYTHON=true

  Determining projects to restore...

  All projects are up-to-date for restore.

Project and references (2 source files) parsed in 5158ms



Started Fable compilation...

Fable compilation finished in 3211ms



Fable 4.5.0: F# to PHP compiler (status: experimental)



Thanks to the contributor! @ncave

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing ..\..\..\target\polyglot\builder\dice_fsharp\dice_fsharp.fsproj...

..\..\..\target\polyglot\builder\dice_fsharp> cmd /C dotnet restore dice_fsharp.csproj -p:FABLE_COMPILER=true -p:FABLE_COMPILER_4=true -p:FABLE_COMPILER_PHP=true

  Determining projects to restore...

  All projects are up-to-date for restore.

Project and references (2 source files) parsed in 5240ms



Started Fable compilation...

Fable compilation finished in 3320ms



.\..\..\..\lib\fsharp\Common.fs(56,17): (56,49) error FABLE: String templates are not supported

.\..\..\..\lib\fsharp\Common.fs(135,23): (135,35) error FABLE: String templates are not supported

.\..\..\..\target\polyglot\builder\dice_fsharp\dice_fsharp.fs(18,37): (18,89) error FABLE: String templates are not supported

.\..\..\..\target\polyglot\builder\dice_fsharp\dice_fsharp.fs(24,37): (25,76) error FABLE: String templates are not supported

.\..\..\..\target\polyglot\builder\dice_fsharp\dice_fsharp.fs(29,37): (29,104) error FABLE: String templates are not supported

.\..\..\..\target\polyglot\builder\dice_fsharp\dice_fsharp.fs(47,41): (47,93) error FABLE: String templates are not supported

.\..\..\..\target\polyglot\builder\dice_fsharp\dice_fsharp.fs(109,31): (109,57) error FABLE: String templates are not supported

Compilation failed


# Invoke-Block / $Retry: 1 / $OnError: Continue / $exitcode: 1 / $EnvVars: null / $Error: '' / $ScriptBlock:
'dotnet fable $targetDir/dice_fsharp.fsproj --optimize --lang php --extension .php --outDir $targetDir/php'


Fable 4.5.0: F# to Dart compiler (status: beta)



Thanks to the contributor! @zanaptak

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing ..\..\..\target\polyglot\builder\dice_fsharp\dice_fsharp.fsproj...

..\..\..\target\polyglot\builder\dice_fsharp> cmd /C dotnet restore dice_fsharp.csproj -p:FABLE_COMPILER=true -p:FABLE_COMPILER_4=true -p:FABLE_COMPILER_DART=true

  Determining projects to restore...

  All projects are up-to-date for restore.

Project and references (2 source files) parsed in 5420ms



Started Fable compilation...

Fable compilation finished in 3224ms



.\..\..\..\lib\fsharp\Common.fs(1,1): error FABLE: Cannot find reference for Microsoft.FSharp.Core.PrintfFormat`5

.\..\..\..\target\polyglot\builder\dice_fsharp\dice_fsharp.fs(1,1): error FABLE: Cannot find reference for System.Random

.\..\..\..\target\polyglot\builder\dice_fsharp\dice_fsharp.fs(1,1): error FABLE: Cannot find reference for System.IO.TextWriter

.\..\..\..\target\polyglot\builder\dice_fsharp\dice_fsharp.fs(1,1): error FABLE: Cannot find reference for Microsoft.FSharp.Core.PrintfFormat`5

Compilation failed


# Invoke-Block / $Retry: 1 / $OnError: Continue / $exitcode: 1 / $EnvVars: null / $Error: '' / $ScriptBlock:
'dotnet fable $targetDir/dice_fsharp.fsproj --optimize --lang dart --extension .dart --outDir $targetDir/dart'


Fable 4.5.0: F# to Rust compiler (status: alpha)



Thanks to the contributor! @devcrafting

Stand with Ukraine! https://standwithukraine.com.ua/



Parsing ..\..\..\target\polyglot\builder\dice_fsharp\dice_fsharp.fsproj...

Retrieving project options from cache, in case of issues run `dotnet fable clean` or try `--noCache` option.

Project and references (2 source files) parsed in 309ms



Started Fable compilation...

Fable compilation finished in 3310ms



   Compiling dice_fsharp v0.0.1 (C:\home\git\polyglot\apps\dice\fsharp)

    Finished release [optimized] target(s) in 8.84s

     Running `C:\home\git\polyglot\target\release\dice_fsharp.exe`

calculateDiceCount / max: 214748364 / n: 11 / p: 362797056

accumulateDiceRolls / power: 10 / acc: 0 / roll: 6 / value: 302330880

accumulateDiceRolls / power: 9 / acc: 302330880 / roll: 6 / value: 50388480

accumulateDiceRolls / power: 8 / acc: 352719360 / roll: 3 / value: 3359232

accumulateDiceRolls / power: 7 / acc: 356078592 / roll: 4 / value: 839808

accumulateDiceRolls / power: 6 / acc: 356918400 / roll: 4 / value: 139968

accumulateDiceRolls / power: 5 / acc: 357058368 / roll: 2 / value: 7776

accumulateDiceRolls / power: 4 / acc: 357066144 / roll: 4 / value: 3888

accumulateDiceRolls / power: 3 / acc: 357070032 / roll: 6 / value: 1080

accumulateDiceRolls / power: 2 / acc: 357071112 / roll: 4 / value: 108

accumulateDiceRolls / power: 1 / acc: 357071220 / roll: 3 / value: 12

accumulateDiceRolls / power: 0 / acc: 357071232 / roll: 3 / value: 2

accumulateDiceRolls / power: -1 / acc: 357071234

accumulateDiceRolls / power: 10 / acc: 0 / roll: 2 / value: 60466176

accumulateDiceRolls / power: 9 / acc: 60466176 / roll: 3 / value: 20155392

accumulateDiceRolls / power: 8 / acc: 80621568 / roll: 5 / value: 6718464

accumulateDiceRolls / power: 7 / acc: 87340032 / roll: 2 / value: 279936

accumulateDiceRolls / power: 6 / acc: 87619968 / roll: 6 / value: 233280

accumulateDiceRolls / power: 5 / acc: 87853248 / roll: 2 / value: 7776

accumulateDiceRolls / power: 4 / acc: 87861024 / roll: 3 / value: 2592

accumulateDiceRolls / power: 3 / acc: 87863616 / roll: 5 / value: 864

accumulateDiceRolls / power: 2 / acc: 87864480 / roll: 1

accumulateDiceRolls / power: 1 / acc: 87864480 / roll: 6 / value: 30

accumulateDiceRolls / power: 0 / acc: 87864510 / roll: 1

accumulateDiceRolls / power: -1 / acc: 87864510

16:48:50 #1 [Debug] main / result: 87864511

In [ ]:
{ . "$ScriptDir/../apps/spiral/temp/extension/build.ps1" } | Invoke-Block
Lockfile is up to date, resolution step is skipped

Already up to date



Done in 1.9s

[INFO]: 🎯  Checking for the Wasm target...

[INFO]: 🌀  Compiling to Wasm...

   Compiling serde v1.0.196

   Compiling syn v2.0.48

   Compiling borsh v1.3.1

   Compiling wasm-bindgen-backend v0.2.90

   Compiling server_fn_macro v0.6.3

   Compiling manyhow v0.8.1

   Compiling proc-macro2-diagnostics v0.10.1

   Compiling prettyplease v0.2.16

   Compiling wasm-bindgen-macro-support v0.2.90

   Compiling serde_derive v1.0.196

   Compiling thiserror-impl v1.0.56

   Compiling futures-macro v0.3.30

   Compiling pin-project-internal v1.1.4

   Compiling derive-where v1.2.7

   Compiling tracing-attributes v0.1.27

   Compiling syn_derive v0.1.8

   Compiling wasm-bindgen-macro v0.2.90

   Compiling wasm-bindgen v0.2.90

   Compiling server_fn_macro_default v0.6.3

   Compiling futures-util v0.3.30

   Compiling js-sys v0.3.67

   Compiling async-trait v0.1.77

   Compiling pin-project v1.1.4

   Compiling typed-builder-macro v0.18.1

   Compiling thiserror v1.0.56

   Compiling quote-use-macros v0.7.2

   Compiling rstml v0.11.2

   Compiling tracing v0.1.40

   Compiling async-recursion v1.0.5

   Compiling quote-use v0.7.2

   Compiling attribute-derive-macro v0.8.1

   Compiling futures-executor v0.3.30

   Compiling console_error_panic_hook v0.1.7

   Compiling web-sys v0.3.67

   Compiling wasm-bindgen-futures v0.4.40

   Compiling futures v0.3.30

   Compiling getrandom v0.2.12

   Compiling typed-builder v0.18.1

   Compiling attribute-derive v0.8.1

   Compiling serde_json v1.0.113

   Compiling ciborium v0.2.2

   Compiling serde_qs v0.12.0

   Compiling slotmap v1.0.7

   Compiling serde-wasm-bindgen v0.6.3

   Compiling leptos_hot_reload v0.6.3

   Compiling toml v0.5.11

   Compiling serde_test v1.0.176

   Compiling serde_urlencoded v0.7.1

   Compiling linear-map v1.2.0

   Compiling config v0.13.4

   Compiling leptos_config v0.6.3

   Compiling leptos_macro v0.6.3

   Compiling gloo-utils v0.2.0

   Compiling leptos_reactive v0.6.3

   Compiling gloo-utils v0.1.7

   Compiling reqwest-wasm v0.11.16

   Compiling console_log v1.0.0

   Compiling gloo-net v0.5.0

   Compiling gloo-net v0.2.6

   Compiling gloo-net v0.4.0

   Compiling wasm-streams v0.4.0

   Compiling rexie v0.5.0

   Compiling server_fn v0.6.3

   Compiling leptos_server v0.6.3

   Compiling leptos_dom v0.6.3

   Compiling leptos v0.6.3

   Compiling leptos_meta v0.6.3

   Compiling leptos_router v0.6.3

   Compiling extension v0.0.1 (C:\home\git\polyglot\apps\spiral\temp\extension)

    Finished dev [unoptimized + debuginfo] target(s) in 1m 54s

[INFO]: ⬇️  Installing wasm-bindgen...

[INFO]: origin crate has no LICENSE

[INFO]: ✨   Done in 2m 02s

[INFO]: 📦   Your wasm pkg is ready to publish at C:\home\git\polyglot\apps\spiral\temp\extension\pkg.

▲ [WARNING] "import.meta" is not available with the "iife" output format and will be empty [empty-import-meta]



    pkg/extension.js:1467:45:

      1467 │         input = new URL('extension_bg.wasm', import.meta.url);

           ╵                                              ~~~~~~~~~~~



  You need to set the output format to "esm" for "import.meta" to work correctly.



1 warning



  dist\extension_bg-75DAVBX5.wasm   4.5mb ⚠️

  dist\devtools.js                 29.0kb

  dist\content_script.js           26.2kb

  dist\service_worker.js            2.2kb



⚡ Done in 188ms



> polyglot@ test:e2e C:\home\git\polyglot\apps\spiral\temp\extension

> playwright test



[WebServer] (node:16852) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.

(Use `node --trace-deprecation ...` to show where the warning was created)





Running 3 tests using 3 workers



[1/3] [Desktop Chrome] › extension.spec.ts:13:5 › libgen

[2/3] [Desktop Chrome] › extension.spec.ts:3:5 › popup localhost

[3/3] [Desktop Chrome] › extension.spec.ts:8:5 › popup extension

  3 passed (19.7s)



To open last HTML report run:



  pnpm exec playwright show-report



In [ ]:
{ . "$ScriptDir/../apps/perf/build.ps1" } | Invoke-Block
00:00:00 #1 [Debug] runWithTimeoutAsync / timeout: 60

00:00:00 #2 [Debug] executeAsync / options: { Command =

   "dotnet "C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release\Spiral.dll" port=13805"

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = Some <fun:main@450-1020> }

00:00:00 #3 [Verbose] > pwd: C:\home\git\polyglot\apps\perf

00:00:00 #4 [Verbose] > dll_path: C:\home\git\polyglot\deps\The-Spiral-Language\The Spiral Language 2\artifacts\bin\The Spiral Language 2\release

00:00:00 #5 [Debug] runWithTimeoutAsync / timeout: 500

00:00:00 #6 [Verbose] waitForPortAccess / port: 13805 / retry: 0

00:00:01 #7 [Debug] sendJson / port: 13805 / json: {"Ping":true} / result.Length:

00:00:01 #8 [Verbose] awaitCompiler / Ping / result: Some(null) / port: 13805 / retry: 0

00:00:01 #9 [Verbose] > Server bound to: http://localhost:13805

00:00:01 #10 [Debug] executeAsync / options: { Command = "pwsh -c "../../scripts/invoke-dib.ps1 Perf.dib""

  WorkingDirectory = None

  CancellationToken = Some System.Threading.CancellationToken

  OnLine = None }

00:00:04 #11 [Verbose] >

00:00:04 #12 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:04 #13 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:04 #14 [Verbose] > │ ## Perf (Polyglot)                                                           │

00:00:04 #15 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:04 #16 [Verbose] >

00:00:04 #17 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:04 #18 [Verbose] > // // test

00:00:04 #19 [Verbose] >

00:00:04 #20 [Verbose] > open testing

00:00:04 #21 [Verbose] > open benchmark

00:00:08 #22 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1651-2686-8659-8db6524cf397\main.spi

00:00:11 #23 [Verbose] >

00:00:11 #24 [Verbose] > ╭─[ 6.98s - stdout ]───────────────────────────────────────────────────────────╮

00:00:11 #25 [Verbose] > │ ()                                                                           │

00:00:11 #26 [Verbose] > │                                                                              │

00:00:11 #27 [Verbose] > │                                                                              │

00:00:11 #28 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #29 [Verbose] >

00:00:11 #30 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:11 #31 [Verbose] > inl (/@) x = listm'.(/@) x

00:00:11 #32 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1651-3117-1733-1d85152706d9\main.spi

00:00:11 #33 [Verbose] >

00:00:11 #34 [Verbose] > ╭─[ 254.76ms - stdout ]────────────────────────────────────────────────────────╮

00:00:11 #35 [Verbose] > │ ()                                                                           │

00:00:11 #36 [Verbose] > │                                                                              │

00:00:11 #37 [Verbose] > │                                                                              │

00:00:11 #38 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #39 [Verbose] >

00:00:11 #40 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:11 #41 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:11 #42 [Verbose] > │ ## TestCaseResult                                                            │

00:00:11 #43 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:11 #44 [Verbose] >

00:00:11 #45 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:11 #46 [Verbose] > type TestCaseResult =

00:00:11 #47 [Verbose] >     {

00:00:11 #48 [Verbose] >         Input: string

00:00:11 #49 [Verbose] >         Expected: string

00:00:11 #50 [Verbose] >         Result: string

00:00:11 #51 [Verbose] >         TimeList: int64 list

00:00:11 #52 [Verbose] >     }

00:00:11 #53 [Verbose] >

00:00:11 #54 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:11 #55 [Verbose] > #r

00:00:11 #56 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

00:00:11 #57 [Verbose] > spNetCore.Html.Abstractions.dll"

00:00:11 #58 [Verbose] > #r

00:00:11 #59 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

00:00:11 #60 [Verbose] > otNet.Interactive.dll"

00:00:11 #61 [Verbose] > #r

00:00:11 #62 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

00:00:11 #63 [Verbose] > otNet.Interactive.FSharp.dll"

00:00:11 #64 [Verbose] > #r

00:00:11 #65 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

00:00:11 #66 [Verbose] > otNet.Interactive.Formatting.dll"

00:00:11 #67 [Verbose] > open System

00:00:11 #68 [Verbose] > open System.IO

00:00:11 #69 [Verbose] > open System.Text

00:00:11 #70 [Verbose] > open Microsoft.DotNet.Interactive.Formatting

00:00:13 #71 [Verbose] >

00:00:13 #72 [Verbose] > ── fsharp - import ─────────────────────────────────────────────────────────────

00:00:13 #73 [Verbose] > #r

00:00:13 #74 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

00:00:13 #75 [Verbose] > otNet.Interactive.FSharp.dll"

00:00:13 #76 [Verbose] > open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

00:00:13 #77 [Verbose] > #r

00:00:13 #78 [Verbose] > "C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

00:00:13 #79 [Verbose] > otNet.Interactive.dll"

00:00:13 #80 [Verbose] > open type Microsoft.DotNet.Interactive.Kernel

00:00:14 #81 [Verbose] >

00:00:14 #82 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:14 #83 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:14 #84 [Verbose] > │ ## run                                                                       │

00:00:14 #85 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:14 #86 [Verbose] >

00:00:14 #87 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:14 #88 [Verbose] > let run count (solutions: (string * ('TInput -> 'TExpected)) list) (input,

00:00:14 #89 [Verbose] > expected) =

00:00:14 #90 [Verbose] >     let inputStr =

00:00:14 #91 [Verbose] >         match box input with

00:00:14 #92 [Verbose] >         | :? System.Collections.ICollection as input ->

00:00:14 #93 [Verbose] >             System.Linq.Enumerable.Cast<obj> input

00:00:14 #94 [Verbose] >             |> Seq.map string

00:00:14 #95 [Verbose] >             |> String.concat ","

00:00:14 #96 [Verbose] >         | _ -> input.ToString ()

00:00:14 #97 [Verbose] >

00:00:14 #98 [Verbose] >     printfn ""

00:00:14 #99 [Verbose] >     printfn $"Solution: {inputStr}  "

00:00:14 #100 [Verbose] >

00:00:14 #101 [Verbose] >     let performanceInvoke (fn: unit -> 'T) =

00:00:14 #102 [Verbose] >         GC.Collect ()

00:00:14 #103 [Verbose] >         let stopwatch = System.Diagnostics.Stopwatch ()

00:00:14 #104 [Verbose] >         stopwatch.Start ()

00:00:14 #105 [Verbose] >         let time1 = stopwatch.ElapsedMilliseconds

00:00:14 #106 [Verbose] >

00:00:14 #107 [Verbose] >         let result =

00:00:14 #108 [Verbose] >             [[| 0 .. count |]]

00:00:14 #109 [Verbose] >             |> Array.Parallel.map (fun _ ->

00:00:14 #110 [Verbose] >                 fn ()

00:00:14 #111 [Verbose] >             )

00:00:14 #112 [Verbose] >             |> Array.last

00:00:14 #113 [Verbose] >

00:00:14 #114 [Verbose] >         let time2 = stopwatch.ElapsedMilliseconds - time1

00:00:14 #115 [Verbose] >

00:00:14 #116 [Verbose] >         result, time2

00:00:14 #117 [Verbose] >

00:00:14 #118 [Verbose] >     let resultsWithTime =

00:00:14 #119 [Verbose] >         solutions

00:00:14 #120 [Verbose] >         |> List.mapi (fun i (testName, solution) ->

00:00:14 #121 [Verbose] >             let result, time = performanceInvoke (fun () -> solution input)

00:00:14 #122 [Verbose] >             printfn $"Test case %d{i + 1}. %s{testName}. Time: %A{time}  "

00:00:14 #123 [Verbose] >             result, time

00:00:14 #124 [Verbose] >         )

00:00:14 #125 [Verbose] >

00:00:14 #126 [Verbose] >

00:00:14 #127 [Verbose] >     match resultsWithTime |> List.map fst with

00:00:14 #128 [Verbose] >     | ([[]] | [[ _ ]]) -> ()

00:00:14 #129 [Verbose] >     | (head :: tail) when tail |> List.forall ((=) head) -> ()

00:00:14 #130 [Verbose] >     | results -> failwithf $"Challenge error: %A{results}"

00:00:14 #131 [Verbose] >

00:00:14 #132 [Verbose] >     {

00:00:14 #133 [Verbose] >         Input = inputStr

00:00:14 #134 [Verbose] >         Expected = expected.ToString ()

00:00:14 #135 [Verbose] >         Result = resultsWithTime |> Seq.map fst |> Seq.head |> fun x ->

00:00:14 #136 [Verbose] > x.ToString ()

00:00:14 #137 [Verbose] >         TimeList = resultsWithTime |> List.map snd

00:00:14 #138 [Verbose] >     }

00:00:15 #139 [Verbose] >

00:00:15 #140 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #141 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #142 [Verbose] > │ ## runAll                                                                    │

00:00:15 #143 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #144 [Verbose] >

00:00:15 #145 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:15 #146 [Verbose] > let runAll testName count (solutions: (string * ('TInput -> 'TExpected)) list)

00:00:15 #147 [Verbose] > testCases =

00:00:15 #148 [Verbose] >     printfn ""

00:00:15 #149 [Verbose] >     printfn ""

00:00:15 #150 [Verbose] >     printfn $"Test: {testName}"

00:00:15 #151 [Verbose] >     testCases

00:00:15 #152 [Verbose] >     |> Seq.map (run count solutions)

00:00:15 #153 [Verbose] >     |> Seq.toList

00:00:15 #154 [Verbose] >

00:00:15 #155 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #156 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #157 [Verbose] > │ ## sortResultList                                                            │

00:00:15 #158 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #159 [Verbose] >

00:00:15 #160 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:15 #161 [Verbose] > let sortResultList resultList =

00:00:15 #162 [Verbose] >     let table =

00:00:15 #163 [Verbose] >         let rows =

00:00:15 #164 [Verbose] >             resultList

00:00:15 #165 [Verbose] >             |> List.map (fun result ->

00:00:15 #166 [Verbose] >                 let best =

00:00:15 #167 [Verbose] >                     result.TimeList

00:00:15 #168 [Verbose] >                     |> List.mapi (fun i time ->

00:00:15 #169 [Verbose] >                         i + 1, time

00:00:15 #170 [Verbose] >                     )

00:00:15 #171 [Verbose] >                     |> List.sortBy snd

00:00:15 #172 [Verbose] >                     |> List.head

00:00:15 #173 [Verbose] >                     |> fun x -> x.ToString ()

00:00:15 #174 [Verbose] >                 let row =

00:00:15 #175 [Verbose] >                     [[

00:00:15 #176 [Verbose] >                         result.Input

00:00:15 #177 [Verbose] >                         result.Expected

00:00:15 #178 [Verbose] >                         result.Result

00:00:15 #179 [Verbose] >                         best

00:00:15 #180 [Verbose] >                     ]]

00:00:15 #181 [Verbose] >                 let color =

00:00:15 #182 [Verbose] >                     match result.Expected = result.Result with

00:00:15 #183 [Verbose] >                     | true -> Some ConsoleColor.DarkGreen

00:00:15 #184 [Verbose] >                     | false -> Some ConsoleColor.DarkRed

00:00:15 #185 [Verbose] >                 row, color

00:00:15 #186 [Verbose] >             )

00:00:15 #187 [Verbose] >         let header =

00:00:15 #188 [Verbose] >             [[

00:00:15 #189 [Verbose] >                 [[

00:00:15 #190 [Verbose] >                     "Input"

00:00:15 #191 [Verbose] >                     "Expected"

00:00:15 #192 [Verbose] >                     "Result"

00:00:15 #193 [Verbose] >                     "Best"

00:00:15 #194 [Verbose] >                 ]]

00:00:15 #195 [Verbose] >                 [[

00:00:15 #196 [Verbose] >                     "---"

00:00:15 #197 [Verbose] >                     "---"

00:00:15 #198 [Verbose] >                     "---"

00:00:15 #199 [Verbose] >                     "---"

00:00:15 #200 [Verbose] >                 ]]

00:00:15 #201 [Verbose] >             ]]

00:00:15 #202 [Verbose] >             |> List.map (fun row -> row, None)

00:00:15 #203 [Verbose] >         header @ rows

00:00:15 #204 [Verbose] >

00:00:15 #205 [Verbose] >     let formattedTable =

00:00:15 #206 [Verbose] >         let lengthMap =

00:00:15 #207 [Verbose] >             table

00:00:15 #208 [Verbose] >             |> List.map fst

00:00:15 #209 [Verbose] >             |> List.transpose

00:00:15 #210 [Verbose] >             |> List.map (fun column ->

00:00:15 #211 [Verbose] >                 column

00:00:15 #212 [Verbose] >                 |> List.map String.length

00:00:15 #213 [Verbose] >                 |> List.sortDescending

00:00:15 #214 [Verbose] >                 |> List.tryHead

00:00:15 #215 [Verbose] >                 |> Option.defaultValue 0

00:00:15 #216 [Verbose] >             )

00:00:15 #217 [Verbose] >             |> List.indexed

00:00:15 #218 [Verbose] >             |> Map.ofList

00:00:15 #219 [Verbose] >         table

00:00:15 #220 [Verbose] >         |> List.map (fun (row, color) ->

00:00:15 #221 [Verbose] >             let newRow =

00:00:15 #222 [Verbose] >                 row

00:00:15 #223 [Verbose] >                 |> List.mapi (fun i cell ->

00:00:15 #224 [Verbose] >                     cell.PadRight lengthMap.[[i]]

00:00:15 #225 [Verbose] >                 )

00:00:15 #226 [Verbose] >             newRow, color

00:00:15 #227 [Verbose] >         )

00:00:15 #228 [Verbose] >

00:00:15 #229 [Verbose] >     printfn ""

00:00:15 #230 [Verbose] >     formattedTable

00:00:15 #231 [Verbose] >     |> List.iter (fun (row, color) ->

00:00:15 #232 [Verbose] >         match color with

00:00:15 #233 [Verbose] >         | Some color -> Console.ForegroundColor <- color

00:00:15 #234 [Verbose] >         | None -> Console.ResetColor ()

00:00:15 #235 [Verbose] >

00:00:15 #236 [Verbose] >         printfn "%s" (String.Join ("\t| ", row))

00:00:15 #237 [Verbose] >

00:00:15 #238 [Verbose] >         Console.ResetColor ()

00:00:15 #239 [Verbose] >     )

00:00:15 #240 [Verbose] >

00:00:15 #241 [Verbose] >     let averages =

00:00:15 #242 [Verbose] >         resultList

00:00:15 #243 [Verbose] >         |> List.map (fun result -> result.TimeList |> List.map float)

00:00:15 #244 [Verbose] >         |> List.transpose

00:00:15 #245 [Verbose] >         |> List.map List.average

00:00:15 #246 [Verbose] >         |> List.map int64

00:00:15 #247 [Verbose] >         |> List.indexed

00:00:15 #248 [Verbose] >

00:00:15 #249 [Verbose] >     printfn ""

00:00:15 #250 [Verbose] >     printfn "Average Ranking  "

00:00:15 #251 [Verbose] >     averages

00:00:15 #252 [Verbose] >     |> List.sortBy snd

00:00:15 #253 [Verbose] >     |> List.iter (fun (i, avg) ->

00:00:15 #254 [Verbose] >         printfn $"Test case %d{i + 1}. Average Time: %A{avg}  "

00:00:15 #255 [Verbose] >     )

00:00:15 #256 [Verbose] >

00:00:15 #257 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:15 #258 [Verbose] > let mutable _count =

00:00:15 #259 [Verbose] >     if ("CI" |> System.Environment.GetEnvironmentVariable |> fun x -> $"%A{x}")

00:00:15 #260 [Verbose] > <> "<null>"

00:00:15 #261 [Verbose] >     then 2000000

00:00:15 #262 [Verbose] >     else 2000

00:00:15 #263 [Verbose] >

00:00:15 #264 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:15 #265 [Verbose] > inl is_fast () =

00:00:15 #266 [Verbose] >     false

00:00:15 #267 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1651-3519-1919-1359a49ab51a\main.spi

00:00:15 #268 [Verbose] >

00:00:15 #269 [Verbose] > ╭─[ 207.65ms - stdout ]────────────────────────────────────────────────────────╮

00:00:15 #270 [Verbose] > │ ()                                                                           │

00:00:15 #271 [Verbose] > │                                                                              │

00:00:15 #272 [Verbose] > │                                                                              │

00:00:15 #273 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #274 [Verbose] >

00:00:15 #275 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #276 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #277 [Verbose] > │ ## empty3Tests                                                               │

00:00:15 #278 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #279 [Verbose] >

00:00:15 #280 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:15 #281 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:15 #282 [Verbose] > │ Test: Empty3                                                                 │

00:00:15 #283 [Verbose] > │                                                                              │

00:00:15 #284 [Verbose] > │ Solution: (a, a)                                                             │

00:00:15 #285 [Verbose] > │ Test case 1. A. Time: 91L                                                    │

00:00:15 #286 [Verbose] > │                                                                              │

00:00:15 #287 [Verbose] > │ Solution: (a, a)                                                             │

00:00:15 #288 [Verbose] > │ Test case 1. A. Time: 56L                                                    │

00:00:15 #289 [Verbose] > │                                                                              │

00:00:15 #290 [Verbose] > │ Input  | Expected      | Result | Best                                       │

00:00:15 #291 [Verbose] > │ ---    | ---           | ---    | ---                                        │

00:00:15 #292 [Verbose] > │ (a, a) | a             | a      | (1, 91)                                    │

00:00:15 #293 [Verbose] > │ (a, a) | a             | a      | (1, 56)                                    │

00:00:15 #294 [Verbose] > │                                                                              │

00:00:15 #295 [Verbose] > │ Averages                                                                     │

00:00:15 #296 [Verbose] > │ Test case 1. Average Time: 73L                                               │

00:00:15 #297 [Verbose] > │                                                                              │

00:00:15 #298 [Verbose] > │ Ranking                                                                      │

00:00:15 #299 [Verbose] > │ Test case 1. Average Time: 73L                                               │

00:00:15 #300 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:15 #301 [Verbose] >

00:00:15 #302 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:15 #303 [Verbose] > //// test

00:00:15 #304 [Verbose] >

00:00:15 #305 [Verbose] > let solutions = [[

00:00:15 #306 [Verbose] >     "A",

00:00:15 #307 [Verbose] >     fun (a, _b) ->

00:00:15 #308 [Verbose] >         a

00:00:15 #309 [Verbose] > ]]

00:00:15 #310 [Verbose] > let testCases = seq {

00:00:15 #311 [Verbose] >     ("a", "a"), "a"

00:00:15 #312 [Verbose] >     ("a", "a"), "a"

00:00:15 #313 [Verbose] > }

00:00:15 #314 [Verbose] > let rec empty3Tests = runAll (nameof empty3Tests) _count solutions testCases

00:00:15 #315 [Verbose] > empty3Tests

00:00:15 #316 [Verbose] > |> sortResultList

00:00:16 #317 [Verbose] >

00:00:16 #318 [Verbose] > ╭─[ 463.51ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #319 [Verbose] > │                                                                              │

00:00:16 #320 [Verbose] > │                                                                              │

00:00:16 #321 [Verbose] > │ Test: empty3Tests                                                            │

00:00:16 #322 [Verbose] > │                                                                              │

00:00:16 #323 [Verbose] > │ Solution: (a, a)                                                             │

00:00:16 #324 [Verbose] > │ Test case 1. A. Time: 2L                                                     │

00:00:16 #325 [Verbose] > │                                                                              │

00:00:16 #326 [Verbose] > │ Solution: (a, a)                                                             │

00:00:16 #327 [Verbose] > │ Test case 1. A. Time: 0L                                                     │

00:00:16 #328 [Verbose] > │                                                                              │

00:00:16 #329 [Verbose] > │ Input 	| Expected	| Result	| Best                                                  │

00:00:16 #330 [Verbose] > │ ---   	| ---     	| ---   	| ---                                                   │

00:00:16 #331 [Verbose] > │ (a, a)	| a       	| a     	| (1, 2)                                                │

00:00:16 #332 [Verbose] > │ (a, a)	| a       	| a     	| (1, 0)                                                │

00:00:16 #333 [Verbose] > │                                                                              │

00:00:16 #334 [Verbose] > │ Average Ranking                                                              │

00:00:16 #335 [Verbose] > │ Test case 1. Average Time: 1L                                                │

00:00:16 #336 [Verbose] > │                                                                              │

00:00:16 #337 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #338 [Verbose] >

00:00:16 #339 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #340 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #341 [Verbose] > │ ## empty2Tests                                                               │

00:00:16 #342 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #343 [Verbose] >

00:00:16 #344 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #345 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #346 [Verbose] > │ Test: Empty2                                                                 │

00:00:16 #347 [Verbose] > │                                                                              │

00:00:16 #348 [Verbose] > │ Solution: (a, a)                                                             │

00:00:16 #349 [Verbose] > │ Test case 1. A. Time: 59L                                                    │

00:00:16 #350 [Verbose] > │                                                                              │

00:00:16 #351 [Verbose] > │ Solution: (a, a)                                                             │

00:00:16 #352 [Verbose] > │ Test case 1. A. Time: 53L                                                    │

00:00:16 #353 [Verbose] > │                                                                              │

00:00:16 #354 [Verbose] > │ Input   | Expected        | Result  | Best                                   │

00:00:16 #355 [Verbose] > │ ---     | ---             | ---     | ---                                    │

00:00:16 #356 [Verbose] > │ (a, a)  | a               | a       | (1, 59)                                │

00:00:16 #357 [Verbose] > │ (a, a)  | a               | a       | (1, 53)                                │

00:00:16 #358 [Verbose] > │                                                                              │

00:00:16 #359 [Verbose] > │ Averages                                                                     │

00:00:16 #360 [Verbose] > │ Test case 1. Average Time: 56L                                               │

00:00:16 #361 [Verbose] > │                                                                              │

00:00:16 #362 [Verbose] > │ Ranking                                                                      │

00:00:16 #363 [Verbose] > │ Test case 1. Average Time: 56L                                               │

00:00:16 #364 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #365 [Verbose] >

00:00:16 #366 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:16 #367 [Verbose] > //// test

00:00:16 #368 [Verbose] >

00:00:16 #369 [Verbose] > let solutions = [[

00:00:16 #370 [Verbose] >     "A",

00:00:16 #371 [Verbose] >     fun (a, _b) ->

00:00:16 #372 [Verbose] >         a

00:00:16 #373 [Verbose] > ]]

00:00:16 #374 [Verbose] > let testCases = seq {

00:00:16 #375 [Verbose] >     ("a", "a"), "a"

00:00:16 #376 [Verbose] >     ("a", "a"), "a"

00:00:16 #377 [Verbose] > }

00:00:16 #378 [Verbose] > let rec empty2Tests = runAll (nameof empty2Tests) _count solutions testCases

00:00:16 #379 [Verbose] > empty2Tests

00:00:16 #380 [Verbose] > |> sortResultList

00:00:16 #381 [Verbose] >

00:00:16 #382 [Verbose] > ╭─[ 347.95ms - stdout ]────────────────────────────────────────────────────────╮

00:00:16 #383 [Verbose] > │                                                                              │

00:00:16 #384 [Verbose] > │                                                                              │

00:00:16 #385 [Verbose] > │ Test: empty2Tests                                                            │

00:00:16 #386 [Verbose] > │                                                                              │

00:00:16 #387 [Verbose] > │ Solution: (a, a)                                                             │

00:00:16 #388 [Verbose] > │ Test case 1. A. Time: 0L                                                     │

00:00:16 #389 [Verbose] > │                                                                              │

00:00:16 #390 [Verbose] > │ Solution: (a, a)                                                             │

00:00:16 #391 [Verbose] > │ Test case 1. A. Time: 6L                                                     │

00:00:16 #392 [Verbose] > │                                                                              │

00:00:16 #393 [Verbose] > │ Input 	| Expected	| Result	| Best                                                  │

00:00:16 #394 [Verbose] > │ ---   	| ---     	| ---   	| ---                                                   │

00:00:16 #395 [Verbose] > │ (a, a)	| a       	| a     	| (1, 0)                                                │

00:00:16 #396 [Verbose] > │ (a, a)	| a       	| a     	| (1, 6)                                                │

00:00:16 #397 [Verbose] > │                                                                              │

00:00:16 #398 [Verbose] > │ Average Ranking                                                              │

00:00:16 #399 [Verbose] > │ Test case 1. Average Time: 3L                                                │

00:00:16 #400 [Verbose] > │                                                                              │

00:00:16 #401 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #402 [Verbose] >

00:00:16 #403 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #404 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #405 [Verbose] > │ ## emptyTests                                                                │

00:00:16 #406 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #407 [Verbose] >

00:00:16 #408 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:16 #409 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:16 #410 [Verbose] > │ Test: Empty                                                                  │

00:00:16 #411 [Verbose] > │                                                                              │

00:00:16 #412 [Verbose] > │ Solution: 0                                                                  │

00:00:16 #413 [Verbose] > │ Test case 1. A. Time: 61L                                                    │

00:00:16 #414 [Verbose] > │                                                                              │

00:00:16 #415 [Verbose] > │ Solution: 2                                                                  │

00:00:16 #416 [Verbose] > │ Test case 1. A. Time: 62L                                                    │

00:00:16 #417 [Verbose] > │                                                                              │

00:00:16 #418 [Verbose] > │ Solution: 5                                                                  │

00:00:16 #419 [Verbose] > │ Test case 1. A. Time: 70L                                                    │

00:00:16 #420 [Verbose] > │                                                                              │

00:00:16 #421 [Verbose] > │ Input   | Expected        | Result  | Best                                   │

00:00:16 #422 [Verbose] > │ ---     | ---             | ---     | ---                                    │

00:00:16 #423 [Verbose] > │ 0       | 0               | 0       | (1, 61)                                │

00:00:16 #424 [Verbose] > │ 2       | 2               | 2       | (1, 62)                                │

00:00:16 #425 [Verbose] > │ 5       | 5               | 5       | (1, 70)                                │

00:00:16 #426 [Verbose] > │                                                                              │

00:00:16 #427 [Verbose] > │ Averages                                                                     │

00:00:16 #428 [Verbose] > │ Test case 1. Average Time: 64L                                               │

00:00:16 #429 [Verbose] > │                                                                              │

00:00:16 #430 [Verbose] > │ Ranking                                                                      │

00:00:16 #431 [Verbose] > │ Test case 1. Average Time: 64L                                               │

00:00:16 #432 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:16 #433 [Verbose] >

00:00:16 #434 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:16 #435 [Verbose] > //// test

00:00:16 #436 [Verbose] >

00:00:16 #437 [Verbose] > let solutions = [[

00:00:16 #438 [Verbose] >     "A",

00:00:16 #439 [Verbose] >     fun n ->

00:00:16 #440 [Verbose] >         n + 0

00:00:16 #441 [Verbose] > ]]

00:00:16 #442 [Verbose] > let testCases = seq {

00:00:16 #443 [Verbose] >     0, 0

00:00:16 #444 [Verbose] >     2, 2

00:00:16 #445 [Verbose] >     5, 5

00:00:16 #446 [Verbose] > }

00:00:16 #447 [Verbose] > let rec emptyTests = runAll (nameof emptyTests) _count solutions testCases

00:00:16 #448 [Verbose] > emptyTests

00:00:16 #449 [Verbose] > |> sortResultList

00:00:17 #450 [Verbose] >

00:00:17 #451 [Verbose] > ╭─[ 535.72ms - stdout ]────────────────────────────────────────────────────────╮

00:00:17 #452 [Verbose] > │                                                                              │

00:00:17 #453 [Verbose] > │                                                                              │

00:00:17 #454 [Verbose] > │ Test: emptyTests                                                             │

00:00:17 #455 [Verbose] > │                                                                              │

00:00:17 #456 [Verbose] > │ Solution: 0                                                                  │

00:00:17 #457 [Verbose] > │ Test case 1. A. Time: 3L                                                     │

00:00:17 #458 [Verbose] > │                                                                              │

00:00:17 #459 [Verbose] > │ Solution: 2                                                                  │

00:00:17 #460 [Verbose] > │ Test case 1. A. Time: 0L                                                     │

00:00:17 #461 [Verbose] > │                                                                              │

00:00:17 #462 [Verbose] > │ Solution: 5                                                                  │

00:00:17 #463 [Verbose] > │ Test case 1. A. Time: 1L                                                     │

00:00:17 #464 [Verbose] > │                                                                              │

00:00:17 #465 [Verbose] > │ Input	| Expected	| Result	| Best                                                   │

00:00:17 #466 [Verbose] > │ ---  	| ---     	| ---   	| ---                                                    │

00:00:17 #467 [Verbose] > │ 0    	| 0       	| 0     	| (1, 3)                                                 │

00:00:17 #468 [Verbose] > │ 2    	| 2       	| 2     	| (1, 0)                                                 │

00:00:17 #469 [Verbose] > │ 5    	| 5       	| 5     	| (1, 1)                                                 │

00:00:17 #470 [Verbose] > │                                                                              │

00:00:17 #471 [Verbose] > │ Average Ranking                                                              │

00:00:17 #472 [Verbose] > │ Test case 1. Average Time: 1L                                                │

00:00:17 #473 [Verbose] > │                                                                              │

00:00:17 #474 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #475 [Verbose] >

00:00:17 #476 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #477 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #478 [Verbose] > │ ## uniqueLettersTests                                                        │

00:00:17 #479 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #480 [Verbose] >

00:00:17 #481 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:17 #482 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:17 #483 [Verbose] > │ Test: UniqueLetters                                                          │

00:00:17 #484 [Verbose] > │                                                                              │

00:00:17 #485 [Verbose] > │ Solution: abc                                                                │

00:00:17 #486 [Verbose] > │ Test case 1. A. Time: 1512L                                                  │

00:00:17 #487 [Verbose] > │ Test case 2. B. Time: 1947L                                                  │

00:00:17 #488 [Verbose] > │ Test case 3. C. Time: 2023L                                                  │

00:00:17 #489 [Verbose] > │ Test case 4. D. Time: 1358L                                                  │

00:00:17 #490 [Verbose] > │ Test case 5. E. Time: 1321L                                                  │

00:00:17 #491 [Verbose] > │ Test case 6. F. Time: 1346L                                                  │

00:00:17 #492 [Verbose] > │ Test case 7. G. Time: 1304L                                                  │

00:00:17 #493 [Verbose] > │ Test case 8. H. Time: 1383L                                                  │

00:00:17 #494 [Verbose] > │ Test case 9. I. Time: 1495L                                                  │

00:00:17 #495 [Verbose] > │ Test case 10. J. Time: 1245L                                                 │

00:00:17 #496 [Verbose] > │ Test case 11. K. Time: 1219L                                                 │

00:00:17 #497 [Verbose] > │                                                                              │

00:00:17 #498 [Verbose] > │ Solution: accabb                                                             │

00:00:17 #499 [Verbose] > │ Test case 1. A. Time: 1648L                                                  │

00:00:17 #500 [Verbose] > │ Test case 2. B. Time: 2061L                                                  │

00:00:17 #501 [Verbose] > │ Test case 3. C. Time: 2413L                                                  │

00:00:17 #502 [Verbose] > │ Test case 4. D. Time: 1561L                                                  │

00:00:17 #503 [Verbose] > │ Test case 5. E. Time: 1593L                                                  │

00:00:17 #504 [Verbose] > │ Test case 6. F. Time: 1518L                                                  │

00:00:17 #505 [Verbose] > │ Test case 7. G. Time: 1415L                                                  │

00:00:17 #506 [Verbose] > │ Test case 8. H. Time: 1510L                                                  │

00:00:17 #507 [Verbose] > │ Test case 9. I. Time: 1445L                                                  │

00:00:17 #508 [Verbose] > │ Test case 10. J. Time: 1636L                                                 │

00:00:17 #509 [Verbose] > │ Test case 11. K. Time: 1317L                                                 │

00:00:17 #510 [Verbose] > │                                                                              │

00:00:17 #511 [Verbose] > │ Solution: pprrqqpp                                                           │

00:00:17 #512 [Verbose] > │ Test case 1. A. Time: 2255L                                                  │

00:00:17 #513 [Verbose] > │ Test case 2. B. Time: 2408L                                                  │

00:00:17 #514 [Verbose] > │ Test case 3. C. Time: 2393L                                                  │

00:00:17 #515 [Verbose] > │ Test case 4. D. Time: 1675L                                                  │

00:00:17 #516 [Verbose] > │ Test case 5. E. Time: 1911L                                                  │

00:00:17 #517 [Verbose] > │ Test case 6. F. Time: 2126L                                                  │

00:00:17 #518 [Verbose] > │ Test case 7. G. Time: 1504L                                                  │

00:00:17 #519 [Verbose] > │ Test case 8. H. Time: 1715L                                                  │

00:00:17 #520 [Verbose] > │ Test case 9. I. Time: 1537L                                                  │

00:00:17 #521 [Verbose] > │ Test case 10. J. Time: 1522L                                                 │

00:00:17 #522 [Verbose] > │ Test case 11. K. Time: 1322L                                                 │

00:00:17 #523 [Verbose] > │                                                                              │

00:00:17 #524 [Verbose] > │ Solution:                                                                    │

00:00:17 #525 [Verbose] > │ aaaaaaaaaaaaaaccccccabbbbbbbaaacccbbbaaccccccccccacbbbbbbbbbbbbbcccccccbbbbb │

00:00:17 #526 [Verbose] > │ bbb                                                                          │

00:00:17 #527 [Verbose] > │ Test case 1. A. Time: 13073L                                                 │

00:00:17 #528 [Verbose] > │ Test case 2. B. Time: 11519L                                                 │

00:00:17 #529 [Verbose] > │ Test case 3. C. Time: 8373L                                                  │

00:00:17 #530 [Verbose] > │ Test case 4. D. Time: 5860L                                                  │

00:00:17 #531 [Verbose] > │ Test case 5. E. Time: 6490L                                                  │

00:00:17 #532 [Verbose] > │ Test case 6. F. Time: 6325L                                                  │

00:00:17 #533 [Verbose] > │ Test case 7. G. Time: 5799L                                                  │

00:00:17 #534 [Verbose] > │ Test case 8. H. Time: 7099L                                                  │

00:00:17 #535 [Verbose] > │ Test case 9. I. Time: 6133L                                                  │

00:00:17 #536 [Verbose] > │ Test case 10. J. Time: 5993L                                                 │

00:00:17 #537 [Verbose] > │ Test case 11. K. Time: 2040L                                                 │

00:00:17 #538 [Verbose] > │                                                                              │

00:00:17 #539 [Verbose] > │ Input                                                                        │

00:00:17 #540 [Verbose] > │ | Expected        | Result  | Best                                           │

00:00:17 #541 [Verbose] > │ ---                                                                          │

00:00:17 #542 [Verbose] > │                                                                              │

00:00:17 #543 [Verbose] > │ | ---             | ---     | ---                                            │

00:00:17 #544 [Verbose] > │ abc                                                                          │

00:00:17 #545 [Verbose] > │                                                                              │

00:00:17 #546 [Verbose] > │ | abc             | abc     | (11, 1219)                                     │

00:00:17 #547 [Verbose] > │ accabb                                                                       │

00:00:17 #548 [Verbose] > │ | acb             | acb     | (11, 1317)                                     │

00:00:17 #549 [Verbose] > │ pprrqqpp                                                                     │

00:00:17 #550 [Verbose] > │ | prq             | prq     | (11, 1322)                                     │

00:00:17 #551 [Verbose] > │ aaaaaaaaaaaaaaccccccabbbbbbbaaacccbbbaaccccccccccacbbbbbbbbbbbbbcccccccbbbbb │

00:00:17 #552 [Verbose] > │ bbb | acb             | acb     | (11, 2040)                                 │

00:00:17 #553 [Verbose] > │                                                                              │

00:00:17 #554 [Verbose] > │ Averages                                                                     │

00:00:17 #555 [Verbose] > │ Test case 1. Average Time: 4622L                                             │

00:00:17 #556 [Verbose] > │ Test case 2. Average Time: 4483L                                             │

00:00:17 #557 [Verbose] > │ Test case 3. Average Time: 3800L                                             │

00:00:17 #558 [Verbose] > │ Test case 4. Average Time: 2613L                                             │

00:00:17 #559 [Verbose] > │ Test case 5. Average Time: 2828L                                             │

00:00:17 #560 [Verbose] > │ Test case 6. Average Time: 2828L                                             │

00:00:17 #561 [Verbose] > │ Test case 7. Average Time: 2505L                                             │

00:00:17 #562 [Verbose] > │ Test case 8. Average Time: 2926L                                             │

00:00:17 #563 [Verbose] > │ Test case 9. Average Time: 2652L                                             │

00:00:17 #564 [Verbose] > │ Test case 10. Average Time: 2599L                                            │

00:00:17 #565 [Verbose] > │ Test case 11. Average Time: 1474L                                            │

00:00:17 #566 [Verbose] > │                                                                              │

00:00:17 #567 [Verbose] > │ Ranking                                                                      │

00:00:17 #568 [Verbose] > │ Test case 1. Average Time: 4622L                                             │

00:00:17 #569 [Verbose] > │ Test case 2. Average Time: 4483L                                             │

00:00:17 #570 [Verbose] > │ Test case 3. Average Time: 3800L                                             │

00:00:17 #571 [Verbose] > │ Test case 8. Average Time: 2926L                                             │

00:00:17 #572 [Verbose] > │ Test case 5. Average Time: 2828L                                             │

00:00:17 #573 [Verbose] > │ Test case 6. Average Time: 2828L                                             │

00:00:17 #574 [Verbose] > │ Test case 9. Average Time: 2652L                                             │

00:00:17 #575 [Verbose] > │ Test case 4. Average Time: 2613L                                             │

00:00:17 #576 [Verbose] > │ Test case 10. Average Time: 2599L                                            │

00:00:17 #577 [Verbose] > │ Test case 7. Average Time: 2505L                                             │

00:00:17 #578 [Verbose] > │ Test case 11. Average Time: 1474L                                            │

00:00:17 #579 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:17 #580 [Verbose] >

00:00:17 #581 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:17 #582 [Verbose] > //// test

00:00:17 #583 [Verbose] >

00:00:17 #584 [Verbose] > let solutions = [[

00:00:17 #585 [Verbose] >     "A",

00:00:17 #586 [Verbose] >     fun input ->

00:00:17 #587 [Verbose] >         input

00:00:17 #588 [Verbose] >         |> Seq.toList

00:00:17 #589 [Verbose] >         |> List.fold (fun acc x -> if List.contains x acc then acc else acc @ [[

00:00:17 #590 [Verbose] > x ]]) [[]]

00:00:17 #591 [Verbose] >         |> Seq.toArray

00:00:17 #592 [Verbose] >         |> String

00:00:17 #593 [Verbose] >

00:00:17 #594 [Verbose] >     "B",

00:00:17 #595 [Verbose] >     fun input ->

00:00:17 #596 [Verbose] >         input

00:00:17 #597 [Verbose] >         |> Seq.rev

00:00:17 #598 [Verbose] >         |> fun list -> Seq.foldBack (fun x acc -> if List.contains x acc then

00:00:17 #599 [Verbose] > acc else x :: acc) list [[]]

00:00:17 #600 [Verbose] >         |> Seq.rev

00:00:17 #601 [Verbose] >         |> Seq.toArray

00:00:17 #602 [Verbose] >         |> String

00:00:17 #603 [Verbose] >

00:00:17 #604 [Verbose] >     "C",

00:00:17 #605 [Verbose] >     fun input ->

00:00:17 #606 [Verbose] >         input

00:00:17 #607 [Verbose] >         |> Seq.rev

00:00:17 #608 [Verbose] >         |> fun list -> Seq.foldBack (fun x (set, acc) -> if Set.contains x set

00:00:17 #609 [Verbose] > then set, acc else set.Add x, x :: acc) list (Set.empty, [[]])

00:00:17 #610 [Verbose] >         |> snd

00:00:17 #611 [Verbose] >         |> Seq.rev

00:00:17 #612 [Verbose] >         |> Seq.toArray

00:00:17 #613 [Verbose] >         |> String

00:00:17 #614 [Verbose] >

00:00:17 #615 [Verbose] >     "D",

00:00:17 #616 [Verbose] >     fun input ->

00:00:17 #617 [Verbose] >         input

00:00:17 #618 [Verbose] >         |> Seq.fold (fun (set, acc) x -> if Set.contains x set then set, acc

00:00:17 #619 [Verbose] > else set.Add x, Array.append acc [[| x |]]) (Set.empty, [[||]])

00:00:17 #620 [Verbose] >         |> snd

00:00:17 #621 [Verbose] >         |> String

00:00:17 #622 [Verbose] >

00:00:17 #623 [Verbose] >     "E",

00:00:17 #624 [Verbose] >     fun input ->

00:00:17 #625 [Verbose] >         input

00:00:17 #626 [Verbose] >         |> Seq.fold (fun (set, acc) x -> if Set.contains x set then set, acc

00:00:17 #627 [Verbose] > else set.Add x, x :: acc) (Set.empty, [[]])

00:00:17 #628 [Verbose] >         |> snd

00:00:17 #629 [Verbose] >         |> List.rev

00:00:17 #630 [Verbose] >         |> List.toArray

00:00:17 #631 [Verbose] >         |> String

00:00:17 #632 [Verbose] >

00:00:17 #633 [Verbose] >     "F",

00:00:17 #634 [Verbose] >     fun input ->

00:00:17 #635 [Verbose] >         input

00:00:17 #636 [Verbose] >         |> Seq.fold (fun (set, acc) x -> if Set.contains x set then set, acc

00:00:17 #637 [Verbose] > else set.Add x, acc @ [[ x ]]) (Set.empty, [[]])

00:00:17 #638 [Verbose] >         |> snd

00:00:17 #639 [Verbose] >         |> List.toArray

00:00:17 #640 [Verbose] >         |> String

00:00:17 #641 [Verbose] >

00:00:17 #642 [Verbose] >     "G",

00:00:17 #643 [Verbose] >     fun input ->

00:00:17 #644 [Verbose] >         input

00:00:17 #645 [Verbose] >         |> Seq.fold (fun (set, acc) x -> if Set.contains x set then set, acc

00:00:17 #646 [Verbose] > else set.Add x, x :: acc) (Set.empty, [[]])

00:00:17 #647 [Verbose] >         |> snd

00:00:17 #648 [Verbose] >         |> List.toArray

00:00:17 #649 [Verbose] >         |> Array.rev

00:00:17 #650 [Verbose] >         |> String

00:00:17 #651 [Verbose] >

00:00:17 #652 [Verbose] >     "H",

00:00:17 #653 [Verbose] >     fun input ->

00:00:17 #654 [Verbose] >         input

00:00:17 #655 [Verbose] >         |> Seq.toList

00:00:17 #656 [Verbose] >         |> fun list ->

00:00:17 #657 [Verbose] >             let rec loop set = function

00:00:17 #658 [Verbose] >                 | head :: tail when Set.contains head set -> loop set tail

00:00:17 #659 [Verbose] >                 | head :: tail -> (loop (set.Add head) tail) @ [[ head ]]

00:00:17 #660 [Verbose] >                 | [[]] -> [[]]

00:00:17 #661 [Verbose] >             loop Set.empty list

00:00:17 #662 [Verbose] >             |> List.rev

00:00:17 #663 [Verbose] >         |> List.toArray

00:00:17 #664 [Verbose] >         |> String

00:00:17 #665 [Verbose] >

00:00:17 #666 [Verbose] >     "I",

00:00:17 #667 [Verbose] >     fun input ->

00:00:17 #668 [Verbose] >         input

00:00:17 #669 [Verbose] >         |> Seq.toList

00:00:17 #670 [Verbose] >         |> fun list ->

00:00:17 #671 [Verbose] >             let rec loop set = function

00:00:17 #672 [Verbose] >                 | head :: tail when Set.contains head set -> loop set tail

00:00:17 #673 [Verbose] >                 | head :: tail -> loop (set.Add head) tail |> Array.append [[|

00:00:17 #674 [Verbose] > head |]]

00:00:17 #675 [Verbose] >                 | [[]] -> [[||]]

00:00:17 #676 [Verbose] >             loop Set.empty list

00:00:17 #677 [Verbose] >         |> String

00:00:17 #678 [Verbose] >

00:00:17 #679 [Verbose] >     "J",

00:00:17 #680 [Verbose] >     fun input ->

00:00:17 #681 [Verbose] >         input

00:00:17 #682 [Verbose] >         |> Seq.toList

00:00:17 #683 [Verbose] >         |> fun list ->

00:00:17 #684 [Verbose] >             let rec loop set = function

00:00:17 #685 [Verbose] >                 | head :: tail when Set.contains head set -> loop set tail

00:00:17 #686 [Verbose] >                 | head :: tail -> head :: loop (set.Add head) tail

00:00:17 #687 [Verbose] >                 | [[]] -> [[]]

00:00:17 #688 [Verbose] >             loop Set.empty list

00:00:17 #689 [Verbose] >         |> List.toArray

00:00:17 #690 [Verbose] >         |> String

00:00:17 #691 [Verbose] >

00:00:17 #692 [Verbose] >     "K",

00:00:17 #693 [Verbose] >     fun input ->

00:00:17 #694 [Verbose] >         input

00:00:17 #695 [Verbose] >         |> Seq.distinct

00:00:17 #696 [Verbose] >         |> Seq.toArray

00:00:17 #697 [Verbose] >         |> String

00:00:17 #698 [Verbose] > ]]

00:00:17 #699 [Verbose] > let testCases = seq {

00:00:17 #700 [Verbose] >     "abc", "abc"

00:00:17 #701 [Verbose] >     "accabb", "acb"

00:00:17 #702 [Verbose] >     "pprrqqpp", "prq"

00:00:17 #703 [Verbose] >

00:00:17 #704 [Verbose] > "aaaaaaaaaaaaaaccccccabbbbbbbaaacccbbbaaccccccccccacbbbbbbbbbbbbbcccccccbbbbbbbb

00:00:17 #705 [Verbose] > ", "acb"

00:00:17 #706 [Verbose] > }

00:00:17 #707 [Verbose] > let rec uniqueLettersTests = runAll (nameof uniqueLettersTests) _count solutions

00:00:17 #708 [Verbose] > testCases

00:00:17 #709 [Verbose] > uniqueLettersTests

00:00:17 #710 [Verbose] > |> sortResultList

00:00:24 #711 [Verbose] >

00:00:24 #712 [Verbose] > ╭─[ 6.78s - stdout ]───────────────────────────────────────────────────────────╮

00:00:24 #713 [Verbose] > │                                                                              │

00:00:24 #714 [Verbose] > │                                                                              │

00:00:24 #715 [Verbose] > │ Test: uniqueLettersTests                                                     │

00:00:24 #716 [Verbose] > │                                                                              │

00:00:24 #717 [Verbose] > │ Solution: abc                                                                │

00:00:24 #718 [Verbose] > │ Test case 1. A. Time: 5L                                                     │

00:00:24 #719 [Verbose] > │ Test case 2. B. Time: 7L                                                     │

00:00:24 #720 [Verbose] > │ Test case 3. C. Time: 5L                                                     │

00:00:24 #721 [Verbose] > │ Test case 4. D. Time: 2L                                                     │

00:00:24 #722 [Verbose] > │ Test case 5. E. Time: 3L                                                     │

00:00:24 #723 [Verbose] > │ Test case 6. F. Time: 1L                                                     │

00:00:24 #724 [Verbose] > │ Test case 7. G. Time: 2L                                                     │

00:00:24 #725 [Verbose] > │ Test case 8. H. Time: 2L                                                     │

00:00:24 #726 [Verbose] > │ Test case 9. I. Time: 2L                                                     │

00:00:24 #727 [Verbose] > │ Test case 10. J. Time: 2L                                                    │

00:00:24 #728 [Verbose] > │ Test case 11. K. Time: 4L                                                    │

00:00:24 #729 [Verbose] > │                                                                              │

00:00:24 #730 [Verbose] > │ Solution: accabb                                                             │

00:00:24 #731 [Verbose] > │ Test case 1. A. Time: 1L                                                     │

00:00:24 #732 [Verbose] > │ Test case 2. B. Time: 2L                                                     │

00:00:24 #733 [Verbose] > │ Test case 3. C. Time: 2L                                                     │

00:00:24 #734 [Verbose] > │ Test case 4. D. Time: 2L                                                     │

00:00:24 #735 [Verbose] > │ Test case 5. E. Time: 1L                                                     │

00:00:24 #736 [Verbose] > │ Test case 6. F. Time: 0L                                                     │

00:00:24 #737 [Verbose] > │ Test case 7. G. Time: 2L                                                     │

00:00:24 #738 [Verbose] > │ Test case 8. H. Time: 1L                                                     │

00:00:24 #739 [Verbose] > │ Test case 9. I. Time: 0L                                                     │

00:00:24 #740 [Verbose] > │ Test case 10. J. Time: 1L                                                    │

00:00:24 #741 [Verbose] > │ Test case 11. K. Time: 1L                                                    │

00:00:24 #742 [Verbose] > │                                                                              │

00:00:24 #743 [Verbose] > │ Solution: pprrqqpp                                                           │

00:00:24 #744 [Verbose] > │ Test case 1. A. Time: 1L                                                     │

00:00:24 #745 [Verbose] > │ Test case 2. B. Time: 2L                                                     │

00:00:24 #746 [Verbose] > │ Test case 3. C. Time: 1L                                                     │

00:00:24 #747 [Verbose] > │ Test case 4. D. Time: 2L                                                     │

00:00:24 #748 [Verbose] > │ Test case 5. E. Time: 1L                                                     │

00:00:24 #749 [Verbose] > │ Test case 6. F. Time: 1L                                                     │

00:00:24 #750 [Verbose] > │ Test case 7. G. Time: 1L                                                     │

00:00:24 #751 [Verbose] > │ Test case 8. H. Time: 1L                                                     │

00:00:24 #752 [Verbose] > │ Test case 9. I. Time: 1L                                                     │

00:00:24 #753 [Verbose] > │ Test case 10. J. Time: 1L                                                    │

00:00:24 #754 [Verbose] > │ Test case 11. K. Time: 1L                                                    │

00:00:24 #755 [Verbose] > │                                                                              │

00:00:24 #756 [Verbose] > │ Solution:                                                                    │

00:00:24 #757 [Verbose] > │ aaaaaaaaaaaaaaccccccabbbbbbbaaacccbbbaaccccccccccacbbbbbbbbbbbbbcccccccbbbbb │

00:00:24 #758 [Verbose] > │ bbb                                                                          │

00:00:24 #759 [Verbose] > │ Test case 1. A. Time: 14L                                                    │

00:00:24 #760 [Verbose] > │ Test case 2. B. Time: 15L                                                    │

00:00:24 #761 [Verbose] > │ Test case 3. C. Time: 12L                                                    │

00:00:24 #762 [Verbose] > │ Test case 4. D. Time: 10L                                                    │

00:00:24 #763 [Verbose] > │ Test case 5. E. Time: 10L                                                    │

00:00:24 #764 [Verbose] > │ Test case 6. F. Time: 11L                                                    │

00:00:24 #765 [Verbose] > │ Test case 7. G. Time: 10L                                                    │

00:00:24 #766 [Verbose] > │ Test case 8. H. Time: 11L                                                    │

00:00:24 #767 [Verbose] > │ Test case 9. I. Time: 8L                                                     │

00:00:24 #768 [Verbose] > │ Test case 10. J. Time: 10L                                                   │

00:00:24 #769 [Verbose] > │ Test case 11. K. Time: 3L                                                    │

00:00:24 #770 [Verbose] > │                                                                              │

00:00:24 #771 [Verbose] > │ Input                                                                        │

00:00:24 #772 [Verbose] > │ | Expected	| Result	| Best                                                       │

00:00:24 #773 [Verbose] > │ ---                                                                          │

00:00:24 #774 [Verbose] > │ | ---     	| ---   	| ---                                                        │

00:00:24 #775 [Verbose] > │ abc                                                                          │

00:00:24 #776 [Verbose] > │ | abc     	| abc   	| (6, 1)                                                     │

00:00:24 #777 [Verbose] > │ accabb                                                                       │

00:00:24 #778 [Verbose] > │ | acb     	| acb   	| (6, 0)                                                     │

00:00:24 #779 [Verbose] > │ pprrqqpp                                                                     │

00:00:24 #780 [Verbose] > │ | prq     	| prq   	| (1, 1)                                                     │

00:00:24 #781 [Verbose] > │ aaaaaaaaaaaaaaccccccabbbbbbbaaacccbbbaaccccccccccacbbbbbbbbbbbbbcccccccbbbbb │

00:00:24 #782 [Verbose] > │ bbb	| acb     	| acb   	| (11, 3)                                                  │

00:00:24 #783 [Verbose] > │                                                                              │

00:00:24 #784 [Verbose] > │ Average Ranking                                                              │

00:00:24 #785 [Verbose] > │ Test case 9. Average Time: 2L                                                │

00:00:24 #786 [Verbose] > │ Test case 11. Average Time: 2L                                               │

00:00:24 #787 [Verbose] > │ Test case 5. Average Time: 3L                                                │

00:00:24 #788 [Verbose] > │ Test case 6. Average Time: 3L                                                │

00:00:24 #789 [Verbose] > │ Test case 7. Average Time: 3L                                                │

00:00:24 #790 [Verbose] > │ Test case 8. Average Time: 3L                                                │

00:00:24 #791 [Verbose] > │ Test case 10. Average Time: 3L                                               │

00:00:24 #792 [Verbose] > │ Test case 4. Average Time: 4L                                                │

00:00:24 #793 [Verbose] > │ Test case 1. Average Time: 5L                                                │

00:00:24 #794 [Verbose] > │ Test case 3. Average Time: 5L                                                │

00:00:24 #795 [Verbose] > │ Test case 2. Average Time: 6L                                                │

00:00:24 #796 [Verbose] > │                                                                              │

00:00:24 #797 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:24 #798 [Verbose] >

00:00:24 #799 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:24 #800 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:24 #801 [Verbose] > │ ## rotateStringsTests                                                        │

00:00:24 #802 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:24 #803 [Verbose] >

00:00:24 #804 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:24 #805 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:24 #806 [Verbose] > │ https://www.hackerrank.com/challenges/rotate-string/forum                    │

00:00:24 #807 [Verbose] > │                                                                              │

00:00:24 #808 [Verbose] > │ Test: RotateStrings                                                          │

00:00:24 #809 [Verbose] > │                                                                              │

00:00:24 #810 [Verbose] > │ Solution: abc                                                                │

00:00:24 #811 [Verbose] > │ Test case 1. A. Time: 1842L                                                  │

00:00:24 #812 [Verbose] > │ Test case 2. B. Time: 1846L                                                  │

00:00:24 #813 [Verbose] > │ Test case 3. C. Time: 1936L                                                  │

00:00:24 #814 [Verbose] > │ Test case 4. CA. Time: 2224L                                                 │

00:00:24 #815 [Verbose] > │ Test case 5. CB. Time: 2329L                                                 │

00:00:24 #816 [Verbose] > │ Test case 6. D. Time: 2474L                                                  │

00:00:24 #817 [Verbose] > │ Test case 7. E. Time: 1664L                                                  │

00:00:24 #818 [Verbose] > │ Test case 8. F. Time: 1517L                                                  │

00:00:24 #819 [Verbose] > │ Test case 9. FA. Time: 1651L                                                 │

00:00:24 #820 [Verbose] > │ Test case 10. FB. Time: 3764L                                                │

00:00:24 #821 [Verbose] > │ Test case 11. FC. Time: 5415L                                                │

00:00:24 #822 [Verbose] > │                                                                              │

00:00:24 #823 [Verbose] > │ Solution: abcde                                                              │

00:00:24 #824 [Verbose] > │ Test case 1. A. Time: 3356L                                                  │

00:00:24 #825 [Verbose] > │ Test case 2. B. Time: 2592L                                                  │

00:00:24 #826 [Verbose] > │ Test case 3. C. Time: 2346L                                                  │

00:00:24 #827 [Verbose] > │ Test case 4. CA. Time: 2997L                                                 │

00:00:24 #828 [Verbose] > │ Test case 5. CB. Time: 3061L                                                 │

00:00:24 #829 [Verbose] > │ Test case 6. D. Time: 4051L                                                  │

00:00:24 #830 [Verbose] > │ Test case 7. E. Time: 1905L                                                  │

00:00:24 #831 [Verbose] > │ Test case 8. F. Time: 1771L                                                  │

00:00:24 #832 [Verbose] > │ Test case 9. FA. Time: 2175L                                                 │

00:00:24 #833 [Verbose] > │ Test case 10. FB. Time: 3275L                                                │

00:00:24 #834 [Verbose] > │ Test case 11. FC. Time: 5266L                                                │

00:00:24 #835 [Verbose] > │                                                                              │

00:00:24 #836 [Verbose] > │ Solution: abcdefghi                                                          │

00:00:24 #837 [Verbose] > │ Test case 1. A. Time: 4492L                                                  │

00:00:24 #838 [Verbose] > │ Test case 2. B. Time: 3526L                                                  │

00:00:24 #839 [Verbose] > │ Test case 3. C. Time: 3583L                                                  │

00:00:24 #840 [Verbose] > │ Test case 4. CA. Time: 3711L                                                 │

00:00:24 #841 [Verbose] > │ Test case 5. CB. Time: 4783L                                                 │

00:00:24 #842 [Verbose] > │ Test case 6. D. Time: 7557L                                                  │

00:00:24 #843 [Verbose] > │ Test case 7. E. Time: 3452L                                                  │

00:00:24 #844 [Verbose] > │ Test case 8. F. Time: 3050L                                                  │

00:00:24 #845 [Verbose] > │ Test case 9. FA. Time: 3275L                                                 │

00:00:24 #846 [Verbose] > │ Test case 10. FB. Time: 4635L                                                │

00:00:24 #847 [Verbose] > │ Test case 11. FC. Time: 5616L                                                │

00:00:24 #848 [Verbose] > │                                                                              │

00:00:24 #849 [Verbose] > │ Solution: abab                                                               │

00:00:24 #850 [Verbose] > │ Test case 1. A. Time: 2093L                                                  │

00:00:24 #851 [Verbose] > │ Test case 2. B. Time: 1843L                                                  │

00:00:24 #852 [Verbose] > │ Test case 3. C. Time: 1746L                                                  │

00:00:24 #853 [Verbose] > │ Test case 4. CA. Time: 2085L                                                 │

00:00:24 #854 [Verbose] > │ Test case 5. CB. Time: 2139L                                                 │

00:00:24 #855 [Verbose] > │ Test case 6. D. Time: 2095L                                                  │

00:00:24 #856 [Verbose] > │ Test case 7. E. Time: 1723L                                                  │

00:00:24 #857 [Verbose] > │ Test case 8. F. Time: 1558L                                                  │

00:00:24 #858 [Verbose] > │ Test case 9. FA. Time: 1620L                                                 │

00:00:24 #859 [Verbose] > │ Test case 10. FB. Time: 2319L                                                │

00:00:24 #860 [Verbose] > │ Test case 11. FC. Time: 3918L                                                │

00:00:24 #861 [Verbose] > │                                                                              │

00:00:24 #862 [Verbose] > │ Solution: aa                                                                 │

00:00:24 #863 [Verbose] > │ Test case 1. A. Time: 1107L                                                  │

00:00:24 #864 [Verbose] > │ Test case 2. B. Time: 1241L                                                  │

00:00:24 #865 [Verbose] > │ Test case 3. C. Time: 1183L                                                  │

00:00:24 #866 [Verbose] > │ Test case 4. CA. Time: 1563L                                                 │

00:00:24 #867 [Verbose] > │ Test case 5. CB. Time: 1525L                                                 │

00:00:24 #868 [Verbose] > │ Test case 6. D. Time: 1591L                                                  │

00:00:24 #869 [Verbose] > │ Test case 7. E. Time: 1327L                                                  │

00:00:24 #870 [Verbose] > │ Test case 8. F. Time: 1151L                                                  │

00:00:24 #871 [Verbose] > │ Test case 9. FA. Time: 1180L                                                 │

00:00:24 #872 [Verbose] > │ Test case 10. FB. Time: 1733L                                                │

00:00:24 #873 [Verbose] > │ Test case 11. FC. Time: 2817L                                                │

00:00:24 #874 [Verbose] > │                                                                              │

00:00:24 #875 [Verbose] > │ Solution: z                                                                  │

00:00:24 #876 [Verbose] > │ Test case 1. A. Time: 816L                                                   │

00:00:24 #877 [Verbose] > │ Test case 2. B. Time: 745L                                                   │

00:00:24 #878 [Verbose] > │ Test case 3. C. Time: 928L                                                   │

00:00:24 #879 [Verbose] > │ Test case 4. CA. Time: 1375L                                                 │

00:00:24 #880 [Verbose] > │ Test case 5. CB. Time: 1029L                                                 │

00:00:24 #881 [Verbose] > │ Test case 6. D. Time: 852L                                                   │

00:00:24 #882 [Verbose] > │ Test case 7. E. Time: 712L                                                   │

00:00:24 #883 [Verbose] > │ Test case 8. F. Time: 263L                                                   │

00:00:24 #884 [Verbose] > │ Test case 9. FA. Time: 232L                                                  │

00:00:24 #885 [Verbose] > │ Test case 10. FB. Time: 773L                                                 │

00:00:24 #886 [Verbose] > │ Test case 11. FC. Time: 1789L                                                │

00:00:24 #887 [Verbose] > │                                                                              │

00:00:24 #888 [Verbose] > │ Input           | Expected                                                   │

00:00:24 #889 [Verbose] > │                                                                              │

00:00:24 #890 [Verbose] > │ | Result                                                                     │

00:00:24 #891 [Verbose] > │                                                                              │

00:00:24 #892 [Verbose] > │ | Best                                                                       │

00:00:24 #893 [Verbose] > │ ---             | ---                                                        │

00:00:24 #894 [Verbose] > │                                                                              │

00:00:24 #895 [Verbose] > │ | ---                                                                        │

00:00:24 #896 [Verbose] > │                                                                              │

00:00:24 #897 [Verbose] > │ | ---                                                                        │

00:00:24 #898 [Verbose] > │ abc             | bca cab abc                                                │

00:00:24 #899 [Verbose] > │                                                                              │

00:00:24 #900 [Verbose] > │ | bca cab abc                                                                │

00:00:24 #901 [Verbose] > │                                                                              │

00:00:24 #902 [Verbose] > │ | (8, 1517)                                                                  │

00:00:24 #903 [Verbose] > │ abcde           | bcdea cdeab deabc eabcd abcde                              │

00:00:24 #904 [Verbose] > │ | bcdea cdeab deabc eabcd abcde                                              │

00:00:24 #905 [Verbose] > │ | (8, 1771)                                                                  │

00:00:24 #906 [Verbose] > │ abcdefghi       | bcdefghia cdefghiab defghiabc efghiabcd fghiabcde          │

00:00:24 #907 [Verbose] > │ ghiabcdef hiabcdefg iabcdefgh abcdefghi       | bcdefghia cdefghiab          │

00:00:24 #908 [Verbose] > │ defghiabc efghiabcd fghiabcde ghiabcdef hiabcdefg iabcdefgh abcdefghi        │

00:00:24 #909 [Verbose] > │ | (8, 3050)                                                                  │

00:00:24 #910 [Verbose] > │ abab            | baba abab baba abab                                        │

00:00:24 #911 [Verbose] > │                                                                              │

00:00:24 #912 [Verbose] > │ | baba abab baba abab                                                        │

00:00:24 #913 [Verbose] > │                                                                              │

00:00:24 #914 [Verbose] > │ | (8, 1558)                                                                  │

00:00:24 #915 [Verbose] > │ aa              | aa aa                                                      │

00:00:24 #916 [Verbose] > │                                                                              │

00:00:24 #917 [Verbose] > │ | aa aa                                                                      │

00:00:24 #918 [Verbose] > │                                                                              │

00:00:24 #919 [Verbose] > │ | (1, 1107)                                                                  │

00:00:24 #920 [Verbose] > │ z               | z                                                          │

00:00:24 #921 [Verbose] > │                                                                              │

00:00:24 #922 [Verbose] > │ | z                                                                          │

00:00:24 #923 [Verbose] > │                                                                              │

00:00:24 #924 [Verbose] > │ | (9, 232)                                                                   │

00:00:24 #925 [Verbose] > │                                                                              │

00:00:24 #926 [Verbose] > │ Averages                                                                     │

00:00:24 #927 [Verbose] > │ Test case 1. Average Time: 2284L                                             │

00:00:24 #928 [Verbose] > │ Test case 2. Average Time: 1965L                                             │

00:00:24 #929 [Verbose] > │ Test case 3. Average Time: 1953L                                             │

00:00:24 #930 [Verbose] > │ Test case 4. Average Time: 2325L                                             │

00:00:24 #931 [Verbose] > │ Test case 5. Average Time: 2477L                                             │

00:00:24 #932 [Verbose] > │ Test case 6. Average Time: 3103L                                             │

00:00:24 #933 [Verbose] > │ Test case 7. Average Time: 1797L                                             │

00:00:24 #934 [Verbose] > │ Test case 8. Average Time: 1551L                                             │

00:00:24 #935 [Verbose] > │ Test case 9. Average Time: 1688L                                             │

00:00:24 #936 [Verbose] > │ Test case 10. Average Time: 2749L                                            │

00:00:24 #937 [Verbose] > │ Test case 11. Average Time: 4136L                                            │

00:00:24 #938 [Verbose] > │                                                                              │

00:00:24 #939 [Verbose] > │ Ranking                                                                      │

00:00:24 #940 [Verbose] > │ Test case 11. Average Time: 4136L                                            │

00:00:24 #941 [Verbose] > │ Test case 6. Average Time: 3103L                                             │

00:00:24 #942 [Verbose] > │ Test case 10. Average Time: 2749L                                            │

00:00:24 #943 [Verbose] > │ Test case 5. Average Time: 2477L                                             │

00:00:24 #944 [Verbose] > │ Test case 4. Average Time: 2325L                                             │

00:00:24 #945 [Verbose] > │ Test case 1. Average Time: 2284L                                             │

00:00:24 #946 [Verbose] > │ Test case 2. Average Time: 1965L                                             │

00:00:24 #947 [Verbose] > │ Test case 3. Average Time: 1953L                                             │

00:00:24 #948 [Verbose] > │ Test case 7. Average Time: 1797L                                             │

00:00:24 #949 [Verbose] > │ Test case 9. Average Time: 1688L                                             │

00:00:24 #950 [Verbose] > │ Test case 8. Average Time: 1551L                                             │

00:00:24 #951 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:24 #952 [Verbose] >

00:00:24 #953 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:00:24 #954 [Verbose] > //// test

00:00:24 #955 [Verbose] >

00:00:24 #956 [Verbose] > let solutions = [[

00:00:24 #957 [Verbose] >     "A",

00:00:24 #958 [Verbose] >     fun (input: string) ->

00:00:24 #959 [Verbose] >         let resultList =

00:00:24 #960 [Verbose] >             List.fold (fun acc x ->

00:00:24 #961 [Verbose] >                 let rotate (text: string) (letter: string) = text.Substring (1,

00:00:24 #962 [Verbose] > input.Length - 1) + letter

00:00:24 #963 [Verbose] >                 [[ rotate (if acc.IsEmpty then input else acc.Head) (string x)

00:00:24 #964 [Verbose] > ]] @ acc

00:00:24 #965 [Verbose] >             ) [[]] (Seq.toList input)

00:00:24 #966 [Verbose] >

00:00:24 #967 [Verbose] >         List.foldBack (fun acc x -> x + acc + " ") resultList ""

00:00:24 #968 [Verbose] >         |> fun x -> x.TrimEnd ()

00:00:24 #969 [Verbose] >

00:00:24 #970 [Verbose] >     "B",

00:00:24 #971 [Verbose] >     fun input ->

00:00:24 #972 [Verbose] >         input

00:00:24 #973 [Verbose] >         |> Seq.toList

00:00:24 #974 [Verbose] >         |> List.fold (fun (acc: string list) letter ->

00:00:24 #975 [Verbose] >             let last =

00:00:24 #976 [Verbose] >                 if acc.IsEmpty

00:00:24 #977 [Verbose] >                 then input

00:00:24 #978 [Verbose] >                 else acc.Head

00:00:24 #979 [Verbose] >

00:00:24 #980 [Verbose] >             let item = last.[[1 .. input.Length - 1]] + string letter

00:00:24 #981 [Verbose] >

00:00:24 #982 [Verbose] >             item :: acc

00:00:24 #983 [Verbose] >         ) [[]]

00:00:24 #984 [Verbose] >         |> List.rev

00:00:24 #985 [Verbose] >         |> String.concat " "

00:00:24 #986 [Verbose] >

00:00:24 #987 [Verbose] >     "C",

00:00:24 #988 [Verbose] >     fun input ->

00:00:24 #989 [Verbose] >         input

00:00:24 #990 [Verbose] >         |> Seq.toList

00:00:24 #991 [Verbose] >         |> List.fold (fun (acc: string list) letter -> acc.Head.[[ 1 ..

00:00:24 #992 [Verbose] > input.Length - 1 ]] + string letter :: acc) [[ input ]]

00:00:24 #993 [Verbose] >         |> List.rev

00:00:24 #994 [Verbose] >         |> List.skip 1

00:00:24 #995 [Verbose] >         |> String.concat " "

00:00:24 #996 [Verbose] >

00:00:24 #997 [Verbose] >     "CA",

00:00:24 #998 [Verbose] >     fun input ->

00:00:24 #999 [Verbose] >         input

00:00:24 #1000 [Verbose] >         |> Seq.fold (fun (acc: string list) letter -> acc.Head.[[ 1 ..

00:00:24 #1001 [Verbose] > input.Length - 1 ]] + string letter :: acc) [[ input ]]

00:00:24 #1002 [Verbose] >         |> Seq.rev

00:00:24 #1003 [Verbose] >         |> Seq.skip 1

00:00:24 #1004 [Verbose] >         |> String.concat " "

00:00:24 #1005 [Verbose] >

00:00:24 #1006 [Verbose] >     "CB",

00:00:24 #1007 [Verbose] >     fun input ->

00:00:24 #1008 [Verbose] >         input

00:00:24 #1009 [Verbose] >         |> Seq.toArray

00:00:24 #1010 [Verbose] >         |> Array.fold (fun (acc: string[[]]) letter -> acc |> Array.append [[|

00:00:24 #1011 [Verbose] > acc.[[0]].[[ 1 .. input.Length - 1 ]] + string letter |]]) [[| input |]]

00:00:24 #1012 [Verbose] >         |> Array.rev

00:00:24 #1013 [Verbose] >         |> Array.skip 1

00:00:24 #1014 [Verbose] >         |> String.concat " "

00:00:24 #1015 [Verbose] >

00:00:24 #1016 [Verbose] >     "D",

00:00:24 #1017 [Verbose] >     fun input ->

00:00:24 #1018 [Verbose] >         input

00:00:24 #1019 [Verbose] >         |> Seq.toList

00:00:24 #1020 [Verbose] >         |> fun list ->

00:00:24 #1021 [Verbose] >             let rec loop (acc: char list list) = function

00:00:24 #1022 [Verbose] >                 | _ when acc.Length = list.Length -> acc

00:00:24 #1023 [Verbose] >                 | head :: tail ->

00:00:24 #1024 [Verbose] >                     let item = tail @ [[ head ]]

00:00:24 #1025 [Verbose] >                     loop (item :: acc) item

00:00:24 #1026 [Verbose] >                 | [[]] -> [[]]

00:00:24 #1027 [Verbose] >             loop [[]] list

00:00:24 #1028 [Verbose] >         |> List.rev

00:00:24 #1029 [Verbose] >         |> List.map (List.toArray >> String)

00:00:24 #1030 [Verbose] >         |> String.concat " "

00:00:24 #1031 [Verbose] >

00:00:24 #1032 [Verbose] >     "E",

00:00:24 #1033 [Verbose] >     fun input ->

00:00:24 #1034 [Verbose] >         input

00:00:24 #1035 [Verbose] >         |> Seq.toList

00:00:24 #1036 [Verbose] >         |> fun list ->

00:00:24 #1037 [Verbose] >             let rec loop (last: string) = function

00:00:24 #1038 [Verbose] >                 | head :: tail ->

00:00:24 #1039 [Verbose] >                     let item = last.[[1 .. input.Length - 1]] + string head

00:00:24 #1040 [Verbose] >                     item :: loop item tail

00:00:24 #1041 [Verbose] >                 | [[]] -> [[]]

00:00:24 #1042 [Verbose] >             loop input list

00:00:24 #1043 [Verbose] >         |> String.concat " "

00:00:24 #1044 [Verbose] >

00:00:24 #1045 [Verbose] >     "F",

00:00:24 #1046 [Verbose] >     fun input ->

00:00:24 #1047 [Verbose] >         Array.singleton 0

00:00:24 #1048 [Verbose] >         |> Array.append [[| 1 .. input.Length - 1 |]]

00:00:24 #1049 [Verbose] >         |> Array.map (fun i -> input.[[ i .. ]] + input.[[ .. i - 1 ]])

00:00:24 #1050 [Verbose] >         |> String.concat " "

00:00:24 #1051 [Verbose] >

00:00:24 #1052 [Verbose] >     "FA",

00:00:24 #1053 [Verbose] >     fun input ->

00:00:24 #1054 [Verbose] >         List.singleton 0

00:00:24 #1055 [Verbose] >         |> List.append [[ 1 .. input.Length - 1 ]]

00:00:24 #1056 [Verbose] >         |> List.map (fun i -> input.[[ i .. ]] + input.[[ .. i - 1 ]])

00:00:24 #1057 [Verbose] >         |> String.concat " "

00:00:24 #1058 [Verbose] >

00:00:24 #1059 [Verbose] >     "FB",

00:00:24 #1060 [Verbose] >     fun input ->

00:00:24 #1061 [Verbose] >         Seq.singleton 0

00:00:24 #1062 [Verbose] >         |> Seq.append (seq { 1 .. input.Length - 1 })

00:00:24 #1063 [Verbose] >         |> Seq.map (fun i -> input.[[ i .. ]] + input.[[ .. i - 1 ]])

00:00:24 #1064 [Verbose] >         |> String.concat " "

00:00:24 #1065 [Verbose] >

00:00:24 #1066 [Verbose] >     "FC",

00:00:24 #1067 [Verbose] >     fun input ->

00:00:24 #1068 [Verbose] >         Array.singleton 0

00:00:24 #1069 [Verbose] >         |> Array.append [[| 1 .. input.Length - 1 |]]

00:00:24 #1070 [Verbose] >         |> Array.Parallel.map (fun i -> input.[[ i .. ]] + input.[[ .. i - 1 ]])

00:00:24 #1071 [Verbose] >         |> String.concat " "

00:00:24 #1072 [Verbose] > ]]

00:00:24 #1073 [Verbose] > let testCases = seq {

00:00:24 #1074 [Verbose] >     "abc", "bca cab abc"

00:00:24 #1075 [Verbose] >     "abcde", "bcdea cdeab deabc eabcd abcde"

00:00:24 #1076 [Verbose] >     "abcdefghi", "bcdefghia cdefghiab defghiabc efghiabcd fghiabcde ghiabcdef

00:00:24 #1077 [Verbose] > hiabcdefg iabcdefgh abcdefghi"

00:00:24 #1078 [Verbose] >     "abab", "baba abab baba abab"

00:00:24 #1079 [Verbose] >     "aa", "aa aa"

00:00:24 #1080 [Verbose] >     "z", "z"

00:00:24 #1081 [Verbose] > }

00:00:24 #1082 [Verbose] > let rec rotateStringsTests = runAll (nameof rotateStringsTests) _count solutions

00:00:24 #1083 [Verbose] > testCases

00:00:24 #1084 [Verbose] > rotateStringsTests

00:00:24 #1085 [Verbose] > |> sortResultList

00:00:35 #1086 [Verbose] >

00:00:35 #1087 [Verbose] > ╭─[ 10.90s - stdout ]──────────────────────────────────────────────────────────╮

00:00:35 #1088 [Verbose] > │                                                                              │

00:00:35 #1089 [Verbose] > │                                                                              │

00:00:35 #1090 [Verbose] > │ Test: rotateStringsTests                                                     │

00:00:35 #1091 [Verbose] > │                                                                              │

00:00:35 #1092 [Verbose] > │ Solution: abc                                                                │

00:00:35 #1093 [Verbose] > │ Test case 1. A. Time: 2L                                                     │

00:00:35 #1094 [Verbose] > │ Test case 2. B. Time: 2L                                                     │

00:00:35 #1095 [Verbose] > │ Test case 3. C. Time: 3L                                                     │

00:00:35 #1096 [Verbose] > │ Test case 4. CA. Time: 6L                                                    │

00:00:35 #1097 [Verbose] > │ Test case 5. CB. Time: 3L                                                    │

00:00:35 #1098 [Verbose] > │ Test case 6. D. Time: 3L                                                     │

00:00:35 #1099 [Verbose] > │ Test case 7. E. Time: 1L                                                     │

00:00:35 #1100 [Verbose] > │ Test case 8. F. Time: 2L                                                     │

00:00:35 #1101 [Verbose] > │ Test case 9. FA. Time: 3L                                                    │

00:00:35 #1102 [Verbose] > │ Test case 10. FB. Time: 10L                                                  │

00:00:35 #1103 [Verbose] > │ Test case 11. FC. Time: 9L                                                   │

00:00:35 #1104 [Verbose] > │                                                                              │

00:00:35 #1105 [Verbose] > │ Solution: abcde                                                              │

00:00:35 #1106 [Verbose] > │ Test case 1. A. Time: 1L                                                     │

00:00:35 #1107 [Verbose] > │ Test case 2. B. Time: 1L                                                     │

00:00:35 #1108 [Verbose] > │ Test case 3. C. Time: 1L                                                     │

00:00:35 #1109 [Verbose] > │ Test case 4. CA. Time: 2L                                                    │

00:00:35 #1110 [Verbose] > │ Test case 5. CB. Time: 1L                                                    │

00:00:35 #1111 [Verbose] > │ Test case 6. D. Time: 5L                                                     │

00:00:35 #1112 [Verbose] > │ Test case 7. E. Time: 2L                                                     │

00:00:35 #1113 [Verbose] > │ Test case 8. F. Time: 1L                                                     │

00:00:35 #1114 [Verbose] > │ Test case 9. FA. Time: 1L                                                    │

00:00:35 #1115 [Verbose] > │ Test case 10. FB. Time: 9L                                                   │

00:00:35 #1116 [Verbose] > │ Test case 11. FC. Time: 10L                                                  │

00:00:35 #1117 [Verbose] > │                                                                              │

00:00:35 #1118 [Verbose] > │ Solution: abcdefghi                                                          │

00:00:35 #1119 [Verbose] > │ Test case 1. A. Time: 6L                                                     │

00:00:35 #1120 [Verbose] > │ Test case 2. B. Time: 4L                                                     │

00:00:35 #1121 [Verbose] > │ Test case 3. C. Time: 1L                                                     │

00:00:35 #1122 [Verbose] > │ Test case 4. CA. Time: 6L                                                    │

00:00:35 #1123 [Verbose] > │ Test case 5. CB. Time: 3L                                                    │

00:00:35 #1124 [Verbose] > │ Test case 6. D. Time: 8L                                                     │

00:00:35 #1125 [Verbose] > │ Test case 7. E. Time: 3L                                                     │

00:00:35 #1126 [Verbose] > │ Test case 8. F. Time: 3L                                                     │

00:00:35 #1127 [Verbose] > │ Test case 9. FA. Time: 4L                                                    │

00:00:35 #1128 [Verbose] > │ Test case 10. FB. Time: 5L                                                   │

00:00:35 #1129 [Verbose] > │ Test case 11. FC. Time: 10L                                                  │

00:00:35 #1130 [Verbose] > │                                                                              │

00:00:35 #1131 [Verbose] > │ Solution: abab                                                               │

00:00:35 #1132 [Verbose] > │ Test case 1. A. Time: 1L                                                     │

00:00:35 #1133 [Verbose] > │ Test case 2. B. Time: 0L                                                     │

00:00:35 #1134 [Verbose] > │ Test case 3. C. Time: 0L                                                     │

00:00:35 #1135 [Verbose] > │ Test case 4. CA. Time: 2L                                                    │

00:00:35 #1136 [Verbose] > │ Test case 5. CB. Time: 1L                                                    │

00:00:35 #1137 [Verbose] > │ Test case 6. D. Time: 3L                                                     │

00:00:35 #1138 [Verbose] > │ Test case 7. E. Time: 1L                                                     │

00:00:35 #1139 [Verbose] > │ Test case 8. F. Time: 0L                                                     │

00:00:35 #1140 [Verbose] > │ Test case 9. FA. Time: 1L                                                    │

00:00:35 #1141 [Verbose] > │ Test case 10. FB. Time: 2L                                                   │

00:00:35 #1142 [Verbose] > │ Test case 11. FC. Time: 6L                                                   │

00:00:35 #1143 [Verbose] > │                                                                              │

00:00:35 #1144 [Verbose] > │ Solution: aa                                                                 │

00:00:35 #1145 [Verbose] > │ Test case 1. A. Time: 0L                                                     │

00:00:35 #1146 [Verbose] > │ Test case 2. B. Time: 0L                                                     │

00:00:35 #1147 [Verbose] > │ Test case 3. C. Time: 0L                                                     │

00:00:35 #1148 [Verbose] > │ Test case 4. CA. Time: 1L                                                    │

00:00:35 #1149 [Verbose] > │ Test case 5. CB. Time: 1L                                                    │

00:00:35 #1150 [Verbose] > │ Test case 6. D. Time: 1L                                                     │

00:00:35 #1151 [Verbose] > │ Test case 7. E. Time: 1L                                                     │

00:00:35 #1152 [Verbose] > │ Test case 8. F. Time: 0L                                                     │

00:00:35 #1153 [Verbose] > │ Test case 9. FA. Time: 1L                                                    │

00:00:35 #1154 [Verbose] > │ Test case 10. FB. Time: 2L                                                   │

00:00:35 #1155 [Verbose] > │ Test case 11. FC. Time: 9L                                                   │

00:00:35 #1156 [Verbose] > │                                                                              │

00:00:35 #1157 [Verbose] > │ Solution: z                                                                  │

00:00:35 #1158 [Verbose] > │ Test case 1. A. Time: 0L                                                     │

00:00:35 #1159 [Verbose] > │ Test case 2. B. Time: 0L                                                     │

00:00:35 #1160 [Verbose] > │ Test case 3. C. Time: 0L                                                     │

00:00:35 #1161 [Verbose] > │ Test case 4. CA. Time: 1L                                                    │

00:00:35 #1162 [Verbose] > │ Test case 5. CB. Time: 0L                                                    │

00:00:35 #1163 [Verbose] > │ Test case 6. D. Time: 0L                                                     │

00:00:35 #1164 [Verbose] > │ Test case 7. E. Time: 0L                                                     │

00:00:35 #1165 [Verbose] > │ Test case 8. F. Time: 0L                                                     │

00:00:35 #1166 [Verbose] > │ Test case 9. FA. Time: 0L                                                    │

00:00:35 #1167 [Verbose] > │ Test case 10. FB. Time: 1L                                                   │

00:00:35 #1168 [Verbose] > │ Test case 11. FC. Time: 4L                                                   │

00:00:35 #1169 [Verbose] > │                                                                              │

00:00:35 #1170 [Verbose] > │ Input    	| Expected                                                           │

00:00:35 #1171 [Verbose] > │                                                                              │

00:00:35 #1172 [Verbose] > │ | Result                                                                     │

00:00:35 #1173 [Verbose] > │                                                                              │

00:00:35 #1174 [Verbose] > │ | Best                                                                       │

00:00:35 #1175 [Verbose] > │ ---      	| ---                                                                │

00:00:35 #1176 [Verbose] > │                                                                              │

00:00:35 #1177 [Verbose] > │ | ---                                                                        │

00:00:35 #1178 [Verbose] > │                                                                              │

00:00:35 #1179 [Verbose] > │ | ---                                                                        │

00:00:35 #1180 [Verbose] > │ abc      	| bca cab abc                                                        │

00:00:35 #1181 [Verbose] > │                                                                              │

00:00:35 #1182 [Verbose] > │ | bca cab abc                                                                │

00:00:35 #1183 [Verbose] > │                                                                              │

00:00:35 #1184 [Verbose] > │ | (7, 1)                                                                     │

00:00:35 #1185 [Verbose] > │ abcde    	| bcdea cdeab deabc eabcd abcde                                      │

00:00:35 #1186 [Verbose] > │ | bcdea cdeab deabc eabcd abcde                                              │

00:00:35 #1187 [Verbose] > │ | (1, 1)                                                                     │

00:00:35 #1188 [Verbose] > │ abcdefghi	| bcdefghia cdefghiab defghiabc efghiabcd fghiabcde ghiabcdef        │

00:00:35 #1189 [Verbose] > │ hiabcdefg iabcdefgh abcdefghi	| bcdefghia cdefghiab defghiabc efghiabcd        │

00:00:35 #1190 [Verbose] > │ fghiabcde ghiabcdef hiabcdefg iabcdefgh abcdefghi	| (3, 1)                     │

00:00:35 #1191 [Verbose] > │ abab     	| baba abab baba abab                                                │

00:00:35 #1192 [Verbose] > │ | baba abab baba abab                                                        │

00:00:35 #1193 [Verbose] > │ | (2, 0)                                                                     │

00:00:35 #1194 [Verbose] > │ aa       	| aa aa                                                              │

00:00:35 #1195 [Verbose] > │                                                                              │

00:00:35 #1196 [Verbose] > │ | aa aa                                                                      │

00:00:35 #1197 [Verbose] > │                                                                              │

00:00:35 #1198 [Verbose] > │ | (1, 0)                                                                     │

00:00:35 #1199 [Verbose] > │ z        	| z                                                                  │

00:00:35 #1200 [Verbose] > │                                                                              │

00:00:35 #1201 [Verbose] > │ | z                                                                          │

00:00:35 #1202 [Verbose] > │                                                                              │

00:00:35 #1203 [Verbose] > │ | (1, 0)                                                                     │

00:00:35 #1204 [Verbose] > │                                                                              │

00:00:35 #1205 [Verbose] > │ Average Ranking                                                              │

00:00:35 #1206 [Verbose] > │ Test case 3. Average Time: 0L                                                │

00:00:35 #1207 [Verbose] > │ Test case 1. Average Time: 1L                                                │

00:00:35 #1208 [Verbose] > │ Test case 2. Average Time: 1L                                                │

00:00:35 #1209 [Verbose] > │ Test case 5. Average Time: 1L                                                │

00:00:35 #1210 [Verbose] > │ Test case 7. Average Time: 1L                                                │

00:00:35 #1211 [Verbose] > │ Test case 8. Average Time: 1L                                                │

00:00:35 #1212 [Verbose] > │ Test case 9. Average Time: 1L                                                │

00:00:35 #1213 [Verbose] > │ Test case 4. Average Time: 3L                                                │

00:00:35 #1214 [Verbose] > │ Test case 6. Average Time: 3L                                                │

00:00:35 #1215 [Verbose] > │ Test case 10. Average Time: 4L                                               │

00:00:35 #1216 [Verbose] > │ Test case 11. Average Time: 8L                                               │

00:00:35 #1217 [Verbose] > │                                                                              │

00:00:35 #1218 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:35 #1219 [Verbose] >

00:00:35 #1220 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:00:35 #1221 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:00:35 #1222 [Verbose] > │ ## rotate_strings_tests                                                      │

00:00:35 #1223 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:00:35 #1224 [Verbose] >

00:00:35 #1225 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:00:35 #1226 [Verbose] > // // test

00:00:35 #1227 [Verbose] > // // timeout=60000

00:00:35 #1228 [Verbose] > // // print_code=true

00:00:35 #1229 [Verbose] >

00:00:35 #1230 [Verbose] > inl get_solutions () =

00:00:35 #1231 [Verbose] >     [[

00:00:35 #1232 [Verbose] >         // "A",

00:00:35 #1233 [Verbose] >         // fun (input : string) =>

00:00:35 #1234 [Verbose] >         //     let resultList =

00:00:35 #1235 [Verbose] >         //         List.fold (fun acc x =>

00:00:35 #1236 [Verbose] >         //             let rotate (text : string) (letter : string) =

00:00:35 #1237 [Verbose] > text.Substring (1, input.Length - 1) + letter

00:00:35 #1238 [Verbose] >         //             [[ rotate (if acc.IsEmpty then input else acc.Head)

00:00:35 #1239 [Verbose] > (string x) ]] /@ acc

00:00:35 #1240 [Verbose] >         //         ) [[]] (Seq.toList input)

00:00:35 #1241 [Verbose] >

00:00:35 #1242 [Verbose] >         //     List.foldBack (fun acc x => x + acc + " ") resultList ""

00:00:35 #1243 [Verbose] >         //     |> fun x => x.TrimEnd ()

00:00:35 #1244 [Verbose] >

00:00:35 #1245 [Verbose] >         // "B",

00:00:35 #1246 [Verbose] >         // fun input =>

00:00:35 #1247 [Verbose] >         //     input

00:00:35 #1248 [Verbose] >         //     |> Seq.toList

00:00:35 #1249 [Verbose] >         //     |> List.fold (fun (acc : string list) letter =>

00:00:35 #1250 [Verbose] >         //         let last =

00:00:35 #1251 [Verbose] >         //             if acc.IsEmpty

00:00:35 #1252 [Verbose] >         //             then input

00:00:35 #1253 [Verbose] >         //             else acc.Head

00:00:35 #1254 [Verbose] >

00:00:35 #1255 [Verbose] >         //         let item = last.[[1 .. input.Length - 1]] + string letter

00:00:35 #1256 [Verbose] >

00:00:35 #1257 [Verbose] >         //         item :: acc

00:00:35 #1258 [Verbose] >         //     ) [[]]

00:00:35 #1259 [Verbose] >         //     |> List.rev

00:00:35 #1260 [Verbose] >         //     |> String.concat " "

00:00:35 #1261 [Verbose] >

00:00:35 #1262 [Verbose] >         // "C",

00:00:35 #1263 [Verbose] >         // fun input =>

00:00:35 #1264 [Verbose] >         //     input

00:00:35 #1265 [Verbose] >         //     |> Seq.toList

00:00:35 #1266 [Verbose] >         //     |> List.fold (fun (acc : list string) letter => acc.Head.[[ 1 ..

00:00:35 #1267 [Verbose] > input.Length - 1 ]] + string letter :: acc) [[ input ]]

00:00:35 #1268 [Verbose] >         //     |> List.rev

00:00:35 #1269 [Verbose] >         //     |> List.skip 1

00:00:35 #1270 [Verbose] >         //     |> String.concat " "

00:00:35 #1271 [Verbose] >

00:00:35 #1272 [Verbose] >         // "CA",

00:00:35 #1273 [Verbose] >         // fun input =>

00:00:35 #1274 [Verbose] >         //     input

00:00:35 #1275 [Verbose] >         //     |> Seq.fold (fun (acc : list string) letter => acc.Head.[[ 1 ..

00:00:35 #1276 [Verbose] > input.Length - 1 ]] + string letter :: acc) [[ input ]]

00:00:35 #1277 [Verbose] >         //     |> Seq.rev

00:00:35 #1278 [Verbose] >         //     |> Seq.skip 1

00:00:35 #1279 [Verbose] >         //     |> String.concat " "

00:00:35 #1280 [Verbose] >

00:00:35 #1281 [Verbose] >         // "CB",

00:00:35 #1282 [Verbose] >         // fun input =>

00:00:35 #1283 [Verbose] >         //     input

00:00:35 #1284 [Verbose] >         //     |> Seq.toArray

00:00:35 #1285 [Verbose] >         //     |> Array.fold (fun (acc : a _ string) letter => acc |>

00:00:35 #1286 [Verbose] > Array.append (a ;[[ acc.[[0]].[[ 1 .. input.Length - 1 ]] + string letter ]]))

00:00:35 #1287 [Verbose] > (a ;[[ input ]])

00:00:35 #1288 [Verbose] >         //     |> Array.rev

00:00:35 #1289 [Verbose] >         //     |> Array.skip 1

00:00:35 #1290 [Verbose] >         //     |> String.concat " "

00:00:35 #1291 [Verbose] >

00:00:35 #1292 [Verbose] >         // "D",

00:00:35 #1293 [Verbose] >         // fun input =>

00:00:35 #1294 [Verbose] >         //     input

00:00:35 #1295 [Verbose] >         //     |> Seq.toList

00:00:35 #1296 [Verbose] >         //     |> fun list =>

00:00:35 #1297 [Verbose] >         //         let rec loop (acc : list (list char)) = function

00:00:35 #1298 [Verbose] >         //             | _ when acc.Length = list.Length => acc

00:00:35 #1299 [Verbose] >         //             | head :: tail =>

00:00:35 #1300 [Verbose] >         //                 let item = tail /@ [[ head ]]

00:00:35 #1301 [Verbose] >         //                 loop (item :: acc) item

00:00:35 #1302 [Verbose] >         //             | [[]] => [[]]

00:00:35 #1303 [Verbose] >         //         loop [[]] list

00:00:35 #1304 [Verbose] >         //     |> List.rev

00:00:35 #1305 [Verbose] >         //     |> List.map (List.toArray >> String)

00:00:35 #1306 [Verbose] >         //     |> String.concat " "

00:00:35 #1307 [Verbose] >

00:00:35 #1308 [Verbose] >         // "E",

00:00:35 #1309 [Verbose] >         // fun input =>

00:00:35 #1310 [Verbose] >         //     input

00:00:35 #1311 [Verbose] >         //     |> Seq.toList

00:00:35 #1312 [Verbose] >         //     |> fun list =>

00:00:35 #1313 [Verbose] >         //         let rec loop (last : string) = function

00:00:35 #1314 [Verbose] >         //             | head :: tail =>

00:00:35 #1315 [Verbose] >         //                 let item = last.[[1 .. input.Length - 1]] + string

00:00:35 #1316 [Verbose] > head

00:00:35 #1317 [Verbose] >         //                 item :: loop item tail

00:00:35 #1318 [Verbose] >         //             | [[]] => [[]]

00:00:35 #1319 [Verbose] >         //         loop input list

00:00:35 #1320 [Verbose] >         //     |> String.concat " "

00:00:35 #1321 [Verbose] >

00:00:35 #1322 [Verbose] >         "F",

00:00:35 #1323 [Verbose] >         fun input =>

00:00:35 #1324 [Verbose] >         // Array.singleton 0

00:00:35 #1325 [Verbose] >         // |> Array.append [[| 1 .. input.Length - 1 |]]

00:00:35 #1326 [Verbose] >         // |> Array.map (fun i -> input.[[ i .. ]] + input.[[ .. i - 1 ]])

00:00:35 #1327 [Verbose] >         // |> String.concat " "

00:00:35 #1328 [Verbose] >             inl input_length = input |> sm.length

00:00:35 #1329 [Verbose] >             am.singleton 0i32

00:00:35 #1330 [Verbose] >             |> am.append (am'.init_series 1 (input_length - 1) 1)

00:00:35 #1331 [Verbose] >             |> am.map (fun i =>

00:00:35 #1332 [Verbose] >                 inl a = sm.slice input { from = i; to = input_length - 1 } :

00:00:35 #1333 [Verbose] > string

00:00:35 #1334 [Verbose] >                 inl b = sm.slice input { from = 0; to = i - 1 } : string

00:00:35 #1335 [Verbose] >                 $"!a + !b" : string

00:00:35 #1336 [Verbose] >             )

00:00:35 #1337 [Verbose] >             |> sm'.concat " "

00:00:35 #1338 [Verbose] >

00:00:35 #1339 [Verbose] >         "FA",

00:00:35 #1340 [Verbose] >         fun input =>

00:00:35 #1341 [Verbose] >         //     List.singleton 0

00:00:35 #1342 [Verbose] >         //     |> List.append [[ 1 .. input.Length - 1 ]]

00:00:35 #1343 [Verbose] >         //   //  |> List.map (fun i => input.[[ i .. ]] + input.[[ .. i - 1 ]])

00:00:35 #1344 [Verbose] >         //     |> String.concat " "

00:00:35 #1345 [Verbose] >             inl input_length = input |> sm.length

00:00:35 #1346 [Verbose] >             listm.singleton 0i32

00:00:35 #1347 [Verbose] >             |> listm.append (listm'.init_series 1 (input_length - 1) 1)

00:00:35 #1348 [Verbose] >             |> listm.map (fun i =>

00:00:35 #1349 [Verbose] >                 inl a = sm.slice input { from = i; to = input_length - 1 } :

00:00:35 #1350 [Verbose] > string

00:00:35 #1351 [Verbose] >                 inl b = if i = 0 then "" else sm.slice input { from = 0; to = i

00:00:35 #1352 [Verbose] > - 1 } : string

00:00:35 #1353 [Verbose] >                 $"!a + !b" : string

00:00:35 #1354 [Verbose] >             )

00:00:35 #1355 [Verbose] >             |> listm.toArray

00:00:35 #1356 [Verbose] >             |> fun x => x : a i32 _

00:00:35 #1357 [Verbose] >             |> sm'.concat " "

00:00:35 #1358 [Verbose] >

00:00:35 #1359 [Verbose] >         // "FB",

00:00:35 #1360 [Verbose] >         // fun input =>

00:00:35 #1361 [Verbose] >         //     Seq.singleton 0

00:00:35 #1362 [Verbose] >         //   //  |> Seq.append (seq { 1 .. input.Length - 1 })

00:00:35 #1363 [Verbose] >         //   //  |> Seq.map (fun i => input.[[ i .. ]] + input.[[ .. i - 1 ]])

00:00:35 #1364 [Verbose] >         //     |> String.concat " "

00:00:35 #1365 [Verbose] >

00:00:35 #1366 [Verbose] >         // "FC",

00:00:35 #1367 [Verbose] >         // fun input =>

00:00:35 #1368 [Verbose] >         //     Array.singleton 0

00:00:35 #1369 [Verbose] >         //     |> Array.append (a ;[[ 1 .. input.Length - 1 ]])

00:00:35 #1370 [Verbose] >         // //    |> Array.Parallel.map (fun i => input.[[ i .. ]] + input.[[ ..

00:00:35 #1371 [Verbose] > i - 1 ]])

00:00:35 #1372 [Verbose] >         //     |> String.concat " "

00:00:35 #1373 [Verbose] >     ]]

00:00:35 #1374 [Verbose] >

00:00:35 #1375 [Verbose] > inl rec rotate_strings_tests () =

00:00:35 #1376 [Verbose] >     inl test_cases = [[

00:00:35 #1377 [Verbose] >         "abc", "bca cab abc"

00:00:35 #1378 [Verbose] >         "abcde", "bcdea cdeab deabc eabcd abcde"

00:00:35 #1379 [Verbose] >         "abcdefghi", "bcdefghia cdefghiab defghiabc efghiabcd fghiabcde

00:00:35 #1380 [Verbose] > ghiabcdef hiabcdefg iabcdefgh abcdefghi"

00:00:35 #1381 [Verbose] >         "abab", "baba abab baba abab"

00:00:35 #1382 [Verbose] >         "aa", "aa aa"

00:00:35 #1383 [Verbose] >         "z", "z"

00:00:35 #1384 [Verbose] >     ]]

00:00:35 #1385 [Verbose] >

00:00:35 #1386 [Verbose] >     inl solutions = get_solutions ()

00:00:35 #1387 [Verbose] >

00:00:35 #1388 [Verbose] >     // inl is_fast () = true

00:00:35 #1389 [Verbose] >

00:00:35 #1390 [Verbose] >     inl count =

00:00:35 #1391 [Verbose] >         if is_fast ()

00:00:35 #1392 [Verbose] >         then 1000i32

00:00:35 #1393 [Verbose] >         else 2000000i32

00:00:35 #1394 [Verbose] >

00:00:35 #1395 [Verbose] >     run_all (nameof rotate_strings_tests) count solutions test_cases

00:00:35 #1396 [Verbose] >     |> sort_result_list

00:00:35 #1397 [Verbose] >

00:00:35 #1398 [Verbose] > rotate_strings_tests ()

00:00:35 #1399 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1651-5480-8087-8c874568d565\main.spi

00:01:07 #1400 [Verbose] >

00:01:07 #1401 [Verbose] > ╭─[ 31.88s - stdout ]──────────────────────────────────────────────────────────╮

00:01:07 #1402 [Verbose] > │ type UH0 =                                                                   │

00:01:07 #1403 [Verbose] > │     | UH0_0 of string * string * UH0                                         │

00:01:07 #1404 [Verbose] > │     | UH0_1                                                                  │

00:01:07 #1405 [Verbose] > │ and Mut0 = {mutable l0 : uint64}                                             │

00:01:07 #1406 [Verbose] > │ and Mut1 = {mutable l0 : int32}                                              │

00:01:07 #1407 [Verbose] > │ and UH1 =                                                                    │

00:01:07 #1408 [Verbose] > │     | UH1_0 of int32 * UH1                                                   │

00:01:07 #1409 [Verbose] > │     | UH1_1                                                                  │

00:01:07 #1410 [Verbose] > │ and UH2 =                                                                    │

00:01:07 #1411 [Verbose] > │     | UH2_0 of string * UH2                                                  │

00:01:07 #1412 [Verbose] > │     | UH2_1                                                                  │

00:01:07 #1413 [Verbose] > │ and UH3 =                                                                    │

00:01:07 #1414 [Verbose] > │     | UH3_0 of int32 * string * (string -> string) * UH3                     │

00:01:07 #1415 [Verbose] > │     | UH3_1                                                                  │

00:01:07 #1416 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:01:07 #1417 [Verbose] > │     | US0_0                                                                  │

00:01:07 #1418 [Verbose] > │     | US0_1 of f1_0 : System.ConsoleColor                                    │

00:01:07 #1419 [Verbose] > │ and UH4 =                                                                    │

00:01:07 #1420 [Verbose] > │     | UH4_0 of int64 * int64 * UH4                                           │

00:01:07 #1421 [Verbose] > │     | UH4_1                                                                  │

00:01:07 #1422 [Verbose] > │ and Mut2 = {mutable l0 : uint64; mutable l1 : UH4; mutable l2 : int64}       │

00:01:07 #1423 [Verbose] > │ and UH5 =                                                                    │

00:01:07 #1424 [Verbose] > │     | UH5_0 of UH2 * US0 * UH5                                               │

00:01:07 #1425 [Verbose] > │     | UH5_1                                                                  │

00:01:07 #1426 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:01:07 #1427 [Verbose] > │     | US1_0                                                                  │

00:01:07 #1428 [Verbose] > │     | US1_1 of f1_0 : int64                                                  │

00:01:07 #1429 [Verbose] > │ and UH6 =                                                                    │

00:01:07 #1430 [Verbose] > │     | UH6_0 of int32 * int64 * UH6                                           │

00:01:07 #1431 [Verbose] > │     | UH6_1                                                                  │

00:01:07 #1432 [Verbose] > │ and Mut3 = {mutable l0 : uint64; mutable l1 : UH6; mutable l2 : int32}       │

00:01:07 #1433 [Verbose] > │ and UH7 =                                                                    │

00:01:07 #1434 [Verbose] > │     | UH7_0 of int32 * string * UH7                                          │

00:01:07 #1435 [Verbose] > │     | UH7_1                                                                  │

00:01:07 #1436 [Verbose] > │ let rec method2 (v0 : UH0, v1 : uint64) : uint64 =                           │

00:01:07 #1437 [Verbose] > │     match v0 with                                                            │

00:01:07 #1438 [Verbose] > │     | UH0_0(v2, v3, v4) -> (* Cons *)                                        │

00:01:07 #1439 [Verbose] > │         let v5 : uint64 = v1 + 1UL                                           │

00:01:07 #1440 [Verbose] > │         method2(v4, v5)                                                      │

00:01:07 #1441 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:01:07 #1442 [Verbose] > │         v1                                                                   │

00:01:07 #1443 [Verbose] > │ and method3 (v0 : (struct (string * string) []), v1 : UH0, v2 : uint64) :    │

00:01:07 #1444 [Verbose] > │ uint64 =                                                                     │

00:01:07 #1445 [Verbose] > │     match v1 with                                                            │

00:01:07 #1446 [Verbose] > │     | UH0_0(v3, v4, v5) -> (* Cons *)                                        │

00:01:07 #1447 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:01:07 #1448 [Verbose] > │         let v6 : uint64 = v2 + 1UL                                           │

00:01:07 #1449 [Verbose] > │         method3(v0, v5, v6)                                                  │

00:01:07 #1450 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:01:07 #1451 [Verbose] > │         v2                                                                   │

00:01:07 #1452 [Verbose] > │ and method1 (v0 : UH0) : (struct (string * string) []) =                     │

00:01:07 #1453 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:01:07 #1454 [Verbose] > │     let v2 : uint64 = method2(v0, v1)                                        │

00:01:07 #1455 [Verbose] > │     let v3 : (struct (string * string) []) = Array.zeroCreate<struct (string │

00:01:07 #1456 [Verbose] > │ * string)> (System.Convert.ToInt32(v2))                                      │

00:01:07 #1457 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:01:07 #1458 [Verbose] > │     let v5 : uint64 = method3(v3, v0, v4)                                    │

00:01:07 #1459 [Verbose] > │     v3                                                                       │

00:01:07 #1460 [Verbose] > │ and method4 (v0 : uint64, v1 : Mut0) : bool =                                │

00:01:07 #1461 [Verbose] > │     let v2 : uint64 = v1.l0                                                  │

00:01:07 #1462 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:01:07 #1463 [Verbose] > │     v3                                                                       │

00:01:07 #1464 [Verbose] > │ and method5 (v0 : int32, v1 : Mut1) : bool =                                 │

00:01:07 #1465 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:01:07 #1466 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:01:07 #1467 [Verbose] > │     v3                                                                       │

00:01:07 #1468 [Verbose] > │ and closure1 () (v0 : string) : string =                                     │

00:01:07 #1469 [Verbose] > │     let v1 : int32 = v0.Length                                               │

00:01:07 #1470 [Verbose] > │     let v2 : (int32 []) = Array.zeroCreate<int32> (1)                        │

00:01:07 #1471 [Verbose] > │     v2.[int 0] <- 0                                                          │

00:01:07 #1472 [Verbose] > │     let v3 : int32 = v1 - 1                                                  │

00:01:07 #1473 [Verbose] > │     let v4 : int32 = v3 - 1                                                  │

00:01:07 #1474 [Verbose] > │     let v5 : int32 = v4 + 1                                                  │

00:01:07 #1475 [Verbose] > │     let v6 : (int32 []) = Array.zeroCreate<int32> (v5)                       │

00:01:07 #1476 [Verbose] > │     let v7 : Mut1 = {l0 = 0} : Mut1                                          │

00:01:07 #1477 [Verbose] > │     while method5(v5, v7) do                                                 │

00:01:07 #1478 [Verbose] > │         let v9 : int32 = v7.l0                                               │

00:01:07 #1479 [Verbose] > │         let v10 : int32 = 1 + v9                                             │

00:01:07 #1480 [Verbose] > │         v6.[int v9] <- v10                                                   │

00:01:07 #1481 [Verbose] > │         let v11 : int32 = v9 + 1                                             │

00:01:07 #1482 [Verbose] > │         v7.l0 <- v11                                                         │

00:01:07 #1483 [Verbose] > │         ()                                                                   │

00:01:07 #1484 [Verbose] > │     let v12 : int32 = v6.Length                                              │

00:01:07 #1485 [Verbose] > │     let v13 : int32 = v2.Length                                              │

00:01:07 #1486 [Verbose] > │     let v14 : int32 = v12 + v13                                              │

00:01:07 #1487 [Verbose] > │     let v15 : (int32 []) = Array.zeroCreate<int32> (v14)                     │

00:01:07 #1488 [Verbose] > │     let v16 : Mut1 = {l0 = 0} : Mut1                                         │

00:01:07 #1489 [Verbose] > │     while method5(v14, v16) do                                               │

00:01:07 #1490 [Verbose] > │         let v18 : int32 = v16.l0                                             │

00:01:07 #1491 [Verbose] > │         let v19 : bool = v18 < v12                                           │

00:01:07 #1492 [Verbose] > │         let v23 : int32 =                                                    │

00:01:07 #1493 [Verbose] > │             if v19 then                                                      │

00:01:07 #1494 [Verbose] > │                 let v20 : int32 = v6.[int v18]                               │

00:01:07 #1495 [Verbose] > │                 v20                                                          │

00:01:07 #1496 [Verbose] > │             else                                                             │

00:01:07 #1497 [Verbose] > │                 let v21 : int32 = v18 - v12                                  │

00:01:07 #1498 [Verbose] > │                 let v22 : int32 = v2.[int v21]                               │

00:01:07 #1499 [Verbose] > │                 v22                                                          │

00:01:07 #1500 [Verbose] > │         v15.[int v18] <- v23                                                 │

00:01:07 #1501 [Verbose] > │         let v24 : int32 = v18 + 1                                            │

00:01:07 #1502 [Verbose] > │         v16.l0 <- v24                                                        │

00:01:07 #1503 [Verbose] > │         ()                                                                   │

00:01:07 #1504 [Verbose] > │     let v25 : int32 = v15.Length                                             │

00:01:07 #1505 [Verbose] > │     let v26 : (string []) = Array.zeroCreate<string> (v25)                   │

00:01:07 #1506 [Verbose] > │     let v27 : Mut1 = {l0 = 0} : Mut1                                         │

00:01:07 #1507 [Verbose] > │     while method5(v25, v27) do                                               │

00:01:07 #1508 [Verbose] > │         let v29 : int32 = v27.l0                                             │

00:01:07 #1509 [Verbose] > │         let v30 : int32 = v15.[int v29]                                      │

00:01:07 #1510 [Verbose] > │         let v31 : string = v0.[int v30..int v3]                              │

00:01:07 #1511 [Verbose] > │         let v32 : int32 = v30 - 1                                            │

00:01:07 #1512 [Verbose] > │         let v33 : string = v0.[int 0..int v32]                               │

00:01:07 #1513 [Verbose] > │         let v34 : string = v31 + v33                                         │

00:01:07 #1514 [Verbose] > │         v26.[int v29] <- v34                                                 │

00:01:07 #1515 [Verbose] > │         let v35 : int32 = v29 + 1                                            │

00:01:07 #1516 [Verbose] > │         v27.l0 <- v35                                                        │

00:01:07 #1517 [Verbose] > │         ()                                                                   │

00:01:07 #1518 [Verbose] > │     let v36 : string = " "                                                   │

00:01:07 #1519 [Verbose] > │     let v37 : string = v26 |> String.concat v36                              │

00:01:07 #1520 [Verbose] > │     v37                                                                      │

00:01:07 #1521 [Verbose] > │ and method6 (v0 : float, v1 : float) : UH1 =                                 │

00:01:07 #1522 [Verbose] > │     let v2 : bool = v1 < v0                                                  │

00:01:07 #1523 [Verbose] > │     if v2 then                                                               │

00:01:07 #1524 [Verbose] > │         let v3 : int32 = int32 v1                                            │

00:01:07 #1525 [Verbose] > │         let v4 : int32 = 1 + v3                                              │

00:01:07 #1526 [Verbose] > │         let v5 : float = v1 + 1.0                                            │

00:01:07 #1527 [Verbose] > │         let v6 : UH1 = method6(v0, v5)                                       │

00:01:07 #1528 [Verbose] > │         UH1_0(v4, v6)                                                        │

00:01:07 #1529 [Verbose] > │     else                                                                     │

00:01:07 #1530 [Verbose] > │         UH1_1                                                                │

00:01:07 #1531 [Verbose] > │ and method7 (v0 : UH1, v1 : UH1) : UH1 =                                     │

00:01:07 #1532 [Verbose] > │     match v0 with                                                            │

00:01:07 #1533 [Verbose] > │     | UH1_0(v2, v3) -> (* Cons *)                                            │

00:01:07 #1534 [Verbose] > │         let v4 : UH1 = method7(v3, v1)                                       │

00:01:07 #1535 [Verbose] > │         UH1_0(v2, v4)                                                        │

00:01:07 #1536 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:01:07 #1537 [Verbose] > │         v1                                                                   │

00:01:07 #1538 [Verbose] > │ and method8 (v0 : string, v1 : int32, v2 : UH1, v3 : UH2) : UH2 =            │

00:01:07 #1539 [Verbose] > │     match v2 with                                                            │

00:01:07 #1540 [Verbose] > │     | UH1_0(v4, v5) -> (* Cons *)                                            │

00:01:07 #1541 [Verbose] > │         let v6 : UH2 = method8(v0, v1, v5, v3)                               │

00:01:07 #1542 [Verbose] > │         let v7 : int32 = v1 - 1                                              │

00:01:07 #1543 [Verbose] > │         let v8 : string = v0.[int v4..int v7]                                │

00:01:07 #1544 [Verbose] > │         let v9 : bool = v4 = 0                                               │

00:01:07 #1545 [Verbose] > │         let v13 : string =                                                   │

00:01:07 #1546 [Verbose] > │             if v9 then                                                       │

00:01:07 #1547 [Verbose] > │                 let v10 : string = ""                                        │

00:01:07 #1548 [Verbose] > │                 v10                                                          │

00:01:07 #1549 [Verbose] > │             else                                                             │

00:01:07 #1550 [Verbose] > │                 let v11 : int32 = v4 - 1                                     │

00:01:07 #1551 [Verbose] > │                 let v12 : string = v0.[int 0..int v11]                       │

00:01:07 #1552 [Verbose] > │                 v12                                                          │

00:01:07 #1553 [Verbose] > │         let v14 : string = v8 + v13                                          │

00:01:07 #1554 [Verbose] > │         UH2_0(v14, v6)                                                       │

00:01:07 #1555 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:01:07 #1556 [Verbose] > │         v3                                                                   │

00:01:07 #1557 [Verbose] > │ and method10 (v0 : UH2, v1 : int32) : int32 =                                │

00:01:07 #1558 [Verbose] > │     match v0 with                                                            │

00:01:07 #1559 [Verbose] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

00:01:07 #1560 [Verbose] > │         let v4 : int32 = v1 + 1                                              │

00:01:07 #1561 [Verbose] > │         method10(v3, v4)                                                     │

00:01:07 #1562 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:01:07 #1563 [Verbose] > │         v1                                                                   │

00:01:07 #1564 [Verbose] > │ and method11 (v0 : (string []), v1 : UH2, v2 : int32) : int32 =              │

00:01:07 #1565 [Verbose] > │     match v1 with                                                            │

00:01:07 #1566 [Verbose] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

00:01:07 #1567 [Verbose] > │         v0.[int v2] <- v3                                                    │

00:01:07 #1568 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:01:07 #1569 [Verbose] > │         method11(v0, v4, v5)                                                 │

00:01:07 #1570 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:01:07 #1571 [Verbose] > │         v2                                                                   │

00:01:07 #1572 [Verbose] > │ and method9 (v0 : UH2) : (string []) =                                       │

00:01:07 #1573 [Verbose] > │     let v1 : int32 = 0                                                       │

00:01:07 #1574 [Verbose] > │     let v2 : int32 = method10(v0, v1)                                        │

00:01:07 #1575 [Verbose] > │     let v3 : (string []) = Array.zeroCreate<string> (v2)                     │

00:01:07 #1576 [Verbose] > │     let v4 : int32 = 0                                                       │

00:01:07 #1577 [Verbose] > │     let v5 : int32 = method11(v3, v0, v4)                                    │

00:01:07 #1578 [Verbose] > │     v3                                                                       │

00:01:07 #1579 [Verbose] > │ and closure2 () (v0 : string) : string =                                     │

00:01:07 #1580 [Verbose] > │     let v1 : int32 = v0.Length                                               │

00:01:07 #1581 [Verbose] > │     let v2 : int32 = v1 - 1                                                  │

00:01:07 #1582 [Verbose] > │     let v3 : int32 = v2 - 1                                                  │

00:01:07 #1583 [Verbose] > │     let v4 : float = float v3                                                │

00:01:07 #1584 [Verbose] > │     let v5 : float = v4 + 1.0                                                │

00:01:07 #1585 [Verbose] > │     let v6 : float = 0.0                                                     │

00:01:07 #1586 [Verbose] > │     let v7 : UH1 = method6(v5, v6)                                           │

00:01:07 #1587 [Verbose] > │     let v8 : int32 = 0                                                       │

00:01:07 #1588 [Verbose] > │     let v9 : UH1 = UH1_1                                                     │

00:01:07 #1589 [Verbose] > │     let v10 : UH1 = UH1_0(v8, v9)                                            │

00:01:07 #1590 [Verbose] > │     let v11 : UH1 = method7(v7, v10)                                         │

00:01:07 #1591 [Verbose] > │     let v12 : UH2 = UH2_1                                                    │

00:01:07 #1592 [Verbose] > │     let v13 : UH2 = method8(v0, v1, v11, v12)                                │

00:01:07 #1593 [Verbose] > │     let v14 : (string []) = method9(v13)                                     │

00:01:07 #1594 [Verbose] > │     let v15 : string = " "                                                   │

00:01:07 #1595 [Verbose] > │     let v16 : string = v14 |> String.concat v15                              │

00:01:07 #1596 [Verbose] > │     v16                                                                      │

00:01:07 #1597 [Verbose] > │ and method13 (v0 : UH3, v1 : uint64) : uint64 =                              │

00:01:07 #1598 [Verbose] > │     match v0 with                                                            │

00:01:07 #1599 [Verbose] > │     | UH3_0(v2, v3, v4, v5) -> (* Cons *)                                    │

00:01:07 #1600 [Verbose] > │         let v6 : uint64 = v1 + 1UL                                           │

00:01:07 #1601 [Verbose] > │         method13(v5, v6)                                                     │

00:01:07 #1602 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:01:07 #1603 [Verbose] > │         v1                                                                   │

00:01:07 #1604 [Verbose] > │ and method14 (v0 : (struct (int32 * string * (string -> string)) []), v1 :   │

00:01:07 #1605 [Verbose] > │ UH3, v2 : uint64) : uint64 =                                                 │

00:01:07 #1606 [Verbose] > │     match v1 with                                                            │

00:01:07 #1607 [Verbose] > │     | UH3_0(v3, v4, v5, v6) -> (* Cons *)                                    │

00:01:07 #1608 [Verbose] > │         v0.[int v2] <- struct (v3, v4, v5)                                   │

00:01:07 #1609 [Verbose] > │         let v7 : uint64 = v2 + 1UL                                           │

00:01:07 #1610 [Verbose] > │         method14(v0, v6, v7)                                                 │

00:01:07 #1611 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:01:07 #1612 [Verbose] > │         v2                                                                   │

00:01:07 #1613 [Verbose] > │ and method12 (v0 : UH3) : (struct (int32 * string * (string -> string)) [])  │

00:01:07 #1614 [Verbose] > │ =                                                                            │

00:01:07 #1615 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:01:07 #1616 [Verbose] > │     let v2 : uint64 = method13(v0, v1)                                       │

00:01:07 #1617 [Verbose] > │     let v3 : (struct (int32 * string * (string -> string)) []) =             │

00:01:07 #1618 [Verbose] > │ Array.zeroCreate<struct (int32 * string * (string -> string))>               │

00:01:07 #1619 [Verbose] > │ (System.Convert.ToInt32(v2))                                                 │

00:01:07 #1620 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:01:07 #1621 [Verbose] > │     let v5 : uint64 = method14(v3, v0, v4)                                   │

00:01:07 #1622 [Verbose] > │     v3                                                                       │

00:01:07 #1623 [Verbose] > │ and method15 (v0 : Mut1) : bool =                                            │

00:01:07 #1624 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:01:07 #1625 [Verbose] > │     let v2 : bool = v1 < 2000001                                             │

00:01:07 #1626 [Verbose] > │     v2                                                                       │

00:01:07 #1627 [Verbose] > │ and closure3 (v0 : string, v1 : (string -> string)) (v2 : int32) : string =  │

00:01:07 #1628 [Verbose] > │     v1 v0                                                                    │

00:01:07 #1629 [Verbose] > │ and method16 (v0 : string, v1 : (string []), v2 : uint64) : bool =           │

00:01:07 #1630 [Verbose] > │     let v3 : uint64 = System.Convert.ToUInt64 v1.Length                      │

00:01:07 #1631 [Verbose] > │     let v4 : bool = v2 < v3                                                  │

00:01:07 #1632 [Verbose] > │     if v4 then                                                               │

00:01:07 #1633 [Verbose] > │         let v5 : string = v1.[int v2]                                        │

00:01:07 #1634 [Verbose] > │         let v6 : bool = v0 = v5                                              │

00:01:07 #1635 [Verbose] > │         if v6 then                                                           │

00:01:07 #1636 [Verbose] > │             let v7 : uint64 = v2 + 1UL                                       │

00:01:07 #1637 [Verbose] > │             method16(v0, v1, v7)                                             │

00:01:07 #1638 [Verbose] > │         else                                                                 │

00:01:07 #1639 [Verbose] > │             false                                                            │

00:01:07 #1640 [Verbose] > │     else                                                                     │

00:01:07 #1641 [Verbose] > │         true                                                                 │

00:01:07 #1642 [Verbose] > │ and method17 (v0 : uint64, v1 : Mut2) : bool =                               │

00:01:07 #1643 [Verbose] > │     let v2 : uint64 = v1.l0                                                  │

00:01:07 #1644 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:01:07 #1645 [Verbose] > │     v3                                                                       │

00:01:07 #1646 [Verbose] > │ and method18 (v0 : UH4, v1 : UH4) : UH4 =                                    │

00:01:07 #1647 [Verbose] > │     match v0 with                                                            │

00:01:07 #1648 [Verbose] > │     | UH4_0(v2, v3, v4) -> (* Cons *)                                        │

00:01:07 #1649 [Verbose] > │         let v5 : UH4 = UH4_0(v2, v3, v1)                                     │

00:01:07 #1650 [Verbose] > │         method18(v4, v5)                                                     │

00:01:07 #1651 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:01:07 #1652 [Verbose] > │         v1                                                                   │

00:01:07 #1653 [Verbose] > │ and method20 (v0 : UH4, v1 : int32) : int32 =                                │

00:01:07 #1654 [Verbose] > │     match v0 with                                                            │

00:01:07 #1655 [Verbose] > │     | UH4_0(v2, v3, v4) -> (* Cons *)                                        │

00:01:07 #1656 [Verbose] > │         let v5 : int32 = v1 + 1                                              │

00:01:07 #1657 [Verbose] > │         method20(v4, v5)                                                     │

00:01:07 #1658 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:01:07 #1659 [Verbose] > │         v1                                                                   │

00:01:07 #1660 [Verbose] > │ and method21 (v0 : (struct (int64 * int64) []), v1 : UH4, v2 : int32) :      │

00:01:07 #1661 [Verbose] > │ int32 =                                                                      │

00:01:07 #1662 [Verbose] > │     match v1 with                                                            │

00:01:07 #1663 [Verbose] > │     | UH4_0(v3, v4, v5) -> (* Cons *)                                        │

00:01:07 #1664 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:01:07 #1665 [Verbose] > │         let v6 : int32 = v2 + 1                                              │

00:01:07 #1666 [Verbose] > │         method21(v0, v5, v6)                                                 │

00:01:07 #1667 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:01:07 #1668 [Verbose] > │         v2                                                                   │

00:01:07 #1669 [Verbose] > │ and method19 (v0 : UH4) : (struct (int64 * int64) []) =                      │

00:01:07 #1670 [Verbose] > │     let v1 : int32 = 0                                                       │

00:01:07 #1671 [Verbose] > │     let v2 : int32 = method20(v0, v1)                                        │

00:01:07 #1672 [Verbose] > │     let v3 : (struct (int64 * int64) []) = Array.zeroCreate<struct (int64 *  │

00:01:07 #1673 [Verbose] > │ int64)> (v2)                                                                 │

00:01:07 #1674 [Verbose] > │     let v4 : int32 = 0                                                       │

00:01:07 #1675 [Verbose] > │     let v5 : int32 = method21(v3, v0, v4)                                    │

00:01:07 #1676 [Verbose] > │     v3                                                                       │

00:01:07 #1677 [Verbose] > │ and closure4 () struct (v0 : int64, v1 : int64) : int64 =                    │

00:01:07 #1678 [Verbose] > │     v1                                                                       │

00:01:07 #1679 [Verbose] > │ and method23 (v0 : UH5, v1 : uint64) : uint64 =                              │

00:01:07 #1680 [Verbose] > │     match v0 with                                                            │

00:01:07 #1681 [Verbose] > │     | UH5_0(v2, v3, v4) -> (* Cons *)                                        │

00:01:07 #1682 [Verbose] > │         let v5 : uint64 = v1 + 1UL                                           │

00:01:07 #1683 [Verbose] > │         method23(v4, v5)                                                     │

00:01:07 #1684 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:01:07 #1685 [Verbose] > │         v1                                                                   │

00:01:07 #1686 [Verbose] > │ and method24 (v0 : (struct (UH2 * US0) []), v1 : UH5, v2 : uint64) : uint64  │

00:01:07 #1687 [Verbose] > │ =                                                                            │

00:01:07 #1688 [Verbose] > │     match v1 with                                                            │

00:01:07 #1689 [Verbose] > │     | UH5_0(v3, v4, v5) -> (* Cons *)                                        │

00:01:07 #1690 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:01:07 #1691 [Verbose] > │         let v6 : uint64 = v2 + 1UL                                           │

00:01:07 #1692 [Verbose] > │         method24(v0, v5, v6)                                                 │

00:01:07 #1693 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:01:07 #1694 [Verbose] > │         v2                                                                   │

00:01:07 #1695 [Verbose] > │ and method22 (v0 : UH5) : (struct (UH2 * US0) []) =                          │

00:01:07 #1696 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:01:07 #1697 [Verbose] > │     let v2 : uint64 = method23(v0, v1)                                       │

00:01:07 #1698 [Verbose] > │     let v3 : (struct (UH2 * US0) []) = Array.zeroCreate<struct (UH2 * US0)>  │

00:01:07 #1699 [Verbose] > │ (System.Convert.ToInt32(v2))                                                 │

00:01:07 #1700 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:01:07 #1701 [Verbose] > │     let v5 : uint64 = method24(v3, v0, v4)                                   │

00:01:07 #1702 [Verbose] > │     v3                                                                       │

00:01:07 #1703 [Verbose] > │ and method26 (v0 : UH2, v1 : uint64) : uint64 =                              │

00:01:07 #1704 [Verbose] > │     match v0 with                                                            │

00:01:07 #1705 [Verbose] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

00:01:07 #1706 [Verbose] > │         let v4 : uint64 = v1 + 1UL                                           │

00:01:07 #1707 [Verbose] > │         method26(v3, v4)                                                     │

00:01:07 #1708 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:01:07 #1709 [Verbose] > │         v1                                                                   │

00:01:07 #1710 [Verbose] > │ and method27 (v0 : (string []), v1 : UH2, v2 : uint64) : uint64 =            │

00:01:07 #1711 [Verbose] > │     match v1 with                                                            │

00:01:07 #1712 [Verbose] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

00:01:07 #1713 [Verbose] > │         v0.[int v2] <- v3                                                    │

00:01:07 #1714 [Verbose] > │         let v5 : uint64 = v2 + 1UL                                           │

00:01:07 #1715 [Verbose] > │         method27(v0, v4, v5)                                                 │

00:01:07 #1716 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:01:07 #1717 [Verbose] > │         v2                                                                   │

00:01:07 #1718 [Verbose] > │ and method25 (v0 : UH2) : (string []) =                                      │

00:01:07 #1719 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:01:07 #1720 [Verbose] > │     let v2 : uint64 = method26(v0, v1)                                       │

00:01:07 #1721 [Verbose] > │     let v3 : (string []) = Array.zeroCreate<string>                          │

00:01:07 #1722 [Verbose] > │ (System.Convert.ToInt32(v2))                                                 │

00:01:07 #1723 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:01:07 #1724 [Verbose] > │     let v5 : uint64 = method27(v3, v0, v4)                                   │

00:01:07 #1725 [Verbose] > │     v3                                                                       │

00:01:07 #1726 [Verbose] > │ and closure5 () (v0 : int64) : US1 =                                         │

00:01:07 #1727 [Verbose] > │     US1_1(v0)                                                                │

00:01:07 #1728 [Verbose] > │ and method28 (v0 : uint64, v1 : Mut3) : bool =                               │

00:01:07 #1729 [Verbose] > │     let v2 : uint64 = v1.l0                                                  │

00:01:07 #1730 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:01:07 #1731 [Verbose] > │     v3                                                                       │

00:01:07 #1732 [Verbose] > │ and method29 (v0 : UH6, v1 : UH6) : UH6 =                                    │

00:01:07 #1733 [Verbose] > │     match v0 with                                                            │

00:01:07 #1734 [Verbose] > │     | UH6_0(v2, v3, v4) -> (* Cons *)                                        │

00:01:07 #1735 [Verbose] > │         let v5 : UH6 = UH6_0(v2, v3, v1)                                     │

00:01:07 #1736 [Verbose] > │         method29(v4, v5)                                                     │

00:01:07 #1737 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:01:07 #1738 [Verbose] > │         v1                                                                   │

00:01:07 #1739 [Verbose] > │ and method31 (v0 : UH6, v1 : int32) : int32 =                                │

00:01:07 #1740 [Verbose] > │     match v0 with                                                            │

00:01:07 #1741 [Verbose] > │     | UH6_0(v2, v3, v4) -> (* Cons *)                                        │

00:01:07 #1742 [Verbose] > │         let v5 : int32 = v1 + 1                                              │

00:01:07 #1743 [Verbose] > │         method31(v4, v5)                                                     │

00:01:07 #1744 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:01:07 #1745 [Verbose] > │         v1                                                                   │

00:01:07 #1746 [Verbose] > │ and method32 (v0 : (struct (int32 * int64) []), v1 : UH6, v2 : int32) :      │

00:01:07 #1747 [Verbose] > │ int32 =                                                                      │

00:01:07 #1748 [Verbose] > │     match v1 with                                                            │

00:01:07 #1749 [Verbose] > │     | UH6_0(v3, v4, v5) -> (* Cons *)                                        │

00:01:07 #1750 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:01:07 #1751 [Verbose] > │         let v6 : int32 = v2 + 1                                              │

00:01:07 #1752 [Verbose] > │         method32(v0, v5, v6)                                                 │

00:01:07 #1753 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:01:07 #1754 [Verbose] > │         v2                                                                   │

00:01:07 #1755 [Verbose] > │ and method30 (v0 : UH6) : (struct (int32 * int64) []) =                      │

00:01:07 #1756 [Verbose] > │     let v1 : int32 = 0                                                       │

00:01:07 #1757 [Verbose] > │     let v2 : int32 = method31(v0, v1)                                        │

00:01:07 #1758 [Verbose] > │     let v3 : (struct (int32 * int64) []) = Array.zeroCreate<struct (int32 *  │

00:01:07 #1759 [Verbose] > │ int64)> (v2)                                                                 │

00:01:07 #1760 [Verbose] > │     let v4 : int32 = 0                                                       │

00:01:07 #1761 [Verbose] > │     let v5 : int32 = method32(v3, v0, v4)                                    │

00:01:07 #1762 [Verbose] > │     v3                                                                       │

00:01:07 #1763 [Verbose] > │ and method33 (v0 : UH2, v1 : UH7, v2 : int32) : struct (UH7 * int32) =       │

00:01:07 #1764 [Verbose] > │     match v0 with                                                            │

00:01:07 #1765 [Verbose] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

00:01:07 #1766 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:01:07 #1767 [Verbose] > │         let v6 : UH7 = UH7_0(v2, v3, v1)                                     │

00:01:07 #1768 [Verbose] > │         method33(v4, v6, v5)                                                 │

00:01:07 #1769 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:01:07 #1770 [Verbose] > │         struct (v1, v2)                                                      │

00:01:07 #1771 [Verbose] > │ and method34 (v0 : UH7, v1 : UH7) : UH7 =                                    │

00:01:07 #1772 [Verbose] > │     match v0 with                                                            │

00:01:07 #1773 [Verbose] > │     | UH7_0(v2, v3, v4) -> (* Cons *)                                        │

00:01:07 #1774 [Verbose] > │         let v5 : UH7 = UH7_0(v2, v3, v1)                                     │

00:01:07 #1775 [Verbose] > │         method34(v4, v5)                                                     │

00:01:07 #1776 [Verbose] > │     | UH7_1 -> (* Nil *)                                                     │

00:01:07 #1777 [Verbose] > │         v1                                                                   │

00:01:07 #1778 [Verbose] > │ and method35 (v0 : Map<int32, int64>, v1 : UH7, v2 : UH2) : UH2 =            │

00:01:07 #1779 [Verbose] > │     match v1 with                                                            │

00:01:07 #1780 [Verbose] > │     | UH7_0(v3, v4, v5) -> (* Cons *)                                        │

00:01:07 #1781 [Verbose] > │         let v6 : UH2 = method35(v0, v5, v2)                                  │

00:01:07 #1782 [Verbose] > │         let v7 : int64 = v0.[v3]                                             │

00:01:07 #1783 [Verbose] > │         let v8 : int32 = int32 v7                                            │

00:01:07 #1784 [Verbose] > │         let v9 : string = v4.PadRight v8                                     │

00:01:07 #1785 [Verbose] > │         UH2_0(v9, v6)                                                        │

00:01:07 #1786 [Verbose] > │     | UH7_1 -> (* Nil *)                                                     │

00:01:07 #1787 [Verbose] > │         v2                                                                   │

00:01:07 #1788 [Verbose] > │ and method37 (v0 : UH6, v1 : uint64) : uint64 =                              │

00:01:07 #1789 [Verbose] > │     match v0 with                                                            │

00:01:07 #1790 [Verbose] > │     | UH6_0(v2, v3, v4) -> (* Cons *)                                        │

00:01:07 #1791 [Verbose] > │         let v5 : uint64 = v1 + 1UL                                           │

00:01:07 #1792 [Verbose] > │         method37(v4, v5)                                                     │

00:01:07 #1793 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:01:07 #1794 [Verbose] > │         v1                                                                   │

00:01:07 #1795 [Verbose] > │ and method38 (v0 : (struct (int32 * int64) []), v1 : UH6, v2 : uint64) :     │

00:01:07 #1796 [Verbose] > │ uint64 =                                                                     │

00:01:07 #1797 [Verbose] > │     match v1 with                                                            │

00:01:07 #1798 [Verbose] > │     | UH6_0(v3, v4, v5) -> (* Cons *)                                        │

00:01:07 #1799 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:01:07 #1800 [Verbose] > │         let v6 : uint64 = v2 + 1UL                                           │

00:01:07 #1801 [Verbose] > │         method38(v0, v5, v6)                                                 │

00:01:07 #1802 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:01:07 #1803 [Verbose] > │         v2                                                                   │

00:01:07 #1804 [Verbose] > │ and method36 (v0 : UH6) : (struct (int32 * int64) []) =                      │

00:01:07 #1805 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:01:07 #1806 [Verbose] > │     let v2 : uint64 = method37(v0, v1)                                       │

00:01:07 #1807 [Verbose] > │     let v3 : (struct (int32 * int64) []) = Array.zeroCreate<struct (int32 *  │

00:01:07 #1808 [Verbose] > │ int64)> (System.Convert.ToInt32(v2))                                         │

00:01:07 #1809 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:01:07 #1810 [Verbose] > │     let v5 : uint64 = method38(v3, v0, v4)                                   │

00:01:07 #1811 [Verbose] > │     v3                                                                       │

00:01:07 #1812 [Verbose] > │ and closure6 () struct (v0 : int32, v1 : int64) : int64 =                    │

00:01:07 #1813 [Verbose] > │     v1                                                                       │

00:01:07 #1814 [Verbose] > │ and closure0 () () : unit =                                                  │

00:01:07 #1815 [Verbose] > │     let v0 : (unit -> unit) = closure0()                                     │

00:01:07 #1816 [Verbose] > │     let v1 : string = nameof v0                                              │

00:01:07 #1817 [Verbose] > │     let v2 : string = ""                                                     │

00:01:07 #1818 [Verbose] > │     System.Console.WriteLine v2                                              │

00:01:07 #1819 [Verbose] > │     System.Console.WriteLine v2                                              │

00:01:07 #1820 [Verbose] > │     let v3 : string = $"Test: {v1}"                                          │

00:01:07 #1821 [Verbose] > │     System.Console.WriteLine v3                                              │

00:01:07 #1822 [Verbose] > │     let v4 : string = "abc"                                                  │

00:01:07 #1823 [Verbose] > │     let v5 : string = "bca cab abc"                                          │

00:01:07 #1824 [Verbose] > │     let v6 : string = "abcde"                                                │

00:01:07 #1825 [Verbose] > │     let v7 : string = "bcdea cdeab deabc eabcd abcde"                        │

00:01:07 #1826 [Verbose] > │     let v8 : string = "abcdefghi"                                            │

00:01:07 #1827 [Verbose] > │     let v9 : string = "bcdefghia cdefghiab defghiabc efghiabcd fghiabcde     │

00:01:07 #1828 [Verbose] > │ ghiabcdef hiabcdefg iabcdefgh abcdefghi"                                     │

00:01:07 #1829 [Verbose] > │     let v10 : string = "abab"                                                │

00:01:07 #1830 [Verbose] > │     let v11 : string = "baba abab baba abab"                                 │

00:01:07 #1831 [Verbose] > │     let v12 : string = "aa"                                                  │

00:01:07 #1832 [Verbose] > │     let v13 : string = "aa aa"                                               │

00:01:07 #1833 [Verbose] > │     let v14 : string = "z"                                                   │

00:01:07 #1834 [Verbose] > │     let v15 : UH0 = UH0_1                                                    │

00:01:07 #1835 [Verbose] > │     let v16 : UH0 = UH0_0(v14, v14, v15)                                     │

00:01:07 #1836 [Verbose] > │     let v17 : UH0 = UH0_0(v12, v13, v16)                                     │

00:01:07 #1837 [Verbose] > │     let v18 : UH0 = UH0_0(v10, v11, v17)                                     │

00:01:07 #1838 [Verbose] > │     let v19 : UH0 = UH0_0(v8, v9, v18)                                       │

00:01:07 #1839 [Verbose] > │     let v20 : UH0 = UH0_0(v6, v7, v19)                                       │

00:01:07 #1840 [Verbose] > │     let v21 : UH0 = UH0_0(v4, v5, v20)                                       │

00:01:07 #1841 [Verbose] > │     let v22 : (struct (string * string) []) = method1(v21)                   │

00:01:07 #1842 [Verbose] > │     let v23 : uint64 = System.Convert.ToUInt64 v22.Length                    │

00:01:07 #1843 [Verbose] > │     let v24 : (struct (string * string * string * (int64 [])) []) =          │

00:01:07 #1844 [Verbose] > │ Array.zeroCreate<struct (string * string * string * (int64 []))>             │

00:01:07 #1845 [Verbose] > │ (System.Convert.ToInt32(v23))                                                │

00:01:07 #1846 [Verbose] > │     let v25 : Mut0 = {l0 = 0UL} : Mut0                                       │

00:01:07 #1847 [Verbose] > │     while method4(v23, v25) do                                               │

00:01:07 #1848 [Verbose] > │         let v27 : uint64 = v25.l0                                            │

00:01:07 #1849 [Verbose] > │         let struct (v28 : string, v29 : string) = v22.[int v27]              │

00:01:07 #1850 [Verbose] > │         let v30 : string = $"%A{v28}"                                        │

00:01:07 #1851 [Verbose] > │         System.Console.WriteLine v2                                          │

00:01:07 #1852 [Verbose] > │         let v31 : string = $"Solution: {v30}  "                              │

00:01:07 #1853 [Verbose] > │         System.Console.WriteLine v31                                         │

00:01:07 #1854 [Verbose] > │         let v32 : int32 = 0                                                  │

00:01:07 #1855 [Verbose] > │         let v33 : string = "F"                                               │

00:01:07 #1856 [Verbose] > │         let v34 : (string -> string) = closure1()                            │

00:01:07 #1857 [Verbose] > │         let v35 : int32 = 1                                                  │

00:01:07 #1858 [Verbose] > │         let v36 : string = "FA"                                              │

00:01:07 #1859 [Verbose] > │         let v37 : (string -> string) = closure2()                            │

00:01:07 #1860 [Verbose] > │         let v38 : UH3 = UH3_1                                                │

00:01:07 #1861 [Verbose] > │         let v39 : UH3 = UH3_0(v35, v36, v37, v38)                            │

00:01:07 #1862 [Verbose] > │         let v40 : UH3 = UH3_0(v32, v33, v34, v39)                            │

00:01:07 #1863 [Verbose] > │         let v41 : (struct (int32 * string * (string -> string)) []) =        │

00:01:07 #1864 [Verbose] > │ method12(v40)                                                                │

00:01:07 #1865 [Verbose] > │         let v42 : uint64 = System.Convert.ToUInt64 v41.Length                │

00:01:07 #1866 [Verbose] > │         let v43 : (struct (string * int64) []) = Array.zeroCreate<struct     │

00:01:07 #1867 [Verbose] > │ (string * int64)> (System.Convert.ToInt32(v42))                              │

00:01:07 #1868 [Verbose] > │         let v44 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:01:07 #1869 [Verbose] > │         while method4(v42, v44) do                                           │

00:01:07 #1870 [Verbose] > │             let v46 : uint64 = v44.l0                                        │

00:01:07 #1871 [Verbose] > │             let struct (v47 : int32, v48 : string, v49 : (string -> string)) │

00:01:07 #1872 [Verbose] > │ = v41.[int v46]                                                              │

00:01:07 #1873 [Verbose] > │             let mutable result = None                                        │

00:01:07 #1874 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:01:07 #1875 [Verbose] > │             #if !WASM                                                        │

00:01:07 #1876 [Verbose] > │             ()                                                               │

00:01:07 #1877 [Verbose] > │             #else                                                            │

00:01:07 #1878 [Verbose] > │             ()                                                               │

00:01:07 #1879 [Verbose] > │             #endif                                                           │

00:01:07 #1880 [Verbose] > │             #else                                                            │

00:01:07 #1881 [Verbose] > │             System.GC.Collect ()                                             │

00:01:07 #1882 [Verbose] > │             ()                                                               │

00:01:07 #1883 [Verbose] > │             #endif                                                           │

00:01:07 #1884 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:01:07 #1885 [Verbose] > │             result |> Option.get                                             │

00:01:07 #1886 [Verbose] > │             let v50 : (unit -> System.Diagnostics.Stopwatch) =               │

00:01:07 #1887 [Verbose] > │ System.Diagnostics.Stopwatch                                                 │

00:01:07 #1888 [Verbose] > │             let v51 : System.Diagnostics.Stopwatch = v50 ()                  │

00:01:07 #1889 [Verbose] > │             v51.Start ()                                                     │

00:01:07 #1890 [Verbose] > │             let v52 : int64 = v51.ElapsedMilliseconds                        │

00:01:07 #1891 [Verbose] > │             let v53 : (int32 []) = Array.zeroCreate<int32> (2000001)         │

00:01:07 #1892 [Verbose] > │             let v54 : Mut1 = {l0 = 0} : Mut1                                 │

00:01:07 #1893 [Verbose] > │             while method15(v54) do                                           │

00:01:07 #1894 [Verbose] > │                 let v56 : int32 = v54.l0                                     │

00:01:07 #1895 [Verbose] > │                 v53.[int v56] <- v56                                         │

00:01:07 #1896 [Verbose] > │                 let v57 : int32 = v56 + 1                                    │

00:01:07 #1897 [Verbose] > │                 v54.l0 <- v57                                                │

00:01:07 #1898 [Verbose] > │                 ()                                                           │

00:01:07 #1899 [Verbose] > │             let v58 : (int32 -> string) = closure3(v28, v49)                 │

00:01:07 #1900 [Verbose] > │             let v59 : (string []) = v53 |> Array.Parallel.map v58            │

00:01:07 #1901 [Verbose] > │             let v60 : int32 = v59.Length                                     │

00:01:07 #1902 [Verbose] > │             let v61 : int32 = v60 - 1                                        │

00:01:07 #1903 [Verbose] > │             let v62 : string = v59.[int v61]                                 │

00:01:07 #1904 [Verbose] > │             let v63 : int64 = v51.ElapsedMilliseconds                        │

00:01:07 #1905 [Verbose] > │             let v64 : int64 = v63 - v52                                      │

00:01:07 #1906 [Verbose] > │             let v65 : string = $"Test case {v47 + 1}. {v48}. Time: {v64}  "  │

00:01:07 #1907 [Verbose] > │             System.Console.WriteLine v65                                     │

00:01:07 #1908 [Verbose] > │             v43.[int v46] <- struct (v62, v64)                               │

00:01:07 #1909 [Verbose] > │             let v66 : uint64 = v46 + 1UL                                     │

00:01:07 #1910 [Verbose] > │             v44.l0 <- v66                                                    │

00:01:07 #1911 [Verbose] > │             ()                                                               │

00:01:07 #1912 [Verbose] > │         let v67 : uint64 = System.Convert.ToUInt64 v43.Length                │

00:01:07 #1913 [Verbose] > │         let v68 : (string []) = Array.zeroCreate<string>                     │

00:01:07 #1914 [Verbose] > │ (System.Convert.ToInt32(v67))                                                │

00:01:07 #1915 [Verbose] > │         let v69 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:01:07 #1916 [Verbose] > │         while method4(v67, v69) do                                           │

00:01:07 #1917 [Verbose] > │             let v71 : uint64 = v69.l0                                        │

00:01:07 #1918 [Verbose] > │             let struct (v72 : string, v73 : int64) = v43.[int v71]           │

00:01:07 #1919 [Verbose] > │             v68.[int v71] <- v72                                             │

00:01:07 #1920 [Verbose] > │             let v74 : uint64 = v71 + 1UL                                     │

00:01:07 #1921 [Verbose] > │             v69.l0 <- v74                                                    │

00:01:07 #1922 [Verbose] > │             ()                                                               │

00:01:07 #1923 [Verbose] > │         let v75 : uint64 = System.Convert.ToUInt64 v68.Length                │

00:01:07 #1924 [Verbose] > │         let v76 : bool = v75 <= 1UL                                          │

00:01:07 #1925 [Verbose] > │         if v76 then                                                          │

00:01:07 #1926 [Verbose] > │             ()                                                               │

00:01:07 #1927 [Verbose] > │         else                                                                 │

00:01:07 #1928 [Verbose] > │             let v77 : string = v68.[int 0UL]                                 │

00:01:07 #1929 [Verbose] > │             let v78 : uint64 = 0UL                                           │

00:01:07 #1930 [Verbose] > │             let v79 : bool = method16(v77, v68, v78)                         │

00:01:07 #1931 [Verbose] > │             if v79 then                                                      │

00:01:07 #1932 [Verbose] > │                 ()                                                           │

00:01:07 #1933 [Verbose] > │             else                                                             │

00:01:07 #1934 [Verbose] > │                 let v80 : string = $"Challenge error: {v68}"                 │

00:01:07 #1935 [Verbose] > │                 failwith<unit> v80                                           │

00:01:07 #1936 [Verbose] > │         let v81 : string = $"%A{v29}"                                        │

00:01:07 #1937 [Verbose] > │         let v82 : (string []) = Array.zeroCreate<string>                     │

00:01:07 #1938 [Verbose] > │ (System.Convert.ToInt32(v67))                                                │

00:01:07 #1939 [Verbose] > │         let v83 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:01:07 #1940 [Verbose] > │         while method4(v67, v83) do                                           │

00:01:07 #1941 [Verbose] > │             let v85 : uint64 = v83.l0                                        │

00:01:07 #1942 [Verbose] > │             let struct (v86 : string, v87 : int64) = v43.[int v85]           │

00:01:07 #1943 [Verbose] > │             v82.[int v85] <- v86                                             │

00:01:07 #1944 [Verbose] > │             let v88 : uint64 = v85 + 1UL                                     │

00:01:07 #1945 [Verbose] > │             v83.l0 <- v88                                                    │

00:01:07 #1946 [Verbose] > │             ()                                                               │

00:01:07 #1947 [Verbose] > │         let v89 : string = v82.[int 0UL]                                     │

00:01:07 #1948 [Verbose] > │         let v90 : string = $"%A{v89}"                                        │

00:01:07 #1949 [Verbose] > │         let v91 : (int64 []) = Array.zeroCreate<int64>                       │

00:01:07 #1950 [Verbose] > │ (System.Convert.ToInt32(v67))                                                │

00:01:07 #1951 [Verbose] > │         let v92 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:01:07 #1952 [Verbose] > │         while method4(v67, v92) do                                           │

00:01:07 #1953 [Verbose] > │             let v94 : uint64 = v92.l0                                        │

00:01:07 #1954 [Verbose] > │             let struct (v95 : string, v96 : int64) = v43.[int v94]           │

00:01:07 #1955 [Verbose] > │             v91.[int v94] <- v96                                             │

00:01:07 #1956 [Verbose] > │             let v97 : uint64 = v94 + 1UL                                     │

00:01:07 #1957 [Verbose] > │             v92.l0 <- v97                                                    │

00:01:07 #1958 [Verbose] > │             ()                                                               │

00:01:07 #1959 [Verbose] > │         v24.[int v27] <- struct (v81, v30, v90, v91)                         │

00:01:07 #1960 [Verbose] > │         let v98 : uint64 = v27 + 1UL                                         │

00:01:07 #1961 [Verbose] > │         v25.l0 <- v98                                                        │

00:01:07 #1962 [Verbose] > │         ()                                                                   │

00:01:07 #1963 [Verbose] > │     let v99 : uint64 = System.Convert.ToUInt64 v24.Length                    │

00:01:07 #1964 [Verbose] > │     let v100 : (struct (UH2 * US0) []) = Array.zeroCreate<struct (UH2 *      │

00:01:07 #1965 [Verbose] > │ US0)> (System.Convert.ToInt32(v99))                                          │

00:01:07 #1966 [Verbose] > │     let v101 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #1967 [Verbose] > │     while method4(v99, v101) do                                              │

00:01:07 #1968 [Verbose] > │         let v103 : uint64 = v101.l0                                          │

00:01:07 #1969 [Verbose] > │         let struct (v104 : string, v105 : string, v106 : string, v107 :      │

00:01:07 #1970 [Verbose] > │ (int64 [])) = v24.[int v103]                                                 │

00:01:07 #1971 [Verbose] > │         let v108 : uint64 = System.Convert.ToUInt64 v107.Length              │

00:01:07 #1972 [Verbose] > │         let v109 : UH4 = UH4_1                                               │

00:01:07 #1973 [Verbose] > │         let v110 : Mut2 = {l0 = 0UL; l1 = v109; l2 = 0L} : Mut2              │

00:01:07 #1974 [Verbose] > │         while method17(v108, v110) do                                        │

00:01:07 #1975 [Verbose] > │             let v112 : uint64 = v110.l0                                      │

00:01:07 #1976 [Verbose] > │             let struct (v113 : UH4, v114 : int64) = v110.l1, v110.l2         │

00:01:07 #1977 [Verbose] > │             let v115 : int64 = v107.[int v112]                               │

00:01:07 #1978 [Verbose] > │             let v116 : int64 = v114 + 1L                                     │

00:01:07 #1979 [Verbose] > │             let v117 : uint64 = v112 + 1UL                                   │

00:01:07 #1980 [Verbose] > │             let v118 : UH4 = UH4_0(v114, v115, v113)                         │

00:01:07 #1981 [Verbose] > │             v110.l0 <- v117                                                  │

00:01:07 #1982 [Verbose] > │             v110.l1 <- v118                                                  │

00:01:07 #1983 [Verbose] > │             v110.l2 <- v116                                                  │

00:01:07 #1984 [Verbose] > │             ()                                                               │

00:01:07 #1985 [Verbose] > │         let struct (v119 : UH4, v120 : int64) = v110.l1, v110.l2             │

00:01:07 #1986 [Verbose] > │         let v121 : UH4 = UH4_1                                               │

00:01:07 #1987 [Verbose] > │         let v122 : UH4 = method18(v119, v121)                                │

00:01:07 #1988 [Verbose] > │         let v123 : (struct (int64 * int64) []) = method19(v122)              │

00:01:07 #1989 [Verbose] > │         let v124 : int32 = v123.Length                                       │

00:01:07 #1990 [Verbose] > │         let v125 : (struct (int64 * int64) []) = Array.zeroCreate<struct     │

00:01:07 #1991 [Verbose] > │ (int64 * int64)> (v124)                                                      │

00:01:07 #1992 [Verbose] > │         let v126 : Mut1 = {l0 = 0} : Mut1                                    │

00:01:07 #1993 [Verbose] > │         while method5(v124, v126) do                                         │

00:01:07 #1994 [Verbose] > │             let v128 : int32 = v126.l0                                       │

00:01:07 #1995 [Verbose] > │             let struct (v129 : int64, v130 : int64) = v123.[int v128]        │

00:01:07 #1996 [Verbose] > │             let v131 : int64 = v129 + 1L                                     │

00:01:07 #1997 [Verbose] > │             v125.[int v128] <- struct (v131, v130)                           │

00:01:07 #1998 [Verbose] > │             let v132 : int32 = v128 + 1                                      │

00:01:07 #1999 [Verbose] > │             v126.l0 <- v132                                                  │

00:01:07 #2000 [Verbose] > │             ()                                                               │

00:01:07 #2001 [Verbose] > │         let v133 : (struct (int64 * int64) -> int64) = closure4()            │

00:01:07 #2002 [Verbose] > │         let v134 : (struct (int64 * int64) []) = v125 |> Array.sortBy v133   │

00:01:07 #2003 [Verbose] > │         let struct (v135 : int64, v136 : int64) = v134.[int 0]               │

00:01:07 #2004 [Verbose] > │         let v137 : string = $"%A{struct (v135, v136)}"                       │

00:01:07 #2005 [Verbose] > │         let v138 : bool = v104 = v106                                        │

00:01:07 #2006 [Verbose] > │         let v143 : US0 =                                                     │

00:01:07 #2007 [Verbose] > │             if v138 then                                                     │

00:01:07 #2008 [Verbose] > │                 let v139 : System.ConsoleColor =                             │

00:01:07 #2009 [Verbose] > │ System.ConsoleColor.DarkGreen                                                │

00:01:07 #2010 [Verbose] > │                 US0_1(v139)                                                  │

00:01:07 #2011 [Verbose] > │             else                                                             │

00:01:07 #2012 [Verbose] > │                 let v141 : System.ConsoleColor = System.ConsoleColor.DarkRed │

00:01:07 #2013 [Verbose] > │                 US0_1(v141)                                                  │

00:01:07 #2014 [Verbose] > │         let v144 : UH2 = UH2_1                                               │

00:01:07 #2015 [Verbose] > │         let v145 : UH2 = UH2_0(v137, v144)                                   │

00:01:07 #2016 [Verbose] > │         let v146 : UH2 = UH2_0(v106, v145)                                   │

00:01:07 #2017 [Verbose] > │         let v147 : UH2 = UH2_0(v104, v146)                                   │

00:01:07 #2018 [Verbose] > │         let v148 : UH2 = UH2_0(v105, v147)                                   │

00:01:07 #2019 [Verbose] > │         v100.[int v103] <- struct (v148, v143)                               │

00:01:07 #2020 [Verbose] > │         let v149 : uint64 = v103 + 1UL                                       │

00:01:07 #2021 [Verbose] > │         v101.l0 <- v149                                                      │

00:01:07 #2022 [Verbose] > │         ()                                                                   │

00:01:07 #2023 [Verbose] > │     let v150 : string = "Input"                                              │

00:01:07 #2024 [Verbose] > │     let v151 : string = "Expected"                                           │

00:01:07 #2025 [Verbose] > │     let v152 : string = "Result"                                             │

00:01:07 #2026 [Verbose] > │     let v153 : string = "Best"                                               │

00:01:07 #2027 [Verbose] > │     let v154 : UH2 = UH2_1                                                   │

00:01:07 #2028 [Verbose] > │     let v155 : UH2 = UH2_0(v153, v154)                                       │

00:01:07 #2029 [Verbose] > │     let v156 : UH2 = UH2_0(v152, v155)                                       │

00:01:07 #2030 [Verbose] > │     let v157 : UH2 = UH2_0(v151, v156)                                       │

00:01:07 #2031 [Verbose] > │     let v158 : UH2 = UH2_0(v150, v157)                                       │

00:01:07 #2032 [Verbose] > │     let v159 : US0 = US0_0                                                   │

00:01:07 #2033 [Verbose] > │     let v160 : string = "---"                                                │

00:01:07 #2034 [Verbose] > │     let v161 : UH2 = UH2_1                                                   │

00:01:07 #2035 [Verbose] > │     let v162 : UH2 = UH2_0(v160, v161)                                       │

00:01:07 #2036 [Verbose] > │     let v163 : UH2 = UH2_0(v160, v162)                                       │

00:01:07 #2037 [Verbose] > │     let v164 : UH2 = UH2_0(v160, v163)                                       │

00:01:07 #2038 [Verbose] > │     let v165 : UH2 = UH2_0(v160, v164)                                       │

00:01:07 #2039 [Verbose] > │     let v166 : US0 = US0_0                                                   │

00:01:07 #2040 [Verbose] > │     let v167 : UH5 = UH5_1                                                   │

00:01:07 #2041 [Verbose] > │     let v168 : UH5 = UH5_0(v165, v166, v167)                                 │

00:01:07 #2042 [Verbose] > │     let v169 : UH5 = UH5_0(v158, v159, v168)                                 │

00:01:07 #2043 [Verbose] > │     let v170 : (struct (UH2 * US0) []) = method22(v169)                      │

00:01:07 #2044 [Verbose] > │     let v171 : uint64 = System.Convert.ToUInt64 v170.Length                  │

00:01:07 #2045 [Verbose] > │     let v172 : uint64 = System.Convert.ToUInt64 v100.Length                  │

00:01:07 #2046 [Verbose] > │     let v173 : uint64 = v171 + v172                                          │

00:01:07 #2047 [Verbose] > │     let v174 : (struct (UH2 * US0) []) = Array.zeroCreate<struct (UH2 *      │

00:01:07 #2048 [Verbose] > │ US0)> (System.Convert.ToInt32(v173))                                         │

00:01:07 #2049 [Verbose] > │     let v175 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2050 [Verbose] > │     while method4(v173, v175) do                                             │

00:01:07 #2051 [Verbose] > │         let v177 : uint64 = v175.l0                                          │

00:01:07 #2052 [Verbose] > │         let v178 : bool = v177 < v171                                        │

00:01:07 #2053 [Verbose] > │         let struct (v184 : UH2, v185 : US0) =                                │

00:01:07 #2054 [Verbose] > │             if v178 then                                                     │

00:01:07 #2055 [Verbose] > │                 let struct (v179 : UH2, v180 : US0) = v170.[int v177]        │

00:01:07 #2056 [Verbose] > │                 struct (v179, v180)                                          │

00:01:07 #2057 [Verbose] > │             else                                                             │

00:01:07 #2058 [Verbose] > │                 let v181 : uint64 = v177 - v171                              │

00:01:07 #2059 [Verbose] > │                 let struct (v182 : UH2, v183 : US0) = v100.[int v181]        │

00:01:07 #2060 [Verbose] > │                 struct (v182, v183)                                          │

00:01:07 #2061 [Verbose] > │         v174.[int v177] <- struct (v184, v185)                               │

00:01:07 #2062 [Verbose] > │         let v186 : uint64 = v177 + 1UL                                       │

00:01:07 #2063 [Verbose] > │         v175.l0 <- v186                                                      │

00:01:07 #2064 [Verbose] > │         ()                                                                   │

00:01:07 #2065 [Verbose] > │     let v187 : uint64 = System.Convert.ToUInt64 v174.Length                  │

00:01:07 #2066 [Verbose] > │     let v188 : ((string []) []) = Array.zeroCreate<(string [])>              │

00:01:07 #2067 [Verbose] > │ (System.Convert.ToInt32(v187))                                               │

00:01:07 #2068 [Verbose] > │     let v189 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2069 [Verbose] > │     while method4(v187, v189) do                                             │

00:01:07 #2070 [Verbose] > │         let v191 : uint64 = v189.l0                                          │

00:01:07 #2071 [Verbose] > │         let struct (v192 : UH2, v193 : US0) = v174.[int v191]                │

00:01:07 #2072 [Verbose] > │         let v194 : (string []) = method25(v192)                              │

00:01:07 #2073 [Verbose] > │         v188.[int v191] <- v194                                              │

00:01:07 #2074 [Verbose] > │         let v195 : uint64 = v191 + 1UL                                       │

00:01:07 #2075 [Verbose] > │         v189.l0 <- v195                                                      │

00:01:07 #2076 [Verbose] > │         ()                                                                   │

00:01:07 #2077 [Verbose] > │     let v196 : ((string []) []) = v188 |> Array.transpose                    │

00:01:07 #2078 [Verbose] > │     let v197 : uint64 = System.Convert.ToUInt64 v196.Length                  │

00:01:07 #2079 [Verbose] > │     let v198 : (int64 []) = Array.zeroCreate<int64>                          │

00:01:07 #2080 [Verbose] > │ (System.Convert.ToInt32(v197))                                               │

00:01:07 #2081 [Verbose] > │     let v199 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2082 [Verbose] > │     while method4(v197, v199) do                                             │

00:01:07 #2083 [Verbose] > │         let v201 : uint64 = v199.l0                                          │

00:01:07 #2084 [Verbose] > │         let v202 : (string []) = v196.[int v201]                             │

00:01:07 #2085 [Verbose] > │         let v203 : uint64 = System.Convert.ToUInt64 v202.Length              │

00:01:07 #2086 [Verbose] > │         let v204 : (int64 []) = Array.zeroCreate<int64>                      │

00:01:07 #2087 [Verbose] > │ (System.Convert.ToInt32(v203))                                               │

00:01:07 #2088 [Verbose] > │         let v205 : Mut0 = {l0 = 0UL} : Mut0                                  │

00:01:07 #2089 [Verbose] > │         while method4(v203, v205) do                                         │

00:01:07 #2090 [Verbose] > │             let v207 : uint64 = v205.l0                                      │

00:01:07 #2091 [Verbose] > │             let v208 : string = v202.[int v207]                              │

00:01:07 #2092 [Verbose] > │             let v209 : int64 = System.Convert.ToInt64 v208.Length            │

00:01:07 #2093 [Verbose] > │             v204.[int v207] <- v209                                          │

00:01:07 #2094 [Verbose] > │             let v210 : uint64 = v207 + 1UL                                   │

00:01:07 #2095 [Verbose] > │             v205.l0 <- v210                                                  │

00:01:07 #2096 [Verbose] > │             ()                                                               │

00:01:07 #2097 [Verbose] > │         let v211 : (int64 []) = v204 |> Array.sortDescending                 │

00:01:07 #2098 [Verbose] > │         let v212 : int64 option = v211 |> Array.tryItem 0                    │

00:01:07 #2099 [Verbose] > │         let v213 : (int64 -> US1) = closure5()                               │

00:01:07 #2100 [Verbose] > │         let v214 : US1 = US1_0                                               │

00:01:07 #2101 [Verbose] > │         let v215 : US1 = v212 |> Option.map v213 |> Option.defaultValue v214 │

00:01:07 #2102 [Verbose] > │         let v218 : int64 =                                                   │

00:01:07 #2103 [Verbose] > │             match v215 with                                                  │

00:01:07 #2104 [Verbose] > │             | US1_0 -> (* None *)                                            │

00:01:07 #2105 [Verbose] > │                 0L                                                           │

00:01:07 #2106 [Verbose] > │             | US1_1(v216) -> (* Some *)                                      │

00:01:07 #2107 [Verbose] > │                 v216                                                         │

00:01:07 #2108 [Verbose] > │         v198.[int v201] <- v218                                              │

00:01:07 #2109 [Verbose] > │         let v219 : uint64 = v201 + 1UL                                       │

00:01:07 #2110 [Verbose] > │         v199.l0 <- v219                                                      │

00:01:07 #2111 [Verbose] > │         ()                                                                   │

00:01:07 #2112 [Verbose] > │     let v220 : uint64 = System.Convert.ToUInt64 v198.Length                  │

00:01:07 #2113 [Verbose] > │     let v221 : UH6 = UH6_1                                                   │

00:01:07 #2114 [Verbose] > │     let v222 : Mut3 = {l0 = 0UL; l1 = v221; l2 = 0} : Mut3                   │

00:01:07 #2115 [Verbose] > │     while method28(v220, v222) do                                            │

00:01:07 #2116 [Verbose] > │         let v224 : uint64 = v222.l0                                          │

00:01:07 #2117 [Verbose] > │         let struct (v225 : UH6, v226 : int32) = v222.l1, v222.l2             │

00:01:07 #2118 [Verbose] > │         let v227 : int64 = v198.[int v224]                                   │

00:01:07 #2119 [Verbose] > │         let v228 : int32 = v226 + 1                                          │

00:01:07 #2120 [Verbose] > │         let v229 : uint64 = v224 + 1UL                                       │

00:01:07 #2121 [Verbose] > │         let v230 : UH6 = UH6_0(v226, v227, v225)                             │

00:01:07 #2122 [Verbose] > │         v222.l0 <- v229                                                      │

00:01:07 #2123 [Verbose] > │         v222.l1 <- v230                                                      │

00:01:07 #2124 [Verbose] > │         v222.l2 <- v228                                                      │

00:01:07 #2125 [Verbose] > │         ()                                                                   │

00:01:07 #2126 [Verbose] > │     let struct (v231 : UH6, v232 : int32) = v222.l1, v222.l2                 │

00:01:07 #2127 [Verbose] > │     let v233 : UH6 = UH6_1                                                   │

00:01:07 #2128 [Verbose] > │     let v234 : UH6 = method29(v231, v233)                                    │

00:01:07 #2129 [Verbose] > │     let v235 : (struct (int32 * int64) []) = method30(v234)                  │

00:01:07 #2130 [Verbose] > │     let v236 : Map<int32, int64> = v235 |> Array.map (fun (struct (a, b)) -> │

00:01:07 #2131 [Verbose] > │ a, b) |> Map.ofArray                                                         │

00:01:07 #2132 [Verbose] > │     let v237 : (struct ((string []) * US0) []) = Array.zeroCreate<struct     │

00:01:07 #2133 [Verbose] > │ ((string []) * US0)> (System.Convert.ToInt32(v187))                          │

00:01:07 #2134 [Verbose] > │     let v238 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2135 [Verbose] > │     while method4(v187, v238) do                                             │

00:01:07 #2136 [Verbose] > │         let v240 : uint64 = v238.l0                                          │

00:01:07 #2137 [Verbose] > │         let struct (v241 : UH2, v242 : US0) = v174.[int v240]                │

00:01:07 #2138 [Verbose] > │         let v243 : UH7 = UH7_1                                               │

00:01:07 #2139 [Verbose] > │         let v244 : int32 = 0                                                 │

00:01:07 #2140 [Verbose] > │         let struct (v245 : UH7, v246 : int32) = method33(v241, v243, v244)   │

00:01:07 #2141 [Verbose] > │         let v247 : UH7 = UH7_1                                               │

00:01:07 #2142 [Verbose] > │         let v248 : UH7 = method34(v245, v247)                                │

00:01:07 #2143 [Verbose] > │         let v249 : UH2 = UH2_1                                               │

00:01:07 #2144 [Verbose] > │         let v250 : UH2 = method35(v236, v248, v249)                          │

00:01:07 #2145 [Verbose] > │         let v251 : (string []) = method9(v250)                               │

00:01:07 #2146 [Verbose] > │         v237.[int v240] <- struct (v251, v242)                               │

00:01:07 #2147 [Verbose] > │         let v252 : uint64 = v240 + 1UL                                       │

00:01:07 #2148 [Verbose] > │         v238.l0 <- v252                                                      │

00:01:07 #2149 [Verbose] > │         ()                                                                   │

00:01:07 #2150 [Verbose] > │     System.Console.WriteLine v2                                              │

00:01:07 #2151 [Verbose] > │     let v253 : uint64 = System.Convert.ToUInt64 v237.Length                  │

00:01:07 #2152 [Verbose] > │     let v254 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2153 [Verbose] > │     while method4(v253, v254) do                                             │

00:01:07 #2154 [Verbose] > │         let v256 : uint64 = v254.l0                                          │

00:01:07 #2155 [Verbose] > │         let struct (v257 : (string []), v258 : US0) = v237.[int v256]        │

00:01:07 #2156 [Verbose] > │         match v258 with                                                      │

00:01:07 #2157 [Verbose] > │         | US0_0 -> (* None *)                                                │

00:01:07 #2158 [Verbose] > │             let mutable result = None                                        │

00:01:07 #2159 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:01:07 #2160 [Verbose] > │             #if !WASM                                                        │

00:01:07 #2161 [Verbose] > │             ()                                                               │

00:01:07 #2162 [Verbose] > │             #else                                                            │

00:01:07 #2163 [Verbose] > │             ()                                                               │

00:01:07 #2164 [Verbose] > │             #endif                                                           │

00:01:07 #2165 [Verbose] > │             #else                                                            │

00:01:07 #2166 [Verbose] > │             System.Console.ResetColor ()                                     │

00:01:07 #2167 [Verbose] > │             ()                                                               │

00:01:07 #2168 [Verbose] > │             #endif                                                           │

00:01:07 #2169 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:01:07 #2170 [Verbose] > │             result |> Option.get                                             │

00:01:07 #2171 [Verbose] > │             ()                                                               │

00:01:07 #2172 [Verbose] > │         | US0_1(v259) -> (* Some *)                                          │

00:01:07 #2173 [Verbose] > │             let mutable result = None                                        │

00:01:07 #2174 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:01:07 #2175 [Verbose] > │             #if !WASM                                                        │

00:01:07 #2176 [Verbose] > │             ()                                                               │

00:01:07 #2177 [Verbose] > │             #else                                                            │

00:01:07 #2178 [Verbose] > │             ()                                                               │

00:01:07 #2179 [Verbose] > │             #endif                                                           │

00:01:07 #2180 [Verbose] > │             #else                                                            │

00:01:07 #2181 [Verbose] > │             System.Console.ForegroundColor <- v259                           │

00:01:07 #2182 [Verbose] > │             ()                                                               │

00:01:07 #2183 [Verbose] > │             #endif                                                           │

00:01:07 #2184 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:01:07 #2185 [Verbose] > │             result |> Option.get                                             │

00:01:07 #2186 [Verbose] > │             ()                                                               │

00:01:07 #2187 [Verbose] > │         let v260 : string = "\t| "                                           │

00:01:07 #2188 [Verbose] > │         let v261 : string = System.String.Join (v260, v257)                  │

00:01:07 #2189 [Verbose] > │         System.Console.WriteLine v261                                        │

00:01:07 #2190 [Verbose] > │         let mutable result = None                                            │

00:01:07 #2191 [Verbose] > │         #if FABLE_COMPILER_RUST                                              │

00:01:07 #2192 [Verbose] > │         #if !WASM                                                            │

00:01:07 #2193 [Verbose] > │         ()                                                                   │

00:01:07 #2194 [Verbose] > │         #else                                                                │

00:01:07 #2195 [Verbose] > │         ()                                                                   │

00:01:07 #2196 [Verbose] > │         #endif                                                               │

00:01:07 #2197 [Verbose] > │         #else                                                                │

00:01:07 #2198 [Verbose] > │         System.Console.ResetColor ()                                         │

00:01:07 #2199 [Verbose] > │         ()                                                                   │

00:01:07 #2200 [Verbose] > │         #endif                                                               │

00:01:07 #2201 [Verbose] > │         |> fun x -> result <- Some x                                         │

00:01:07 #2202 [Verbose] > │         result |> Option.get                                                 │

00:01:07 #2203 [Verbose] > │         let v262 : uint64 = v256 + 1UL                                       │

00:01:07 #2204 [Verbose] > │         v254.l0 <- v262                                                      │

00:01:07 #2205 [Verbose] > │         ()                                                                   │

00:01:07 #2206 [Verbose] > │     let v263 : ((float []) []) = Array.zeroCreate<(float [])>                │

00:01:07 #2207 [Verbose] > │ (System.Convert.ToInt32(v99))                                                │

00:01:07 #2208 [Verbose] > │     let v264 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2209 [Verbose] > │     while method4(v99, v264) do                                              │

00:01:07 #2210 [Verbose] > │         let v266 : uint64 = v264.l0                                          │

00:01:07 #2211 [Verbose] > │         let struct (v267 : string, v268 : string, v269 : string, v270 :      │

00:01:07 #2212 [Verbose] > │ (int64 [])) = v24.[int v266]                                                 │

00:01:07 #2213 [Verbose] > │         let v271 : (int64 -> float) = float                                  │

00:01:07 #2214 [Verbose] > │         let v272 : uint64 = System.Convert.ToUInt64 v270.Length              │

00:01:07 #2215 [Verbose] > │         let v273 : (float []) = Array.zeroCreate<float>                      │

00:01:07 #2216 [Verbose] > │ (System.Convert.ToInt32(v272))                                               │

00:01:07 #2217 [Verbose] > │         let v274 : Mut0 = {l0 = 0UL} : Mut0                                  │

00:01:07 #2218 [Verbose] > │         while method4(v272, v274) do                                         │

00:01:07 #2219 [Verbose] > │             let v276 : uint64 = v274.l0                                      │

00:01:07 #2220 [Verbose] > │             let v277 : int64 = v270.[int v276]                               │

00:01:07 #2221 [Verbose] > │             let v278 : float = v271 v277                                     │

00:01:07 #2222 [Verbose] > │             v273.[int v276] <- v278                                          │

00:01:07 #2223 [Verbose] > │             let v279 : uint64 = v276 + 1UL                                   │

00:01:07 #2224 [Verbose] > │             v274.l0 <- v279                                                  │

00:01:07 #2225 [Verbose] > │             ()                                                               │

00:01:07 #2226 [Verbose] > │         v263.[int v266] <- v273                                              │

00:01:07 #2227 [Verbose] > │         let v280 : uint64 = v266 + 1UL                                       │

00:01:07 #2228 [Verbose] > │         v264.l0 <- v280                                                      │

00:01:07 #2229 [Verbose] > │         ()                                                                   │

00:01:07 #2230 [Verbose] > │     let v281 : ((float []) []) = v263 |> Array.transpose                     │

00:01:07 #2231 [Verbose] > │     let v282 : uint64 = System.Convert.ToUInt64 v281.Length                  │

00:01:07 #2232 [Verbose] > │     let v283 : (float []) = Array.zeroCreate<float>                          │

00:01:07 #2233 [Verbose] > │ (System.Convert.ToInt32(v282))                                               │

00:01:07 #2234 [Verbose] > │     let v284 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2235 [Verbose] > │     while method4(v282, v284) do                                             │

00:01:07 #2236 [Verbose] > │         let v286 : uint64 = v284.l0                                          │

00:01:07 #2237 [Verbose] > │         let v287 : (float []) = v281.[int v286]                              │

00:01:07 #2238 [Verbose] > │         let v288 : float = v287 |> Array.average                             │

00:01:07 #2239 [Verbose] > │         v283.[int v286] <- v288                                              │

00:01:07 #2240 [Verbose] > │         let v289 : uint64 = v286 + 1UL                                       │

00:01:07 #2241 [Verbose] > │         v284.l0 <- v289                                                      │

00:01:07 #2242 [Verbose] > │         ()                                                                   │

00:01:07 #2243 [Verbose] > │     let v290 : (float -> int64) = int64                                      │

00:01:07 #2244 [Verbose] > │     let v291 : uint64 = System.Convert.ToUInt64 v283.Length                  │

00:01:07 #2245 [Verbose] > │     let v292 : (int64 []) = Array.zeroCreate<int64>                          │

00:01:07 #2246 [Verbose] > │ (System.Convert.ToInt32(v291))                                               │

00:01:07 #2247 [Verbose] > │     let v293 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2248 [Verbose] > │     while method4(v291, v293) do                                             │

00:01:07 #2249 [Verbose] > │         let v295 : uint64 = v293.l0                                          │

00:01:07 #2250 [Verbose] > │         let v296 : float = v283.[int v295]                                   │

00:01:07 #2251 [Verbose] > │         let v297 : int64 = v290 v296                                         │

00:01:07 #2252 [Verbose] > │         v292.[int v295] <- v297                                              │

00:01:07 #2253 [Verbose] > │         let v298 : uint64 = v295 + 1UL                                       │

00:01:07 #2254 [Verbose] > │         v293.l0 <- v298                                                      │

00:01:07 #2255 [Verbose] > │         ()                                                                   │

00:01:07 #2256 [Verbose] > │     let v299 : uint64 = System.Convert.ToUInt64 v292.Length                  │

00:01:07 #2257 [Verbose] > │     let v300 : UH6 = UH6_1                                                   │

00:01:07 #2258 [Verbose] > │     let v301 : Mut3 = {l0 = 0UL; l1 = v300; l2 = 0} : Mut3                   │

00:01:07 #2259 [Verbose] > │     while method28(v299, v301) do                                            │

00:01:07 #2260 [Verbose] > │         let v303 : uint64 = v301.l0                                          │

00:01:07 #2261 [Verbose] > │         let struct (v304 : UH6, v305 : int32) = v301.l1, v301.l2             │

00:01:07 #2262 [Verbose] > │         let v306 : int64 = v292.[int v303]                                   │

00:01:07 #2263 [Verbose] > │         let v307 : int32 = v305 + 1                                          │

00:01:07 #2264 [Verbose] > │         let v308 : uint64 = v303 + 1UL                                       │

00:01:07 #2265 [Verbose] > │         let v309 : UH6 = UH6_0(v305, v306, v304)                             │

00:01:07 #2266 [Verbose] > │         v301.l0 <- v308                                                      │

00:01:07 #2267 [Verbose] > │         v301.l1 <- v309                                                      │

00:01:07 #2268 [Verbose] > │         v301.l2 <- v307                                                      │

00:01:07 #2269 [Verbose] > │         ()                                                                   │

00:01:07 #2270 [Verbose] > │     let struct (v310 : UH6, v311 : int32) = v301.l1, v301.l2                 │

00:01:07 #2271 [Verbose] > │     let v312 : UH6 = UH6_1                                                   │

00:01:07 #2272 [Verbose] > │     let v313 : UH6 = method29(v310, v312)                                    │

00:01:07 #2273 [Verbose] > │     let v314 : (struct (int32 * int64) []) = method36(v313)                  │

00:01:07 #2274 [Verbose] > │     System.Console.WriteLine v2                                              │

00:01:07 #2275 [Verbose] > │     let v315 : string = "Average Ranking  "                                  │

00:01:07 #2276 [Verbose] > │     System.Console.WriteLine v315                                            │

00:01:07 #2277 [Verbose] > │     let v316 : (struct (int32 * int64) -> int64) = closure6()                │

00:01:07 #2278 [Verbose] > │     let v317 : (struct (int32 * int64) []) = v314 |> Array.sortBy v316       │

00:01:07 #2279 [Verbose] > │     let v318 : uint64 = System.Convert.ToUInt64 v317.Length                  │

00:01:07 #2280 [Verbose] > │     let v319 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2281 [Verbose] > │     while method4(v318, v319) do                                             │

00:01:07 #2282 [Verbose] > │         let v321 : uint64 = v319.l0                                          │

00:01:07 #2283 [Verbose] > │         let struct (v322 : int32, v323 : int64) = v317.[int v321]            │

00:01:07 #2284 [Verbose] > │         let v324 : string = $"Test case %d{v322 + 1}. Average Time: %A{v323} │

00:01:07 #2285 [Verbose] > │ "                                                                            │

00:01:07 #2286 [Verbose] > │         System.Console.WriteLine v324                                        │

00:01:07 #2287 [Verbose] > │         let v325 : uint64 = v321 + 1UL                                       │

00:01:07 #2288 [Verbose] > │         v319.l0 <- v325                                                      │

00:01:07 #2289 [Verbose] > │         ()                                                                   │

00:01:07 #2290 [Verbose] > │     ()                                                                       │

00:01:07 #2291 [Verbose] > │ and method0 () : unit =                                                      │

00:01:07 #2292 [Verbose] > │     let v0 : (unit -> unit) = closure0()                                     │

00:01:07 #2293 [Verbose] > │     let v1 : string = nameof v0                                              │

00:01:07 #2294 [Verbose] > │     let v2 : string = ""                                                     │

00:01:07 #2295 [Verbose] > │     System.Console.WriteLine v2                                              │

00:01:07 #2296 [Verbose] > │     System.Console.WriteLine v2                                              │

00:01:07 #2297 [Verbose] > │     let v3 : string = $"Test: {v1}"                                          │

00:01:07 #2298 [Verbose] > │     System.Console.WriteLine v3                                              │

00:01:07 #2299 [Verbose] > │     let v4 : string = "abc"                                                  │

00:01:07 #2300 [Verbose] > │     let v5 : string = "bca cab abc"                                          │

00:01:07 #2301 [Verbose] > │     let v6 : string = "abcde"                                                │

00:01:07 #2302 [Verbose] > │     let v7 : string = "bcdea cdeab deabc eabcd abcde"                        │

00:01:07 #2303 [Verbose] > │     let v8 : string = "abcdefghi"                                            │

00:01:07 #2304 [Verbose] > │     let v9 : string = "bcdefghia cdefghiab defghiabc efghiabcd fghiabcde     │

00:01:07 #2305 [Verbose] > │ ghiabcdef hiabcdefg iabcdefgh abcdefghi"                                     │

00:01:07 #2306 [Verbose] > │     let v10 : string = "abab"                                                │

00:01:07 #2307 [Verbose] > │     let v11 : string = "baba abab baba abab"                                 │

00:01:07 #2308 [Verbose] > │     let v12 : string = "aa"                                                  │

00:01:07 #2309 [Verbose] > │     let v13 : string = "aa aa"                                               │

00:01:07 #2310 [Verbose] > │     let v14 : string = "z"                                                   │

00:01:07 #2311 [Verbose] > │     let v15 : UH0 = UH0_1                                                    │

00:01:07 #2312 [Verbose] > │     let v16 : UH0 = UH0_0(v14, v14, v15)                                     │

00:01:07 #2313 [Verbose] > │     let v17 : UH0 = UH0_0(v12, v13, v16)                                     │

00:01:07 #2314 [Verbose] > │     let v18 : UH0 = UH0_0(v10, v11, v17)                                     │

00:01:07 #2315 [Verbose] > │     let v19 : UH0 = UH0_0(v8, v9, v18)                                       │

00:01:07 #2316 [Verbose] > │     let v20 : UH0 = UH0_0(v6, v7, v19)                                       │

00:01:07 #2317 [Verbose] > │     let v21 : UH0 = UH0_0(v4, v5, v20)                                       │

00:01:07 #2318 [Verbose] > │     let v22 : (struct (string * string) []) = method1(v21)                   │

00:01:07 #2319 [Verbose] > │     let v23 : uint64 = System.Convert.ToUInt64 v22.Length                    │

00:01:07 #2320 [Verbose] > │     let v24 : (struct (string * string * string * (int64 [])) []) =          │

00:01:07 #2321 [Verbose] > │ Array.zeroCreate<struct (string * string * string * (int64 []))>             │

00:01:07 #2322 [Verbose] > │ (System.Convert.ToInt32(v23))                                                │

00:01:07 #2323 [Verbose] > │     let v25 : Mut0 = {l0 = 0UL} : Mut0                                       │

00:01:07 #2324 [Verbose] > │     while method4(v23, v25) do                                               │

00:01:07 #2325 [Verbose] > │         let v27 : uint64 = v25.l0                                            │

00:01:07 #2326 [Verbose] > │         let struct (v28 : string, v29 : string) = v22.[int v27]              │

00:01:07 #2327 [Verbose] > │         let v30 : string = $"%A{v28}"                                        │

00:01:07 #2328 [Verbose] > │         System.Console.WriteLine v2                                          │

00:01:07 #2329 [Verbose] > │         let v31 : string = $"Solution: {v30}  "                              │

00:01:07 #2330 [Verbose] > │         System.Console.WriteLine v31                                         │

00:01:07 #2331 [Verbose] > │         let v32 : int32 = 0                                                  │

00:01:07 #2332 [Verbose] > │         let v33 : string = "F"                                               │

00:01:07 #2333 [Verbose] > │         let v34 : (string -> string) = closure1()                            │

00:01:07 #2334 [Verbose] > │         let v35 : int32 = 1                                                  │

00:01:07 #2335 [Verbose] > │         let v36 : string = "FA"                                              │

00:01:07 #2336 [Verbose] > │         let v37 : (string -> string) = closure2()                            │

00:01:07 #2337 [Verbose] > │         let v38 : UH3 = UH3_1                                                │

00:01:07 #2338 [Verbose] > │         let v39 : UH3 = UH3_0(v35, v36, v37, v38)                            │

00:01:07 #2339 [Verbose] > │         let v40 : UH3 = UH3_0(v32, v33, v34, v39)                            │

00:01:07 #2340 [Verbose] > │         let v41 : (struct (int32 * string * (string -> string)) []) =        │

00:01:07 #2341 [Verbose] > │ method12(v40)                                                                │

00:01:07 #2342 [Verbose] > │         let v42 : uint64 = System.Convert.ToUInt64 v41.Length                │

00:01:07 #2343 [Verbose] > │         let v43 : (struct (string * int64) []) = Array.zeroCreate<struct     │

00:01:07 #2344 [Verbose] > │ (string * int64)> (System.Convert.ToInt32(v42))                              │

00:01:07 #2345 [Verbose] > │         let v44 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:01:07 #2346 [Verbose] > │         while method4(v42, v44) do                                           │

00:01:07 #2347 [Verbose] > │             let v46 : uint64 = v44.l0                                        │

00:01:07 #2348 [Verbose] > │             let struct (v47 : int32, v48 : string, v49 : (string -> string)) │

00:01:07 #2349 [Verbose] > │ = v41.[int v46]                                                              │

00:01:07 #2350 [Verbose] > │             let mutable result = None                                        │

00:01:07 #2351 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:01:07 #2352 [Verbose] > │             #if !WASM                                                        │

00:01:07 #2353 [Verbose] > │             ()                                                               │

00:01:07 #2354 [Verbose] > │             #else                                                            │

00:01:07 #2355 [Verbose] > │             ()                                                               │

00:01:07 #2356 [Verbose] > │             #endif                                                           │

00:01:07 #2357 [Verbose] > │             #else                                                            │

00:01:07 #2358 [Verbose] > │             System.GC.Collect ()                                             │

00:01:07 #2359 [Verbose] > │             ()                                                               │

00:01:07 #2360 [Verbose] > │             #endif                                                           │

00:01:07 #2361 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:01:07 #2362 [Verbose] > │             result |> Option.get                                             │

00:01:07 #2363 [Verbose] > │             let v50 : (unit -> System.Diagnostics.Stopwatch) =               │

00:01:07 #2364 [Verbose] > │ System.Diagnostics.Stopwatch                                                 │

00:01:07 #2365 [Verbose] > │             let v51 : System.Diagnostics.Stopwatch = v50 ()                  │

00:01:07 #2366 [Verbose] > │             v51.Start ()                                                     │

00:01:07 #2367 [Verbose] > │             let v52 : int64 = v51.ElapsedMilliseconds                        │

00:01:07 #2368 [Verbose] > │             let v53 : (int32 []) = Array.zeroCreate<int32> (2000001)         │

00:01:07 #2369 [Verbose] > │             let v54 : Mut1 = {l0 = 0} : Mut1                                 │

00:01:07 #2370 [Verbose] > │             while method15(v54) do                                           │

00:01:07 #2371 [Verbose] > │                 let v56 : int32 = v54.l0                                     │

00:01:07 #2372 [Verbose] > │                 v53.[int v56] <- v56                                         │

00:01:07 #2373 [Verbose] > │                 let v57 : int32 = v56 + 1                                    │

00:01:07 #2374 [Verbose] > │                 v54.l0 <- v57                                                │

00:01:07 #2375 [Verbose] > │                 ()                                                           │

00:01:07 #2376 [Verbose] > │             let v58 : (int32 -> string) = closure3(v28, v49)                 │

00:01:07 #2377 [Verbose] > │             let v59 : (string []) = v53 |> Array.Parallel.map v58            │

00:01:07 #2378 [Verbose] > │             let v60 : int32 = v59.Length                                     │

00:01:07 #2379 [Verbose] > │             let v61 : int32 = v60 - 1                                        │

00:01:07 #2380 [Verbose] > │             let v62 : string = v59.[int v61]                                 │

00:01:07 #2381 [Verbose] > │             let v63 : int64 = v51.ElapsedMilliseconds                        │

00:01:07 #2382 [Verbose] > │             let v64 : int64 = v63 - v52                                      │

00:01:07 #2383 [Verbose] > │             let v65 : string = $"Test case {v47 + 1}. {v48}. Time: {v64}  "  │

00:01:07 #2384 [Verbose] > │             System.Console.WriteLine v65                                     │

00:01:07 #2385 [Verbose] > │             v43.[int v46] <- struct (v62, v64)                               │

00:01:07 #2386 [Verbose] > │             let v66 : uint64 = v46 + 1UL                                     │

00:01:07 #2387 [Verbose] > │             v44.l0 <- v66                                                    │

00:01:07 #2388 [Verbose] > │             ()                                                               │

00:01:07 #2389 [Verbose] > │         let v67 : uint64 = System.Convert.ToUInt64 v43.Length                │

00:01:07 #2390 [Verbose] > │         let v68 : (string []) = Array.zeroCreate<string>                     │

00:01:07 #2391 [Verbose] > │ (System.Convert.ToInt32(v67))                                                │

00:01:07 #2392 [Verbose] > │         let v69 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:01:07 #2393 [Verbose] > │         while method4(v67, v69) do                                           │

00:01:07 #2394 [Verbose] > │             let v71 : uint64 = v69.l0                                        │

00:01:07 #2395 [Verbose] > │             let struct (v72 : string, v73 : int64) = v43.[int v71]           │

00:01:07 #2396 [Verbose] > │             v68.[int v71] <- v72                                             │

00:01:07 #2397 [Verbose] > │             let v74 : uint64 = v71 + 1UL                                     │

00:01:07 #2398 [Verbose] > │             v69.l0 <- v74                                                    │

00:01:07 #2399 [Verbose] > │             ()                                                               │

00:01:07 #2400 [Verbose] > │         let v75 : uint64 = System.Convert.ToUInt64 v68.Length                │

00:01:07 #2401 [Verbose] > │         let v76 : bool = v75 <= 1UL                                          │

00:01:07 #2402 [Verbose] > │         if v76 then                                                          │

00:01:07 #2403 [Verbose] > │             ()                                                               │

00:01:07 #2404 [Verbose] > │         else                                                                 │

00:01:07 #2405 [Verbose] > │             let v77 : string = v68.[int 0UL]                                 │

00:01:07 #2406 [Verbose] > │             let v78 : uint64 = 0UL                                           │

00:01:07 #2407 [Verbose] > │             let v79 : bool = method16(v77, v68, v78)                         │

00:01:07 #2408 [Verbose] > │             if v79 then                                                      │

00:01:07 #2409 [Verbose] > │                 ()                                                           │

00:01:07 #2410 [Verbose] > │             else                                                             │

00:01:07 #2411 [Verbose] > │                 let v80 : string = $"Challenge error: {v68}"                 │

00:01:07 #2412 [Verbose] > │                 failwith<unit> v80                                           │

00:01:07 #2413 [Verbose] > │         let v81 : string = $"%A{v29}"                                        │

00:01:07 #2414 [Verbose] > │         let v82 : (string []) = Array.zeroCreate<string>                     │

00:01:07 #2415 [Verbose] > │ (System.Convert.ToInt32(v67))                                                │

00:01:07 #2416 [Verbose] > │         let v83 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:01:07 #2417 [Verbose] > │         while method4(v67, v83) do                                           │

00:01:07 #2418 [Verbose] > │             let v85 : uint64 = v83.l0                                        │

00:01:07 #2419 [Verbose] > │             let struct (v86 : string, v87 : int64) = v43.[int v85]           │

00:01:07 #2420 [Verbose] > │             v82.[int v85] <- v86                                             │

00:01:07 #2421 [Verbose] > │             let v88 : uint64 = v85 + 1UL                                     │

00:01:07 #2422 [Verbose] > │             v83.l0 <- v88                                                    │

00:01:07 #2423 [Verbose] > │             ()                                                               │

00:01:07 #2424 [Verbose] > │         let v89 : string = v82.[int 0UL]                                     │

00:01:07 #2425 [Verbose] > │         let v90 : string = $"%A{v89}"                                        │

00:01:07 #2426 [Verbose] > │         let v91 : (int64 []) = Array.zeroCreate<int64>                       │

00:01:07 #2427 [Verbose] > │ (System.Convert.ToInt32(v67))                                                │

00:01:07 #2428 [Verbose] > │         let v92 : Mut0 = {l0 = 0UL} : Mut0                                   │

00:01:07 #2429 [Verbose] > │         while method4(v67, v92) do                                           │

00:01:07 #2430 [Verbose] > │             let v94 : uint64 = v92.l0                                        │

00:01:07 #2431 [Verbose] > │             let struct (v95 : string, v96 : int64) = v43.[int v94]           │

00:01:07 #2432 [Verbose] > │             v91.[int v94] <- v96                                             │

00:01:07 #2433 [Verbose] > │             let v97 : uint64 = v94 + 1UL                                     │

00:01:07 #2434 [Verbose] > │             v92.l0 <- v97                                                    │

00:01:07 #2435 [Verbose] > │             ()                                                               │

00:01:07 #2436 [Verbose] > │         v24.[int v27] <- struct (v81, v30, v90, v91)                         │

00:01:07 #2437 [Verbose] > │         let v98 : uint64 = v27 + 1UL                                         │

00:01:07 #2438 [Verbose] > │         v25.l0 <- v98                                                        │

00:01:07 #2439 [Verbose] > │         ()                                                                   │

00:01:07 #2440 [Verbose] > │     let v99 : uint64 = System.Convert.ToUInt64 v24.Length                    │

00:01:07 #2441 [Verbose] > │     let v100 : (struct (UH2 * US0) []) = Array.zeroCreate<struct (UH2 *      │

00:01:07 #2442 [Verbose] > │ US0)> (System.Convert.ToInt32(v99))                                          │

00:01:07 #2443 [Verbose] > │     let v101 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2444 [Verbose] > │     while method4(v99, v101) do                                              │

00:01:07 #2445 [Verbose] > │         let v103 : uint64 = v101.l0                                          │

00:01:07 #2446 [Verbose] > │         let struct (v104 : string, v105 : string, v106 : string, v107 :      │

00:01:07 #2447 [Verbose] > │ (int64 [])) = v24.[int v103]                                                 │

00:01:07 #2448 [Verbose] > │         let v108 : uint64 = System.Convert.ToUInt64 v107.Length              │

00:01:07 #2449 [Verbose] > │         let v109 : UH4 = UH4_1                                               │

00:01:07 #2450 [Verbose] > │         let v110 : Mut2 = {l0 = 0UL; l1 = v109; l2 = 0L} : Mut2              │

00:01:07 #2451 [Verbose] > │         while method17(v108, v110) do                                        │

00:01:07 #2452 [Verbose] > │             let v112 : uint64 = v110.l0                                      │

00:01:07 #2453 [Verbose] > │             let struct (v113 : UH4, v114 : int64) = v110.l1, v110.l2         │

00:01:07 #2454 [Verbose] > │             let v115 : int64 = v107.[int v112]                               │

00:01:07 #2455 [Verbose] > │             let v116 : int64 = v114 + 1L                                     │

00:01:07 #2456 [Verbose] > │             let v117 : uint64 = v112 + 1UL                                   │

00:01:07 #2457 [Verbose] > │             let v118 : UH4 = UH4_0(v114, v115, v113)                         │

00:01:07 #2458 [Verbose] > │             v110.l0 <- v117                                                  │

00:01:07 #2459 [Verbose] > │             v110.l1 <- v118                                                  │

00:01:07 #2460 [Verbose] > │             v110.l2 <- v116                                                  │

00:01:07 #2461 [Verbose] > │             ()                                                               │

00:01:07 #2462 [Verbose] > │         let struct (v119 : UH4, v120 : int64) = v110.l1, v110.l2             │

00:01:07 #2463 [Verbose] > │         let v121 : UH4 = UH4_1                                               │

00:01:07 #2464 [Verbose] > │         let v122 : UH4 = method18(v119, v121)                                │

00:01:07 #2465 [Verbose] > │         let v123 : (struct (int64 * int64) []) = method19(v122)              │

00:01:07 #2466 [Verbose] > │         let v124 : int32 = v123.Length                                       │

00:01:07 #2467 [Verbose] > │         let v125 : (struct (int64 * int64) []) = Array.zeroCreate<struct     │

00:01:07 #2468 [Verbose] > │ (int64 * int64)> (v124)                                                      │

00:01:07 #2469 [Verbose] > │         let v126 : Mut1 = {l0 = 0} : Mut1                                    │

00:01:07 #2470 [Verbose] > │         while method5(v124, v126) do                                         │

00:01:07 #2471 [Verbose] > │             let v128 : int32 = v126.l0                                       │

00:01:07 #2472 [Verbose] > │             let struct (v129 : int64, v130 : int64) = v123.[int v128]        │

00:01:07 #2473 [Verbose] > │             let v131 : int64 = v129 + 1L                                     │

00:01:07 #2474 [Verbose] > │             v125.[int v128] <- struct (v131, v130)                           │

00:01:07 #2475 [Verbose] > │             let v132 : int32 = v128 + 1                                      │

00:01:07 #2476 [Verbose] > │             v126.l0 <- v132                                                  │

00:01:07 #2477 [Verbose] > │             ()                                                               │

00:01:07 #2478 [Verbose] > │         let v133 : (struct (int64 * int64) -> int64) = closure4()            │

00:01:07 #2479 [Verbose] > │         let v134 : (struct (int64 * int64) []) = v125 |> Array.sortBy v133   │

00:01:07 #2480 [Verbose] > │         let struct (v135 : int64, v136 : int64) = v134.[int 0]               │

00:01:07 #2481 [Verbose] > │         let v137 : string = $"%A{struct (v135, v136)}"                       │

00:01:07 #2482 [Verbose] > │         let v138 : bool = v104 = v106                                        │

00:01:07 #2483 [Verbose] > │         let v143 : US0 =                                                     │

00:01:07 #2484 [Verbose] > │             if v138 then                                                     │

00:01:07 #2485 [Verbose] > │                 let v139 : System.ConsoleColor =                             │

00:01:07 #2486 [Verbose] > │ System.ConsoleColor.DarkGreen                                                │

00:01:07 #2487 [Verbose] > │                 US0_1(v139)                                                  │

00:01:07 #2488 [Verbose] > │             else                                                             │

00:01:07 #2489 [Verbose] > │                 let v141 : System.ConsoleColor = System.ConsoleColor.DarkRed │

00:01:07 #2490 [Verbose] > │                 US0_1(v141)                                                  │

00:01:07 #2491 [Verbose] > │         let v144 : UH2 = UH2_1                                               │

00:01:07 #2492 [Verbose] > │         let v145 : UH2 = UH2_0(v137, v144)                                   │

00:01:07 #2493 [Verbose] > │         let v146 : UH2 = UH2_0(v106, v145)                                   │

00:01:07 #2494 [Verbose] > │         let v147 : UH2 = UH2_0(v104, v146)                                   │

00:01:07 #2495 [Verbose] > │         let v148 : UH2 = UH2_0(v105, v147)                                   │

00:01:07 #2496 [Verbose] > │         v100.[int v103] <- struct (v148, v143)                               │

00:01:07 #2497 [Verbose] > │         let v149 : uint64 = v103 + 1UL                                       │

00:01:07 #2498 [Verbose] > │         v101.l0 <- v149                                                      │

00:01:07 #2499 [Verbose] > │         ()                                                                   │

00:01:07 #2500 [Verbose] > │     let v150 : string = "Input"                                              │

00:01:07 #2501 [Verbose] > │     let v151 : string = "Expected"                                           │

00:01:07 #2502 [Verbose] > │     let v152 : string = "Result"                                             │

00:01:07 #2503 [Verbose] > │     let v153 : string = "Best"                                               │

00:01:07 #2504 [Verbose] > │     let v154 : UH2 = UH2_1                                                   │

00:01:07 #2505 [Verbose] > │     let v155 : UH2 = UH2_0(v153, v154)                                       │

00:01:07 #2506 [Verbose] > │     let v156 : UH2 = UH2_0(v152, v155)                                       │

00:01:07 #2507 [Verbose] > │     let v157 : UH2 = UH2_0(v151, v156)                                       │

00:01:07 #2508 [Verbose] > │     let v158 : UH2 = UH2_0(v150, v157)                                       │

00:01:07 #2509 [Verbose] > │     let v159 : US0 = US0_0                                                   │

00:01:07 #2510 [Verbose] > │     let v160 : string = "---"                                                │

00:01:07 #2511 [Verbose] > │     let v161 : UH2 = UH2_1                                                   │

00:01:07 #2512 [Verbose] > │     let v162 : UH2 = UH2_0(v160, v161)                                       │

00:01:07 #2513 [Verbose] > │     let v163 : UH2 = UH2_0(v160, v162)                                       │

00:01:07 #2514 [Verbose] > │     let v164 : UH2 = UH2_0(v160, v163)                                       │

00:01:07 #2515 [Verbose] > │     let v165 : UH2 = UH2_0(v160, v164)                                       │

00:01:07 #2516 [Verbose] > │     let v166 : US0 = US0_0                                                   │

00:01:07 #2517 [Verbose] > │     let v167 : UH5 = UH5_1                                                   │

00:01:07 #2518 [Verbose] > │     let v168 : UH5 = UH5_0(v165, v166, v167)                                 │

00:01:07 #2519 [Verbose] > │     let v169 : UH5 = UH5_0(v158, v159, v168)                                 │

00:01:07 #2520 [Verbose] > │     let v170 : (struct (UH2 * US0) []) = method22(v169)                      │

00:01:07 #2521 [Verbose] > │     let v171 : uint64 = System.Convert.ToUInt64 v170.Length                  │

00:01:07 #2522 [Verbose] > │     let v172 : uint64 = System.Convert.ToUInt64 v100.Length                  │

00:01:07 #2523 [Verbose] > │     let v173 : uint64 = v171 + v172                                          │

00:01:07 #2524 [Verbose] > │     let v174 : (struct (UH2 * US0) []) = Array.zeroCreate<struct (UH2 *      │

00:01:07 #2525 [Verbose] > │ US0)> (System.Convert.ToInt32(v173))                                         │

00:01:07 #2526 [Verbose] > │     let v175 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2527 [Verbose] > │     while method4(v173, v175) do                                             │

00:01:07 #2528 [Verbose] > │         let v177 : uint64 = v175.l0                                          │

00:01:07 #2529 [Verbose] > │         let v178 : bool = v177 < v171                                        │

00:01:07 #2530 [Verbose] > │         let struct (v184 : UH2, v185 : US0) =                                │

00:01:07 #2531 [Verbose] > │             if v178 then                                                     │

00:01:07 #2532 [Verbose] > │                 let struct (v179 : UH2, v180 : US0) = v170.[int v177]        │

00:01:07 #2533 [Verbose] > │                 struct (v179, v180)                                          │

00:01:07 #2534 [Verbose] > │             else                                                             │

00:01:07 #2535 [Verbose] > │                 let v181 : uint64 = v177 - v171                              │

00:01:07 #2536 [Verbose] > │                 let struct (v182 : UH2, v183 : US0) = v100.[int v181]        │

00:01:07 #2537 [Verbose] > │                 struct (v182, v183)                                          │

00:01:07 #2538 [Verbose] > │         v174.[int v177] <- struct (v184, v185)                               │

00:01:07 #2539 [Verbose] > │         let v186 : uint64 = v177 + 1UL                                       │

00:01:07 #2540 [Verbose] > │         v175.l0 <- v186                                                      │

00:01:07 #2541 [Verbose] > │         ()                                                                   │

00:01:07 #2542 [Verbose] > │     let v187 : uint64 = System.Convert.ToUInt64 v174.Length                  │

00:01:07 #2543 [Verbose] > │     let v188 : ((string []) []) = Array.zeroCreate<(string [])>              │

00:01:07 #2544 [Verbose] > │ (System.Convert.ToInt32(v187))                                               │

00:01:07 #2545 [Verbose] > │     let v189 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2546 [Verbose] > │     while method4(v187, v189) do                                             │

00:01:07 #2547 [Verbose] > │         let v191 : uint64 = v189.l0                                          │

00:01:07 #2548 [Verbose] > │         let struct (v192 : UH2, v193 : US0) = v174.[int v191]                │

00:01:07 #2549 [Verbose] > │         let v194 : (string []) = method25(v192)                              │

00:01:07 #2550 [Verbose] > │         v188.[int v191] <- v194                                              │

00:01:07 #2551 [Verbose] > │         let v195 : uint64 = v191 + 1UL                                       │

00:01:07 #2552 [Verbose] > │         v189.l0 <- v195                                                      │

00:01:07 #2553 [Verbose] > │         ()                                                                   │

00:01:07 #2554 [Verbose] > │     let v196 : ((string []) []) = v188 |> Array.transpose                    │

00:01:07 #2555 [Verbose] > │     let v197 : uint64 = System.Convert.ToUInt64 v196.Length                  │

00:01:07 #2556 [Verbose] > │     let v198 : (int64 []) = Array.zeroCreate<int64>                          │

00:01:07 #2557 [Verbose] > │ (System.Convert.ToInt32(v197))                                               │

00:01:07 #2558 [Verbose] > │     let v199 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2559 [Verbose] > │     while method4(v197, v199) do                                             │

00:01:07 #2560 [Verbose] > │         let v201 : uint64 = v199.l0                                          │

00:01:07 #2561 [Verbose] > │         let v202 : (string []) = v196.[int v201]                             │

00:01:07 #2562 [Verbose] > │         let v203 : uint64 = System.Convert.ToUInt64 v202.Length              │

00:01:07 #2563 [Verbose] > │         let v204 : (int64 []) = Array.zeroCreate<int64>                      │

00:01:07 #2564 [Verbose] > │ (System.Convert.ToInt32(v203))                                               │

00:01:07 #2565 [Verbose] > │         let v205 : Mut0 = {l0 = 0UL} : Mut0                                  │

00:01:07 #2566 [Verbose] > │         while method4(v203, v205) do                                         │

00:01:07 #2567 [Verbose] > │             let v207 : uint64 = v205.l0                                      │

00:01:07 #2568 [Verbose] > │             let v208 : string = v202.[int v207]                              │

00:01:07 #2569 [Verbose] > │             let v209 : int64 = System.Convert.ToInt64 v208.Length            │

00:01:07 #2570 [Verbose] > │             v204.[int v207] <- v209                                          │

00:01:07 #2571 [Verbose] > │             let v210 : uint64 = v207 + 1UL                                   │

00:01:07 #2572 [Verbose] > │             v205.l0 <- v210                                                  │

00:01:07 #2573 [Verbose] > │             ()                                                               │

00:01:07 #2574 [Verbose] > │         let v211 : (int64 []) = v204 |> Array.sortDescending                 │

00:01:07 #2575 [Verbose] > │         let v212 : int64 option = v211 |> Array.tryItem 0                    │

00:01:07 #2576 [Verbose] > │         let v213 : (int64 -> US1) = closure5()                               │

00:01:07 #2577 [Verbose] > │         let v214 : US1 = US1_0                                               │

00:01:07 #2578 [Verbose] > │         let v215 : US1 = v212 |> Option.map v213 |> Option.defaultValue v214 │

00:01:07 #2579 [Verbose] > │         let v218 : int64 =                                                   │

00:01:07 #2580 [Verbose] > │             match v215 with                                                  │

00:01:07 #2581 [Verbose] > │             | US1_0 -> (* None *)                                            │

00:01:07 #2582 [Verbose] > │                 0L                                                           │

00:01:07 #2583 [Verbose] > │             | US1_1(v216) -> (* Some *)                                      │

00:01:07 #2584 [Verbose] > │                 v216                                                         │

00:01:07 #2585 [Verbose] > │         v198.[int v201] <- v218                                              │

00:01:07 #2586 [Verbose] > │         let v219 : uint64 = v201 + 1UL                                       │

00:01:07 #2587 [Verbose] > │         v199.l0 <- v219                                                      │

00:01:07 #2588 [Verbose] > │         ()                                                                   │

00:01:07 #2589 [Verbose] > │     let v220 : uint64 = System.Convert.ToUInt64 v198.Length                  │

00:01:07 #2590 [Verbose] > │     let v221 : UH6 = UH6_1                                                   │

00:01:07 #2591 [Verbose] > │     let v222 : Mut3 = {l0 = 0UL; l1 = v221; l2 = 0} : Mut3                   │

00:01:07 #2592 [Verbose] > │     while method28(v220, v222) do                                            │

00:01:07 #2593 [Verbose] > │         let v224 : uint64 = v222.l0                                          │

00:01:07 #2594 [Verbose] > │         let struct (v225 : UH6, v226 : int32) = v222.l1, v222.l2             │

00:01:07 #2595 [Verbose] > │         let v227 : int64 = v198.[int v224]                                   │

00:01:07 #2596 [Verbose] > │         let v228 : int32 = v226 + 1                                          │

00:01:07 #2597 [Verbose] > │         let v229 : uint64 = v224 + 1UL                                       │

00:01:07 #2598 [Verbose] > │         let v230 : UH6 = UH6_0(v226, v227, v225)                             │

00:01:07 #2599 [Verbose] > │         v222.l0 <- v229                                                      │

00:01:07 #2600 [Verbose] > │         v222.l1 <- v230                                                      │

00:01:07 #2601 [Verbose] > │         v222.l2 <- v228                                                      │

00:01:07 #2602 [Verbose] > │         ()                                                                   │

00:01:07 #2603 [Verbose] > │     let struct (v231 : UH6, v232 : int32) = v222.l1, v222.l2                 │

00:01:07 #2604 [Verbose] > │     let v233 : UH6 = UH6_1                                                   │

00:01:07 #2605 [Verbose] > │     let v234 : UH6 = method29(v231, v233)                                    │

00:01:07 #2606 [Verbose] > │     let v235 : (struct (int32 * int64) []) = method30(v234)                  │

00:01:07 #2607 [Verbose] > │     let v236 : Map<int32, int64> = v235 |> Array.map (fun (struct (a, b)) -> │

00:01:07 #2608 [Verbose] > │ a, b) |> Map.ofArray                                                         │

00:01:07 #2609 [Verbose] > │     let v237 : (struct ((string []) * US0) []) = Array.zeroCreate<struct     │

00:01:07 #2610 [Verbose] > │ ((string []) * US0)> (System.Convert.ToInt32(v187))                          │

00:01:07 #2611 [Verbose] > │     let v238 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2612 [Verbose] > │     while method4(v187, v238) do                                             │

00:01:07 #2613 [Verbose] > │         let v240 : uint64 = v238.l0                                          │

00:01:07 #2614 [Verbose] > │         let struct (v241 : UH2, v242 : US0) = v174.[int v240]                │

00:01:07 #2615 [Verbose] > │         let v243 : UH7 = UH7_1                                               │

00:01:07 #2616 [Verbose] > │         let v244 : int32 = 0                                                 │

00:01:07 #2617 [Verbose] > │         let struct (v245 : UH7, v246 : int32) = method33(v241, v243, v244)   │

00:01:07 #2618 [Verbose] > │         let v247 : UH7 = UH7_1                                               │

00:01:07 #2619 [Verbose] > │         let v248 : UH7 = method34(v245, v247)                                │

00:01:07 #2620 [Verbose] > │         let v249 : UH2 = UH2_1                                               │

00:01:07 #2621 [Verbose] > │         let v250 : UH2 = method35(v236, v248, v249)                          │

00:01:07 #2622 [Verbose] > │         let v251 : (string []) = method9(v250)                               │

00:01:07 #2623 [Verbose] > │         v237.[int v240] <- struct (v251, v242)                               │

00:01:07 #2624 [Verbose] > │         let v252 : uint64 = v240 + 1UL                                       │

00:01:07 #2625 [Verbose] > │         v238.l0 <- v252                                                      │

00:01:07 #2626 [Verbose] > │         ()                                                                   │

00:01:07 #2627 [Verbose] > │     System.Console.WriteLine v2                                              │

00:01:07 #2628 [Verbose] > │     let v253 : uint64 = System.Convert.ToUInt64 v237.Length                  │

00:01:07 #2629 [Verbose] > │     let v254 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2630 [Verbose] > │     while method4(v253, v254) do                                             │

00:01:07 #2631 [Verbose] > │         let v256 : uint64 = v254.l0                                          │

00:01:07 #2632 [Verbose] > │         let struct (v257 : (string []), v258 : US0) = v237.[int v256]        │

00:01:07 #2633 [Verbose] > │         match v258 with                                                      │

00:01:07 #2634 [Verbose] > │         | US0_0 -> (* None *)                                                │

00:01:07 #2635 [Verbose] > │             let mutable result = None                                        │

00:01:07 #2636 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:01:07 #2637 [Verbose] > │             #if !WASM                                                        │

00:01:07 #2638 [Verbose] > │             ()                                                               │

00:01:07 #2639 [Verbose] > │             #else                                                            │

00:01:07 #2640 [Verbose] > │             ()                                                               │

00:01:07 #2641 [Verbose] > │             #endif                                                           │

00:01:07 #2642 [Verbose] > │             #else                                                            │

00:01:07 #2643 [Verbose] > │             System.Console.ResetColor ()                                     │

00:01:07 #2644 [Verbose] > │             ()                                                               │

00:01:07 #2645 [Verbose] > │             #endif                                                           │

00:01:07 #2646 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:01:07 #2647 [Verbose] > │             result |> Option.get                                             │

00:01:07 #2648 [Verbose] > │             ()                                                               │

00:01:07 #2649 [Verbose] > │         | US0_1(v259) -> (* Some *)                                          │

00:01:07 #2650 [Verbose] > │             let mutable result = None                                        │

00:01:07 #2651 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:01:07 #2652 [Verbose] > │             #if !WASM                                                        │

00:01:07 #2653 [Verbose] > │             ()                                                               │

00:01:07 #2654 [Verbose] > │             #else                                                            │

00:01:07 #2655 [Verbose] > │             ()                                                               │

00:01:07 #2656 [Verbose] > │             #endif                                                           │

00:01:07 #2657 [Verbose] > │             #else                                                            │

00:01:07 #2658 [Verbose] > │             System.Console.ForegroundColor <- v259                           │

00:01:07 #2659 [Verbose] > │             ()                                                               │

00:01:07 #2660 [Verbose] > │             #endif                                                           │

00:01:07 #2661 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:01:07 #2662 [Verbose] > │             result |> Option.get                                             │

00:01:07 #2663 [Verbose] > │             ()                                                               │

00:01:07 #2664 [Verbose] > │         let v260 : string = "\t| "                                           │

00:01:07 #2665 [Verbose] > │         let v261 : string = System.String.Join (v260, v257)                  │

00:01:07 #2666 [Verbose] > │         System.Console.WriteLine v261                                        │

00:01:07 #2667 [Verbose] > │         let mutable result = None                                            │

00:01:07 #2668 [Verbose] > │         #if FABLE_COMPILER_RUST                                              │

00:01:07 #2669 [Verbose] > │         #if !WASM                                                            │

00:01:07 #2670 [Verbose] > │         ()                                                                   │

00:01:07 #2671 [Verbose] > │         #else                                                                │

00:01:07 #2672 [Verbose] > │         ()                                                                   │

00:01:07 #2673 [Verbose] > │         #endif                                                               │

00:01:07 #2674 [Verbose] > │         #else                                                                │

00:01:07 #2675 [Verbose] > │         System.Console.ResetColor ()                                         │

00:01:07 #2676 [Verbose] > │         ()                                                                   │

00:01:07 #2677 [Verbose] > │         #endif                                                               │

00:01:07 #2678 [Verbose] > │         |> fun x -> result <- Some x                                         │

00:01:07 #2679 [Verbose] > │         result |> Option.get                                                 │

00:01:07 #2680 [Verbose] > │         let v262 : uint64 = v256 + 1UL                                       │

00:01:07 #2681 [Verbose] > │         v254.l0 <- v262                                                      │

00:01:07 #2682 [Verbose] > │         ()                                                                   │

00:01:07 #2683 [Verbose] > │     let v263 : ((float []) []) = Array.zeroCreate<(float [])>                │

00:01:07 #2684 [Verbose] > │ (System.Convert.ToInt32(v99))                                                │

00:01:07 #2685 [Verbose] > │     let v264 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2686 [Verbose] > │     while method4(v99, v264) do                                              │

00:01:07 #2687 [Verbose] > │         let v266 : uint64 = v264.l0                                          │

00:01:07 #2688 [Verbose] > │         let struct (v267 : string, v268 : string, v269 : string, v270 :      │

00:01:07 #2689 [Verbose] > │ (int64 [])) = v24.[int v266]                                                 │

00:01:07 #2690 [Verbose] > │         let v271 : (int64 -> float) = float                                  │

00:01:07 #2691 [Verbose] > │         let v272 : uint64 = System.Convert.ToUInt64 v270.Length              │

00:01:07 #2692 [Verbose] > │         let v273 : (float []) = Array.zeroCreate<float>                      │

00:01:07 #2693 [Verbose] > │ (System.Convert.ToInt32(v272))                                               │

00:01:07 #2694 [Verbose] > │         let v274 : Mut0 = {l0 = 0UL} : Mut0                                  │

00:01:07 #2695 [Verbose] > │         while method4(v272, v274) do                                         │

00:01:07 #2696 [Verbose] > │             let v276 : uint64 = v274.l0                                      │

00:01:07 #2697 [Verbose] > │             let v277 : int64 = v270.[int v276]                               │

00:01:07 #2698 [Verbose] > │             let v278 : float = v271 v277                                     │

00:01:07 #2699 [Verbose] > │             v273.[int v276] <- v278                                          │

00:01:07 #2700 [Verbose] > │             let v279 : uint64 = v276 + 1UL                                   │

00:01:07 #2701 [Verbose] > │             v274.l0 <- v279                                                  │

00:01:07 #2702 [Verbose] > │             ()                                                               │

00:01:07 #2703 [Verbose] > │         v263.[int v266] <- v273                                              │

00:01:07 #2704 [Verbose] > │         let v280 : uint64 = v266 + 1UL                                       │

00:01:07 #2705 [Verbose] > │         v264.l0 <- v280                                                      │

00:01:07 #2706 [Verbose] > │         ()                                                                   │

00:01:07 #2707 [Verbose] > │     let v281 : ((float []) []) = v263 |> Array.transpose                     │

00:01:07 #2708 [Verbose] > │     let v282 : uint64 = System.Convert.ToUInt64 v281.Length                  │

00:01:07 #2709 [Verbose] > │     let v283 : (float []) = Array.zeroCreate<float>                          │

00:01:07 #2710 [Verbose] > │ (System.Convert.ToInt32(v282))                                               │

00:01:07 #2711 [Verbose] > │     let v284 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2712 [Verbose] > │     while method4(v282, v284) do                                             │

00:01:07 #2713 [Verbose] > │         let v286 : uint64 = v284.l0                                          │

00:01:07 #2714 [Verbose] > │         let v287 : (float []) = v281.[int v286]                              │

00:01:07 #2715 [Verbose] > │         let v288 : float = v287 |> Array.average                             │

00:01:07 #2716 [Verbose] > │         v283.[int v286] <- v288                                              │

00:01:07 #2717 [Verbose] > │         let v289 : uint64 = v286 + 1UL                                       │

00:01:07 #2718 [Verbose] > │         v284.l0 <- v289                                                      │

00:01:07 #2719 [Verbose] > │         ()                                                                   │

00:01:07 #2720 [Verbose] > │     let v290 : (float -> int64) = int64                                      │

00:01:07 #2721 [Verbose] > │     let v291 : uint64 = System.Convert.ToUInt64 v283.Length                  │

00:01:07 #2722 [Verbose] > │     let v292 : (int64 []) = Array.zeroCreate<int64>                          │

00:01:07 #2723 [Verbose] > │ (System.Convert.ToInt32(v291))                                               │

00:01:07 #2724 [Verbose] > │     let v293 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2725 [Verbose] > │     while method4(v291, v293) do                                             │

00:01:07 #2726 [Verbose] > │         let v295 : uint64 = v293.l0                                          │

00:01:07 #2727 [Verbose] > │         let v296 : float = v283.[int v295]                                   │

00:01:07 #2728 [Verbose] > │         let v297 : int64 = v290 v296                                         │

00:01:07 #2729 [Verbose] > │         v292.[int v295] <- v297                                              │

00:01:07 #2730 [Verbose] > │         let v298 : uint64 = v295 + 1UL                                       │

00:01:07 #2731 [Verbose] > │         v293.l0 <- v298                                                      │

00:01:07 #2732 [Verbose] > │         ()                                                                   │

00:01:07 #2733 [Verbose] > │     let v299 : uint64 = System.Convert.ToUInt64 v292.Length                  │

00:01:07 #2734 [Verbose] > │     let v300 : UH6 = UH6_1                                                   │

00:01:07 #2735 [Verbose] > │     let v301 : Mut3 = {l0 = 0UL; l1 = v300; l2 = 0} : Mut3                   │

00:01:07 #2736 [Verbose] > │     while method28(v299, v301) do                                            │

00:01:07 #2737 [Verbose] > │         let v303 : uint64 = v301.l0                                          │

00:01:07 #2738 [Verbose] > │         let struct (v304 : UH6, v305 : int32) = v301.l1, v301.l2             │

00:01:07 #2739 [Verbose] > │         let v306 : int64 = v292.[int v303]                                   │

00:01:07 #2740 [Verbose] > │         let v307 : int32 = v305 + 1                                          │

00:01:07 #2741 [Verbose] > │         let v308 : uint64 = v303 + 1UL                                       │

00:01:07 #2742 [Verbose] > │         let v309 : UH6 = UH6_0(v305, v306, v304)                             │

00:01:07 #2743 [Verbose] > │         v301.l0 <- v308                                                      │

00:01:07 #2744 [Verbose] > │         v301.l1 <- v309                                                      │

00:01:07 #2745 [Verbose] > │         v301.l2 <- v307                                                      │

00:01:07 #2746 [Verbose] > │         ()                                                                   │

00:01:07 #2747 [Verbose] > │     let struct (v310 : UH6, v311 : int32) = v301.l1, v301.l2                 │

00:01:07 #2748 [Verbose] > │     let v312 : UH6 = UH6_1                                                   │

00:01:07 #2749 [Verbose] > │     let v313 : UH6 = method29(v310, v312)                                    │

00:01:07 #2750 [Verbose] > │     let v314 : (struct (int32 * int64) []) = method36(v313)                  │

00:01:07 #2751 [Verbose] > │     System.Console.WriteLine v2                                              │

00:01:07 #2752 [Verbose] > │     let v315 : string = "Average Ranking  "                                  │

00:01:07 #2753 [Verbose] > │     System.Console.WriteLine v315                                            │

00:01:07 #2754 [Verbose] > │     let v316 : (struct (int32 * int64) -> int64) = closure6()                │

00:01:07 #2755 [Verbose] > │     let v317 : (struct (int32 * int64) []) = v314 |> Array.sortBy v316       │

00:01:07 #2756 [Verbose] > │     let v318 : uint64 = System.Convert.ToUInt64 v317.Length                  │

00:01:07 #2757 [Verbose] > │     let v319 : Mut0 = {l0 = 0UL} : Mut0                                      │

00:01:07 #2758 [Verbose] > │     while method4(v318, v319) do                                             │

00:01:07 #2759 [Verbose] > │         let v321 : uint64 = v319.l0                                          │

00:01:07 #2760 [Verbose] > │         let struct (v322 : int32, v323 : int64) = v317.[int v321]            │

00:01:07 #2761 [Verbose] > │         let v324 : string = $"Test case %d{v322 + 1}. Average Time: %A{v323} │

00:01:07 #2762 [Verbose] > │ "                                                                            │

00:01:07 #2763 [Verbose] > │         System.Console.WriteLine v324                                        │

00:01:07 #2764 [Verbose] > │         let v325 : uint64 = v321 + 1UL                                       │

00:01:07 #2765 [Verbose] > │         v319.l0 <- v325                                                      │

00:01:07 #2766 [Verbose] > │         ()                                                                   │

00:01:07 #2767 [Verbose] > │     ()                                                                       │

00:01:07 #2768 [Verbose] > │ method0()                                                                    │

00:01:07 #2769 [Verbose] > │                                                                              │

00:01:07 #2770 [Verbose] > │                                                                              │

00:01:07 #2771 [Verbose] > │                                                                              │

00:01:07 #2772 [Verbose] > │ Test: v0                                                                     │

00:01:07 #2773 [Verbose] > │                                                                              │

00:01:07 #2774 [Verbose] > │ Solution: "abc"                                                              │

00:01:07 #2775 [Verbose] > │ Test case 1. F. Time: 1587                                                   │

00:01:07 #2776 [Verbose] > │ Test case 2. FA. Time: 1795                                                  │

00:01:07 #2777 [Verbose] > │                                                                              │

00:01:07 #2778 [Verbose] > │ Solution: "abcde"                                                            │

00:01:07 #2779 [Verbose] > │ Test case 1. F. Time: 1735                                                   │

00:01:07 #2780 [Verbose] > │ Test case 2. FA. Time: 2498                                                  │

00:01:07 #2781 [Verbose] > │                                                                              │

00:01:07 #2782 [Verbose] > │ Solution: "abcdefghi"                                                        │

00:01:07 #2783 [Verbose] > │ Test case 1. F. Time: 3194                                                   │

00:01:07 #2784 [Verbose] > │ Test case 2. FA. Time: 3317                                                  │

00:01:07 #2785 [Verbose] > │                                                                              │

00:01:07 #2786 [Verbose] > │ Solution: "abab"                                                             │

00:01:07 #2787 [Verbose] > │ Test case 1. F. Time: 1331                                                   │

00:01:07 #2788 [Verbose] > │ Test case 2. FA. Time: 1364                                                  │

00:01:07 #2789 [Verbose] > │                                                                              │

00:01:07 #2790 [Verbose] > │ Solution: "aa"                                                               │

00:01:07 #2791 [Verbose] > │ Test case 1. F. Time: 833                                                    │

00:01:07 #2792 [Verbose] > │ Test case 2. FA. Time: 806                                                   │

00:01:07 #2793 [Verbose] > │                                                                              │

00:01:07 #2794 [Verbose] > │ Solution: "z"                                                                │

00:01:07 #2795 [Verbose] > │ Test case 1. F. Time: 175                                                    │

00:01:07 #2796 [Verbose] > │ Test case 2. FA. Time: 140                                                   │

00:01:07 #2797 [Verbose] > │                                                                              │

00:01:07 #2798 [Verbose] > │ Input      	| Expected                                                         │

00:01:07 #2799 [Verbose] > │                                                                              │

00:01:07 #2800 [Verbose] > │ | Result                                                                     │

00:01:07 #2801 [Verbose] > │                                                                              │

00:01:07 #2802 [Verbose] > │ | Best                                                                       │

00:01:07 #2803 [Verbose] > │ ---        	| ---                                                              │

00:01:07 #2804 [Verbose] > │                                                                              │

00:01:07 #2805 [Verbose] > │ | ---                                                                        │

00:01:07 #2806 [Verbose] > │                                                                              │

00:01:07 #2807 [Verbose] > │ | ---                                                                        │

00:01:07 #2808 [Verbose] > │ "abc"      	| "bca cab abc"                                                    │

00:01:07 #2809 [Verbose] > │                                                                              │

00:01:07 #2810 [Verbose] > │ | "bca cab abc"                                                              │

00:01:07 #2811 [Verbose] > │                                                                              │

00:01:07 #2812 [Verbose] > │ | struct (1L, 1587L)                                                         │

00:01:07 #2813 [Verbose] > │ "abcde"    	| "bcdea cdeab deabc eabcd abcde"                                  │

00:01:07 #2814 [Verbose] > │ | "bcdea cdeab deabc eabcd abcde"                                            │

00:01:07 #2815 [Verbose] > │ | struct (1L, 1735L)                                                         │

00:01:07 #2816 [Verbose] > │ "abcdefghi"	| "bcdefghia cdefghiab defghiabc efghiabcd fghiabcde ghiabcdef     │

00:01:07 #2817 [Verbose] > │ hiabcdefg iabcdefgh abcdefghi"	| "bcdefghia cdefghiab defghiabc efghiabcd      │

00:01:07 #2818 [Verbose] > │ fghiabcde ghiabcdef hiabcdefg iabcdefgh abcdefghi"	| struct (1L, 3194L)        │

00:01:07 #2819 [Verbose] > │ "abab"     	| "baba abab baba abab"                                            │

00:01:07 #2820 [Verbose] > │ | "baba abab baba abab"                                                      │

00:01:07 #2821 [Verbose] > │ | struct (1L, 1331L)                                                         │

00:01:07 #2822 [Verbose] > │ "aa"       	| "aa aa"                                                          │

00:01:07 #2823 [Verbose] > │                                                                              │

00:01:07 #2824 [Verbose] > │ | "aa aa"                                                                    │

00:01:07 #2825 [Verbose] > │                                                                              │

00:01:07 #2826 [Verbose] > │ | struct (2L, 806L)                                                          │

00:01:07 #2827 [Verbose] > │ "z"        	| "z"                                                              │

00:01:07 #2828 [Verbose] > │                                                                              │

00:01:07 #2829 [Verbose] > │ | "z"                                                                        │

00:01:07 #2830 [Verbose] > │                                                                              │

00:01:07 #2831 [Verbose] > │ | struct (2L, 140L)                                                          │

00:01:07 #2832 [Verbose] > │                                                                              │

00:01:07 #2833 [Verbose] > │ Average Ranking                                                              │

00:01:07 #2834 [Verbose] > │ Test case 1. Average Time: 1475L                                             │

00:01:07 #2835 [Verbose] > │ Test case 2. Average Time: 1653L                                             │

00:01:07 #2836 [Verbose] > │                                                                              │

00:01:07 #2837 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:01:07 #2838 [Verbose] >

00:01:07 #2839 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:01:07 #2840 [Verbose] > // // test

00:01:07 #2841 [Verbose] > // // rust=

00:01:07 #2842 [Verbose] > // // print_code=false

00:01:07 #2843 [Verbose] >

00:01:07 #2844 [Verbose] > // rotate_strings_tests ()

00:01:07 #2845 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1652-2732-3226-39fe5464dda6\main.spi

00:01:07 #2846 [Verbose] >

00:01:07 #2847 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:01:07 #2848 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:01:07 #2849 [Verbose] > │ ## binary_search_tests                                                       │

00:01:07 #2850 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:01:07 #2851 [Verbose] >

00:01:07 #2852 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:01:07 #2853 [Verbose] > // // test

00:01:07 #2854 [Verbose] > // // timeout=90000

00:01:07 #2855 [Verbose] > // // print_code=true

00:01:07 #2856 [Verbose] >

00:01:07 #2857 [Verbose] > inl binary_search_semi_open_1 arr target left right =

00:01:07 #2858 [Verbose] >     inl rec body left right =

00:01:07 #2859 [Verbose] >         if left >= right

00:01:07 #2860 [Verbose] >         then None

00:01:07 #2861 [Verbose] >         else

00:01:07 #2862 [Verbose] >             inl mid = (left + right) / 2

00:01:07 #2863 [Verbose] >             inl item = index arr mid

00:01:07 #2864 [Verbose] >             if item = target

00:01:07 #2865 [Verbose] >             then Some mid

00:01:07 #2866 [Verbose] >             elif item < target

00:01:07 #2867 [Verbose] >             then loop (mid + 1) right

00:01:07 #2868 [Verbose] >             else loop left mid

00:01:07 #2869 [Verbose] >     and inl loop left right =

00:01:07 #2870 [Verbose] >         if var_is right |> not

00:01:07 #2871 [Verbose] >         then body left right

00:01:07 #2872 [Verbose] >         else

00:01:07 #2873 [Verbose] >             inl left = dyn left

00:01:07 #2874 [Verbose] >             join body left right

00:01:07 #2875 [Verbose] >     loop left right

00:01:07 #2876 [Verbose] >

00:01:07 #2877 [Verbose] > inl binary_search_closed_1 arr target left right =

00:01:07 #2878 [Verbose] >     inl rec body left right =

00:01:07 #2879 [Verbose] >         if left > right

00:01:07 #2880 [Verbose] >         then None

00:01:07 #2881 [Verbose] >         else

00:01:07 #2882 [Verbose] >             inl mid = (left + right) / 2

00:01:07 #2883 [Verbose] >             inl item = index arr mid

00:01:07 #2884 [Verbose] >             if item = target

00:01:07 #2885 [Verbose] >             then Some mid

00:01:07 #2886 [Verbose] >             elif item < target

00:01:07 #2887 [Verbose] >             then loop (mid + 1) right

00:01:07 #2888 [Verbose] >             else loop left (mid - 1)

00:01:07 #2889 [Verbose] >     and inl loop left right =

00:01:07 #2890 [Verbose] >         if var_is right |> not

00:01:07 #2891 [Verbose] >         then body left right

00:01:07 #2892 [Verbose] >         else

00:01:07 #2893 [Verbose] >             inl left = dyn left

00:01:07 #2894 [Verbose] >             join body left right

00:01:07 #2895 [Verbose] >     loop left right

00:01:07 #2896 [Verbose] >

00:01:07 #2897 [Verbose] > inl binary_search_semi_open_2 arr target left right =

00:01:07 #2898 [Verbose] >     let rec body left right =

00:01:07 #2899 [Verbose] >         if left >= right

00:01:07 #2900 [Verbose] >         then None

00:01:07 #2901 [Verbose] >         else

00:01:07 #2902 [Verbose] >             inl mid = (left + right) / 2

00:01:07 #2903 [Verbose] >             inl item = index arr mid

00:01:07 #2904 [Verbose] >             if item = target

00:01:07 #2905 [Verbose] >             then Some mid

00:01:07 #2906 [Verbose] >             elif item < target

00:01:07 #2907 [Verbose] >             then loop (mid + 1) right

00:01:07 #2908 [Verbose] >             else loop left mid

00:01:07 #2909 [Verbose] >     and inl loop left right = body left right

00:01:07 #2910 [Verbose] >     loop left right

00:01:07 #2911 [Verbose] >

00:01:07 #2912 [Verbose] > inl binary_search_closed_2 arr target left right =

00:01:07 #2913 [Verbose] >     let rec body left right =

00:01:07 #2914 [Verbose] >         if left > right

00:01:07 #2915 [Verbose] >         then None

00:01:07 #2916 [Verbose] >         else

00:01:07 #2917 [Verbose] >             inl mid = (left + right) / 2

00:01:07 #2918 [Verbose] >             inl item = index arr mid

00:01:07 #2919 [Verbose] >             if item = target

00:01:07 #2920 [Verbose] >             then Some mid

00:01:07 #2921 [Verbose] >             elif item < target

00:01:07 #2922 [Verbose] >             then loop (mid + 1) right

00:01:07 #2923 [Verbose] >             else loop left (mid - 1)

00:01:07 #2924 [Verbose] >     and inl loop left right = body left right

00:01:07 #2925 [Verbose] >     loop left right

00:01:07 #2926 [Verbose] >

00:01:07 #2927 [Verbose] > inl get_solutions () =

00:01:07 #2928 [Verbose] >     [[

00:01:07 #2929 [Verbose] >         "semi_open_1",

00:01:07 #2930 [Verbose] >         fun (arr, (target, len)) =>

00:01:07 #2931 [Verbose] >             binary_search_semi_open_1 arr target 0 len

00:01:07 #2932 [Verbose] >

00:01:07 #2933 [Verbose] >         "closed_1",

00:01:07 #2934 [Verbose] >         fun (arr, (target, len)) =>

00:01:07 #2935 [Verbose] >             binary_search_closed_1 arr target 0 (len - 1)

00:01:07 #2936 [Verbose] >

00:01:07 #2937 [Verbose] >         "semi_open_2",

00:01:07 #2938 [Verbose] >         fun (arr, (target, len)) =>

00:01:07 #2939 [Verbose] >             binary_search_semi_open_2 arr target 0 len

00:01:07 #2940 [Verbose] >

00:01:07 #2941 [Verbose] >         "closed_2",

00:01:07 #2942 [Verbose] >         fun (arr, (target, len)) =>

00:01:07 #2943 [Verbose] >             binary_search_closed_2 arr target 0 (len - 1)

00:01:07 #2944 [Verbose] >     ]]

00:01:07 #2945 [Verbose] >

00:01:07 #2946 [Verbose] > inl rec binary_search_tests () =

00:01:07 #2947 [Verbose] >     inl arr_with_len target len arr =

00:01:07 #2948 [Verbose] >         arr, (target, (len |> optionm'.default_with fun () => length arr))

00:01:07 #2949 [Verbose] >

00:01:07 #2950 [Verbose] >     inl test_cases = [[

00:01:07 #2951 [Verbose] >         (a ;[[ 1i32; 3; 4; 6; 8; 9; 11 ]] |> arr_with_len 6 None), (Some 3i32)

00:01:07 #2952 [Verbose] >         (a ;[[ 1i32; 3; 4; 6; 8; 9; 11 ]] |> arr_with_len 1 None), (Some 0i32)

00:01:07 #2953 [Verbose] >         (a ;[[ 1i32; 3; 4; 6; 8; 9; 11 ]] |> arr_with_len 11 None), (Some 6i32)

00:01:07 #2954 [Verbose] >         (a ;[[ 1i32; 3; 4; 6; 8; 9; 11 ]] |> arr_with_len 12 None), None

00:01:07 #2955 [Verbose] >         ((am'.init_series 1i32 100 1) |> arr_with_len 60 None), (Some 59)

00:01:07 #2956 [Verbose] >

00:01:07 #2957 [Verbose] >         (a ;[[ 1i32; 3; 4; 6; 8; 9; 11 ]] |> arr_with_len 6 (Some 7)), (Some

00:01:07 #2958 [Verbose] > 3i32)

00:01:07 #2959 [Verbose] >         (a ;[[ 1i32; 3; 4; 6; 8; 9; 11 ]] |> arr_with_len 1 (Some 7)), (Some

00:01:07 #2960 [Verbose] > 0i32)

00:01:07 #2961 [Verbose] >         (a ;[[ 1i32; 3; 4; 6; 8; 9; 11 ]] |> arr_with_len 11 (Some 7)), (Some

00:01:07 #2962 [Verbose] > 6i32)

00:01:07 #2963 [Verbose] >         (a ;[[ 1i32; 3; 4; 6; 8; 9; 11 ]] |> arr_with_len 12 (Some 7)), None

00:01:07 #2964 [Verbose] >         ((am'.init_series 1i32 100 1) |> arr_with_len 60 (Some 100)), (Some 59)

00:01:07 #2965 [Verbose] >     ]]

00:01:07 #2966 [Verbose] >

00:01:07 #2967 [Verbose] >     inl solutions = get_solutions ()

00:01:07 #2968 [Verbose] >

00:01:07 #2969 [Verbose] >     // inl is_fast () = true

00:01:07 #2970 [Verbose] >

00:01:07 #2971 [Verbose] >     inl count =

00:01:07 #2972 [Verbose] >         if is_fast ()

00:01:07 #2973 [Verbose] >         then 1000i32

00:01:07 #2974 [Verbose] >         else 8000000i32

00:01:07 #2975 [Verbose] >

00:01:07 #2976 [Verbose] >     run_all (nameof binary_search_tests) count solutions test_cases

00:01:07 #2977 [Verbose] >     |> sort_result_list

00:01:07 #2978 [Verbose] >

00:01:07 #2979 [Verbose] >

00:01:07 #2980 [Verbose] > let main () =

00:01:07 #2981 [Verbose] >     binary_search_tests ()

00:01:08 #2982 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1652-2753-5359-55fa5d06b11d\main.spi

00:01:43 #2983 [Verbose] >

00:01:43 #2984 [Verbose] > ╭─[ 35.80s - stdout ]──────────────────────────────────────────────────────────╮

00:01:43 #2985 [Verbose] > │ type Mut0 = {mutable l0 : int32}                                             │

00:01:43 #2986 [Verbose] > │ and [<Struct>] US0 =                                                         │

00:01:43 #2987 [Verbose] > │     | US0_0                                                                  │

00:01:43 #2988 [Verbose] > │     | US0_1 of f1_0 : int32                                                  │

00:01:43 #2989 [Verbose] > │ and UH0 =                                                                    │

00:01:43 #2990 [Verbose] > │     | UH0_0 of (int32 []) * int32 * int32 * US0 * UH0                        │

00:01:43 #2991 [Verbose] > │     | UH0_1                                                                  │

00:01:43 #2992 [Verbose] > │ and Mut1 = {mutable l0 : uint64}                                             │

00:01:43 #2993 [Verbose] > │ and UH1 =                                                                    │

00:01:43 #2994 [Verbose] > │     | UH1_0 of int32 * string * (struct ((int32 []) * int32 * int32) -> US0) │

00:01:43 #2995 [Verbose] > │ * UH1                                                                        │

00:01:43 #2996 [Verbose] > │     | UH1_1                                                                  │

00:01:43 #2997 [Verbose] > │ and UH2 =                                                                    │

00:01:43 #2998 [Verbose] > │     | UH2_0 of string * UH2                                                  │

00:01:43 #2999 [Verbose] > │     | UH2_1                                                                  │

00:01:43 #3000 [Verbose] > │ and [<Struct>] US1 =                                                         │

00:01:43 #3001 [Verbose] > │     | US1_0                                                                  │

00:01:43 #3002 [Verbose] > │     | US1_1 of f1_0 : System.ConsoleColor                                    │

00:01:43 #3003 [Verbose] > │ and UH3 =                                                                    │

00:01:43 #3004 [Verbose] > │     | UH3_0 of int64 * int64 * UH3                                           │

00:01:43 #3005 [Verbose] > │     | UH3_1                                                                  │

00:01:43 #3006 [Verbose] > │ and Mut2 = {mutable l0 : uint64; mutable l1 : UH3; mutable l2 : int64}       │

00:01:43 #3007 [Verbose] > │ and UH4 =                                                                    │

00:01:43 #3008 [Verbose] > │     | UH4_0 of UH2 * US1 * UH4                                               │

00:01:43 #3009 [Verbose] > │     | UH4_1                                                                  │

00:01:43 #3010 [Verbose] > │ and [<Struct>] US2 =                                                         │

00:01:43 #3011 [Verbose] > │     | US2_0                                                                  │

00:01:43 #3012 [Verbose] > │     | US2_1 of f1_0 : int64                                                  │

00:01:43 #3013 [Verbose] > │ and UH5 =                                                                    │

00:01:43 #3014 [Verbose] > │     | UH5_0 of int32 * int64 * UH5                                           │

00:01:43 #3015 [Verbose] > │     | UH5_1                                                                  │

00:01:43 #3016 [Verbose] > │ and Mut3 = {mutable l0 : uint64; mutable l1 : UH5; mutable l2 : int32}       │

00:01:43 #3017 [Verbose] > │ and UH6 =                                                                    │

00:01:43 #3018 [Verbose] > │     | UH6_0 of int32 * string * UH6                                          │

00:01:43 #3019 [Verbose] > │     | UH6_1                                                                  │

00:01:43 #3020 [Verbose] > │ let rec method1 (v0 : (int32 [])) : (int32 []) =                             │

00:01:43 #3021 [Verbose] > │     v0                                                                       │

00:01:43 #3022 [Verbose] > │ and method2 (v0 : Mut0) : bool =                                             │

00:01:43 #3023 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:01:43 #3024 [Verbose] > │     let v2 : bool = v1 < 100                                                 │

00:01:43 #3025 [Verbose] > │     v2                                                                       │

00:01:43 #3026 [Verbose] > │ and method4 (v0 : UH0, v1 : uint64) : uint64 =                               │

00:01:43 #3027 [Verbose] > │     match v0 with                                                            │

00:01:43 #3028 [Verbose] > │     | UH0_0(v2, v3, v4, v5, v6) -> (* Cons *)                                │

00:01:43 #3029 [Verbose] > │         let v7 : uint64 = v1 + 1UL                                           │

00:01:43 #3030 [Verbose] > │         method4(v6, v7)                                                      │

00:01:43 #3031 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:01:43 #3032 [Verbose] > │         v1                                                                   │

00:01:43 #3033 [Verbose] > │ and method5 (v0 : (struct ((int32 []) * int32 * int32 * US0) []), v1 : UH0,  │

00:01:43 #3034 [Verbose] > │ v2 : uint64) : uint64 =                                                      │

00:01:43 #3035 [Verbose] > │     match v1 with                                                            │

00:01:43 #3036 [Verbose] > │     | UH0_0(v3, v4, v5, v6, v7) -> (* Cons *)                                │

00:01:43 #3037 [Verbose] > │         v0.[int v2] <- struct (v3, v4, v5, v6)                               │

00:01:43 #3038 [Verbose] > │         let v8 : uint64 = v2 + 1UL                                           │

00:01:43 #3039 [Verbose] > │         method5(v0, v7, v8)                                                  │

00:01:43 #3040 [Verbose] > │     | UH0_1 -> (* Nil *)                                                     │

00:01:43 #3041 [Verbose] > │         v2                                                                   │

00:01:43 #3042 [Verbose] > │ and method3 (v0 : UH0) : (struct ((int32 []) * int32 * int32 * US0) []) =    │

00:01:43 #3043 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:01:43 #3044 [Verbose] > │     let v2 : uint64 = method4(v0, v1)                                        │

00:01:43 #3045 [Verbose] > │     let v3 : (struct ((int32 []) * int32 * int32 * US0) []) =                │

00:01:43 #3046 [Verbose] > │ Array.zeroCreate<struct ((int32 []) * int32 * int32 * US0)>                  │

00:01:43 #3047 [Verbose] > │ (System.Convert.ToInt32(v2))                                                 │

00:01:43 #3048 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:01:43 #3049 [Verbose] > │     let v5 : uint64 = method5(v3, v0, v4)                                    │

00:01:43 #3050 [Verbose] > │     v3                                                                       │

00:01:43 #3051 [Verbose] > │ and method6 (v0 : uint64, v1 : Mut1) : bool =                                │

00:01:43 #3052 [Verbose] > │     let v2 : uint64 = v1.l0                                                  │

00:01:43 #3053 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:01:43 #3054 [Verbose] > │     v3                                                                       │

00:01:43 #3055 [Verbose] > │ and method7 (v0 : (int32 []), v1 : int32, v2 : int32, v3 : int32) : US0 =    │

00:01:43 #3056 [Verbose] > │     let v4 : bool = v3 >= v2                                                 │

00:01:43 #3057 [Verbose] > │     if v4 then                                                               │

00:01:43 #3058 [Verbose] > │         US0_0                                                                │

00:01:43 #3059 [Verbose] > │     else                                                                     │

00:01:43 #3060 [Verbose] > │         let v6 : int32 = v3 + v2                                             │

00:01:43 #3061 [Verbose] > │         let v7 : int32 = v6 / 2                                              │

00:01:43 #3062 [Verbose] > │         let v8 : int32 = v0.[int v7]                                         │

00:01:43 #3063 [Verbose] > │         let v9 : bool = v8 = v1                                              │

00:01:43 #3064 [Verbose] > │         if v9 then                                                           │

00:01:43 #3065 [Verbose] > │             US0_1(v7)                                                        │

00:01:43 #3066 [Verbose] > │         else                                                                 │

00:01:43 #3067 [Verbose] > │             let v11 : bool = v8 < v1                                         │

00:01:43 #3068 [Verbose] > │             if v11 then                                                      │

00:01:43 #3069 [Verbose] > │                 let v12 : int32 = v7 + 1                                     │

00:01:43 #3070 [Verbose] > │                 method7(v0, v1, v2, v12)                                     │

00:01:43 #3071 [Verbose] > │             else                                                             │

00:01:43 #3072 [Verbose] > │                 method7(v0, v1, v7, v3)                                      │

00:01:43 #3073 [Verbose] > │ and closure1 () struct (v0 : (int32 []), v1 : int32, v2 : int32) : US0 =     │

00:01:43 #3074 [Verbose] > │     let v3 : int32 = 0                                                       │

00:01:43 #3075 [Verbose] > │     method7(v0, v1, v2, v3)                                                  │

00:01:43 #3076 [Verbose] > │ and method8 (v0 : (int32 []), v1 : int32, v2 : int32, v3 : int32) : US0 =    │

00:01:43 #3077 [Verbose] > │     let v4 : bool = v3 > v2                                                  │

00:01:43 #3078 [Verbose] > │     if v4 then                                                               │

00:01:43 #3079 [Verbose] > │         US0_0                                                                │

00:01:43 #3080 [Verbose] > │     else                                                                     │

00:01:43 #3081 [Verbose] > │         let v6 : int32 = v3 + v2                                             │

00:01:43 #3082 [Verbose] > │         let v7 : int32 = v6 / 2                                              │

00:01:43 #3083 [Verbose] > │         let v8 : int32 = v0.[int v7]                                         │

00:01:43 #3084 [Verbose] > │         let v9 : bool = v8 = v1                                              │

00:01:43 #3085 [Verbose] > │         if v9 then                                                           │

00:01:43 #3086 [Verbose] > │             US0_1(v7)                                                        │

00:01:43 #3087 [Verbose] > │         else                                                                 │

00:01:43 #3088 [Verbose] > │             let v11 : bool = v8 < v1                                         │

00:01:43 #3089 [Verbose] > │             if v11 then                                                      │

00:01:43 #3090 [Verbose] > │                 let v12 : int32 = v7 + 1                                     │

00:01:43 #3091 [Verbose] > │                 method8(v0, v1, v2, v12)                                     │

00:01:43 #3092 [Verbose] > │             else                                                             │

00:01:43 #3093 [Verbose] > │                 let v14 : int32 = v7 - 1                                     │

00:01:43 #3094 [Verbose] > │                 method8(v0, v1, v14, v3)                                     │

00:01:43 #3095 [Verbose] > │ and closure2 () struct (v0 : (int32 []), v1 : int32, v2 : int32) : US0 =     │

00:01:43 #3096 [Verbose] > │     let v3 : int32 = v2 - 1                                                  │

00:01:43 #3097 [Verbose] > │     let v4 : int32 = 0                                                       │

00:01:43 #3098 [Verbose] > │     method8(v0, v1, v3, v4)                                                  │

00:01:43 #3099 [Verbose] > │ and method9 (v0 : (int32 []), v1 : int32, v2 : int32, v3 : int32) : US0 =    │

00:01:43 #3100 [Verbose] > │     let v4 : bool = v2 >= v3                                                 │

00:01:43 #3101 [Verbose] > │     if v4 then                                                               │

00:01:43 #3102 [Verbose] > │         US0_0                                                                │

00:01:43 #3103 [Verbose] > │     else                                                                     │

00:01:43 #3104 [Verbose] > │         let v6 : int32 = v2 + v3                                             │

00:01:43 #3105 [Verbose] > │         let v7 : int32 = v6 / 2                                              │

00:01:43 #3106 [Verbose] > │         let v8 : int32 = v0.[int v7]                                         │

00:01:43 #3107 [Verbose] > │         let v9 : bool = v8 = v1                                              │

00:01:43 #3108 [Verbose] > │         if v9 then                                                           │

00:01:43 #3109 [Verbose] > │             US0_1(v7)                                                        │

00:01:43 #3110 [Verbose] > │         else                                                                 │

00:01:43 #3111 [Verbose] > │             let v11 : bool = v8 < v1                                         │

00:01:43 #3112 [Verbose] > │             if v11 then                                                      │

00:01:43 #3113 [Verbose] > │                 let v12 : int32 = v7 + 1                                     │

00:01:43 #3114 [Verbose] > │                 method9(v0, v1, v12, v3)                                     │

00:01:43 #3115 [Verbose] > │             else                                                             │

00:01:43 #3116 [Verbose] > │                 method9(v0, v1, v2, v7)                                      │

00:01:43 #3117 [Verbose] > │ and closure3 () struct (v0 : (int32 []), v1 : int32, v2 : int32) : US0 =     │

00:01:43 #3118 [Verbose] > │     let v3 : int32 = 0                                                       │

00:01:43 #3119 [Verbose] > │     method9(v0, v1, v3, v2)                                                  │

00:01:43 #3120 [Verbose] > │ and method10 (v0 : (int32 []), v1 : int32, v2 : int32, v3 : int32) : US0 =   │

00:01:43 #3121 [Verbose] > │     let v4 : bool = v2 > v3                                                  │

00:01:43 #3122 [Verbose] > │     if v4 then                                                               │

00:01:43 #3123 [Verbose] > │         US0_0                                                                │

00:01:43 #3124 [Verbose] > │     else                                                                     │

00:01:43 #3125 [Verbose] > │         let v6 : int32 = v2 + v3                                             │

00:01:43 #3126 [Verbose] > │         let v7 : int32 = v6 / 2                                              │

00:01:43 #3127 [Verbose] > │         let v8 : int32 = v0.[int v7]                                         │

00:01:43 #3128 [Verbose] > │         let v9 : bool = v8 = v1                                              │

00:01:43 #3129 [Verbose] > │         if v9 then                                                           │

00:01:43 #3130 [Verbose] > │             US0_1(v7)                                                        │

00:01:43 #3131 [Verbose] > │         else                                                                 │

00:01:43 #3132 [Verbose] > │             let v11 : bool = v8 < v1                                         │

00:01:43 #3133 [Verbose] > │             if v11 then                                                      │

00:01:43 #3134 [Verbose] > │                 let v12 : int32 = v7 + 1                                     │

00:01:43 #3135 [Verbose] > │                 method10(v0, v1, v12, v3)                                    │

00:01:43 #3136 [Verbose] > │             else                                                             │

00:01:43 #3137 [Verbose] > │                 let v14 : int32 = v7 - 1                                     │

00:01:43 #3138 [Verbose] > │                 method10(v0, v1, v2, v14)                                    │

00:01:43 #3139 [Verbose] > │ and closure4 () struct (v0 : (int32 []), v1 : int32, v2 : int32) : US0 =     │

00:01:43 #3140 [Verbose] > │     let v3 : int32 = v2 - 1                                                  │

00:01:43 #3141 [Verbose] > │     let v4 : int32 = 0                                                       │

00:01:43 #3142 [Verbose] > │     method10(v0, v1, v4, v3)                                                 │

00:01:43 #3143 [Verbose] > │ and method12 (v0 : UH1, v1 : uint64) : uint64 =                              │

00:01:43 #3144 [Verbose] > │     match v0 with                                                            │

00:01:43 #3145 [Verbose] > │     | UH1_0(v2, v3, v4, v5) -> (* Cons *)                                    │

00:01:43 #3146 [Verbose] > │         let v6 : uint64 = v1 + 1UL                                           │

00:01:43 #3147 [Verbose] > │         method12(v5, v6)                                                     │

00:01:43 #3148 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:01:43 #3149 [Verbose] > │         v1                                                                   │

00:01:43 #3150 [Verbose] > │ and method13 (v0 : (struct (int32 * string * (struct ((int32 []) * int32 *   │

00:01:43 #3151 [Verbose] > │ int32) -> US0)) []), v1 : UH1, v2 : uint64) : uint64 =                       │

00:01:43 #3152 [Verbose] > │     match v1 with                                                            │

00:01:43 #3153 [Verbose] > │     | UH1_0(v3, v4, v5, v6) -> (* Cons *)                                    │

00:01:43 #3154 [Verbose] > │         v0.[int v2] <- struct (v3, v4, v5)                                   │

00:01:43 #3155 [Verbose] > │         let v7 : uint64 = v2 + 1UL                                           │

00:01:43 #3156 [Verbose] > │         method13(v0, v6, v7)                                                 │

00:01:43 #3157 [Verbose] > │     | UH1_1 -> (* Nil *)                                                     │

00:01:43 #3158 [Verbose] > │         v2                                                                   │

00:01:43 #3159 [Verbose] > │ and method11 (v0 : UH1) : (struct (int32 * string * (struct ((int32 []) *    │

00:01:43 #3160 [Verbose] > │ int32 * int32) -> US0)) []) =                                                │

00:01:43 #3161 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:01:43 #3162 [Verbose] > │     let v2 : uint64 = method12(v0, v1)                                       │

00:01:43 #3163 [Verbose] > │     let v3 : (struct (int32 * string * (struct ((int32 []) * int32 * int32)  │

00:01:43 #3164 [Verbose] > │ -> US0)) []) = Array.zeroCreate<struct (int32 * string * (struct ((int32 []) │

00:01:43 #3165 [Verbose] > │ * int32 * int32) -> US0))> (System.Convert.ToInt32(v2))                      │

00:01:43 #3166 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:01:43 #3167 [Verbose] > │     let v5 : uint64 = method13(v3, v0, v4)                                   │

00:01:43 #3168 [Verbose] > │     v3                                                                       │

00:01:43 #3169 [Verbose] > │ and method14 (v0 : Mut0) : bool =                                            │

00:01:43 #3170 [Verbose] > │     let v1 : int32 = v0.l0                                                   │

00:01:43 #3171 [Verbose] > │     let v2 : bool = v1 < 8000001                                             │

00:01:43 #3172 [Verbose] > │     v2                                                                       │

00:01:43 #3173 [Verbose] > │ and closure5 (v0 : (int32 []), v1 : int32, v2 : int32, v3 : (struct ((int32  │

00:01:43 #3174 [Verbose] > │ []) * int32 * int32) -> US0)) (v4 : int32) : US0 =                           │

00:01:43 #3175 [Verbose] > │     v3 struct (v0, v1, v2)                                                   │

00:01:43 #3176 [Verbose] > │ and method15 (v0 : US0, v1 : (US0 []), v2 : uint64) : bool =                 │

00:01:43 #3177 [Verbose] > │     let v3 : uint64 = System.Convert.ToUInt64 v1.Length                      │

00:01:43 #3178 [Verbose] > │     let v4 : bool = v2 < v3                                                  │

00:01:43 #3179 [Verbose] > │     if v4 then                                                               │

00:01:43 #3180 [Verbose] > │         let v5 : US0 = v1.[int v2]                                           │

00:01:43 #3181 [Verbose] > │         let v9 : bool =                                                      │

00:01:43 #3182 [Verbose] > │             match v0, v5 with                                                │

00:01:43 #3183 [Verbose] > │             | US0_0, US0_0 -> (* None *)                                     │

00:01:43 #3184 [Verbose] > │                 true                                                         │

00:01:43 #3185 [Verbose] > │             | US0_1(v6), US0_1(v7) -> (* Some *)                             │

00:01:43 #3186 [Verbose] > │                 let v8 : bool = v6 = v7                                      │

00:01:43 #3187 [Verbose] > │                 v8                                                           │

00:01:43 #3188 [Verbose] > │             | _ ->                                                           │

00:01:43 #3189 [Verbose] > │                 false                                                        │

00:01:43 #3190 [Verbose] > │         if v9 then                                                           │

00:01:43 #3191 [Verbose] > │             let v10 : uint64 = v2 + 1UL                                      │

00:01:43 #3192 [Verbose] > │             method15(v0, v1, v10)                                            │

00:01:43 #3193 [Verbose] > │         else                                                                 │

00:01:43 #3194 [Verbose] > │             false                                                            │

00:01:43 #3195 [Verbose] > │     else                                                                     │

00:01:43 #3196 [Verbose] > │         true                                                                 │

00:01:43 #3197 [Verbose] > │ and method16 (v0 : uint64, v1 : Mut2) : bool =                               │

00:01:43 #3198 [Verbose] > │     let v2 : uint64 = v1.l0                                                  │

00:01:43 #3199 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:01:43 #3200 [Verbose] > │     v3                                                                       │

00:01:43 #3201 [Verbose] > │ and method17 (v0 : UH3, v1 : UH3) : UH3 =                                    │

00:01:43 #3202 [Verbose] > │     match v0 with                                                            │

00:01:43 #3203 [Verbose] > │     | UH3_0(v2, v3, v4) -> (* Cons *)                                        │

00:01:43 #3204 [Verbose] > │         let v5 : UH3 = UH3_0(v2, v3, v1)                                     │

00:01:43 #3205 [Verbose] > │         method17(v4, v5)                                                     │

00:01:43 #3206 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:01:43 #3207 [Verbose] > │         v1                                                                   │

00:01:43 #3208 [Verbose] > │ and method19 (v0 : UH3, v1 : int32) : int32 =                                │

00:01:43 #3209 [Verbose] > │     match v0 with                                                            │

00:01:43 #3210 [Verbose] > │     | UH3_0(v2, v3, v4) -> (* Cons *)                                        │

00:01:43 #3211 [Verbose] > │         let v5 : int32 = v1 + 1                                              │

00:01:43 #3212 [Verbose] > │         method19(v4, v5)                                                     │

00:01:43 #3213 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:01:43 #3214 [Verbose] > │         v1                                                                   │

00:01:43 #3215 [Verbose] > │ and method20 (v0 : (struct (int64 * int64) []), v1 : UH3, v2 : int32) :      │

00:01:43 #3216 [Verbose] > │ int32 =                                                                      │

00:01:43 #3217 [Verbose] > │     match v1 with                                                            │

00:01:43 #3218 [Verbose] > │     | UH3_0(v3, v4, v5) -> (* Cons *)                                        │

00:01:43 #3219 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:01:43 #3220 [Verbose] > │         let v6 : int32 = v2 + 1                                              │

00:01:43 #3221 [Verbose] > │         method20(v0, v5, v6)                                                 │

00:01:43 #3222 [Verbose] > │     | UH3_1 -> (* Nil *)                                                     │

00:01:43 #3223 [Verbose] > │         v2                                                                   │

00:01:43 #3224 [Verbose] > │ and method18 (v0 : UH3) : (struct (int64 * int64) []) =                      │

00:01:43 #3225 [Verbose] > │     let v1 : int32 = 0                                                       │

00:01:43 #3226 [Verbose] > │     let v2 : int32 = method19(v0, v1)                                        │

00:01:43 #3227 [Verbose] > │     let v3 : (struct (int64 * int64) []) = Array.zeroCreate<struct (int64 *  │

00:01:43 #3228 [Verbose] > │ int64)> (v2)                                                                 │

00:01:43 #3229 [Verbose] > │     let v4 : int32 = 0                                                       │

00:01:43 #3230 [Verbose] > │     let v5 : int32 = method20(v3, v0, v4)                                    │

00:01:43 #3231 [Verbose] > │     v3                                                                       │

00:01:43 #3232 [Verbose] > │ and method21 (v0 : int32, v1 : Mut0) : bool =                                │

00:01:43 #3233 [Verbose] > │     let v2 : int32 = v1.l0                                                   │

00:01:43 #3234 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:01:43 #3235 [Verbose] > │     v3                                                                       │

00:01:43 #3236 [Verbose] > │ and closure6 () struct (v0 : int64, v1 : int64) : int64 =                    │

00:01:43 #3237 [Verbose] > │     v1                                                                       │

00:01:43 #3238 [Verbose] > │ and method23 (v0 : UH4, v1 : uint64) : uint64 =                              │

00:01:43 #3239 [Verbose] > │     match v0 with                                                            │

00:01:43 #3240 [Verbose] > │     | UH4_0(v2, v3, v4) -> (* Cons *)                                        │

00:01:43 #3241 [Verbose] > │         let v5 : uint64 = v1 + 1UL                                           │

00:01:43 #3242 [Verbose] > │         method23(v4, v5)                                                     │

00:01:43 #3243 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:01:43 #3244 [Verbose] > │         v1                                                                   │

00:01:43 #3245 [Verbose] > │ and method24 (v0 : (struct (UH2 * US1) []), v1 : UH4, v2 : uint64) : uint64  │

00:01:43 #3246 [Verbose] > │ =                                                                            │

00:01:43 #3247 [Verbose] > │     match v1 with                                                            │

00:01:43 #3248 [Verbose] > │     | UH4_0(v3, v4, v5) -> (* Cons *)                                        │

00:01:43 #3249 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:01:43 #3250 [Verbose] > │         let v6 : uint64 = v2 + 1UL                                           │

00:01:43 #3251 [Verbose] > │         method24(v0, v5, v6)                                                 │

00:01:43 #3252 [Verbose] > │     | UH4_1 -> (* Nil *)                                                     │

00:01:43 #3253 [Verbose] > │         v2                                                                   │

00:01:43 #3254 [Verbose] > │ and method22 (v0 : UH4) : (struct (UH2 * US1) []) =                          │

00:01:43 #3255 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:01:43 #3256 [Verbose] > │     let v2 : uint64 = method23(v0, v1)                                       │

00:01:43 #3257 [Verbose] > │     let v3 : (struct (UH2 * US1) []) = Array.zeroCreate<struct (UH2 * US1)>  │

00:01:43 #3258 [Verbose] > │ (System.Convert.ToInt32(v2))                                                 │

00:01:43 #3259 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:01:43 #3260 [Verbose] > │     let v5 : uint64 = method24(v3, v0, v4)                                   │

00:01:43 #3261 [Verbose] > │     v3                                                                       │

00:01:43 #3262 [Verbose] > │ and method26 (v0 : UH2, v1 : uint64) : uint64 =                              │

00:01:43 #3263 [Verbose] > │     match v0 with                                                            │

00:01:43 #3264 [Verbose] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

00:01:43 #3265 [Verbose] > │         let v4 : uint64 = v1 + 1UL                                           │

00:01:43 #3266 [Verbose] > │         method26(v3, v4)                                                     │

00:01:43 #3267 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:01:43 #3268 [Verbose] > │         v1                                                                   │

00:01:43 #3269 [Verbose] > │ and method27 (v0 : (string []), v1 : UH2, v2 : uint64) : uint64 =            │

00:01:43 #3270 [Verbose] > │     match v1 with                                                            │

00:01:43 #3271 [Verbose] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

00:01:43 #3272 [Verbose] > │         v0.[int v2] <- v3                                                    │

00:01:43 #3273 [Verbose] > │         let v5 : uint64 = v2 + 1UL                                           │

00:01:43 #3274 [Verbose] > │         method27(v0, v4, v5)                                                 │

00:01:43 #3275 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:01:43 #3276 [Verbose] > │         v2                                                                   │

00:01:43 #3277 [Verbose] > │ and method25 (v0 : UH2) : (string []) =                                      │

00:01:43 #3278 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:01:43 #3279 [Verbose] > │     let v2 : uint64 = method26(v0, v1)                                       │

00:01:43 #3280 [Verbose] > │     let v3 : (string []) = Array.zeroCreate<string>                          │

00:01:43 #3281 [Verbose] > │ (System.Convert.ToInt32(v2))                                                 │

00:01:43 #3282 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:01:43 #3283 [Verbose] > │     let v5 : uint64 = method27(v3, v0, v4)                                   │

00:01:43 #3284 [Verbose] > │     v3                                                                       │

00:01:43 #3285 [Verbose] > │ and closure7 () (v0 : int64) : US2 =                                         │

00:01:43 #3286 [Verbose] > │     US2_1(v0)                                                                │

00:01:43 #3287 [Verbose] > │ and method28 (v0 : uint64, v1 : Mut3) : bool =                               │

00:01:43 #3288 [Verbose] > │     let v2 : uint64 = v1.l0                                                  │

00:01:43 #3289 [Verbose] > │     let v3 : bool = v2 < v0                                                  │

00:01:43 #3290 [Verbose] > │     v3                                                                       │

00:01:43 #3291 [Verbose] > │ and method29 (v0 : UH5, v1 : UH5) : UH5 =                                    │

00:01:43 #3292 [Verbose] > │     match v0 with                                                            │

00:01:43 #3293 [Verbose] > │     | UH5_0(v2, v3, v4) -> (* Cons *)                                        │

00:01:43 #3294 [Verbose] > │         let v5 : UH5 = UH5_0(v2, v3, v1)                                     │

00:01:43 #3295 [Verbose] > │         method29(v4, v5)                                                     │

00:01:43 #3296 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:01:43 #3297 [Verbose] > │         v1                                                                   │

00:01:43 #3298 [Verbose] > │ and method31 (v0 : UH5, v1 : int32) : int32 =                                │

00:01:43 #3299 [Verbose] > │     match v0 with                                                            │

00:01:43 #3300 [Verbose] > │     | UH5_0(v2, v3, v4) -> (* Cons *)                                        │

00:01:43 #3301 [Verbose] > │         let v5 : int32 = v1 + 1                                              │

00:01:43 #3302 [Verbose] > │         method31(v4, v5)                                                     │

00:01:43 #3303 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:01:43 #3304 [Verbose] > │         v1                                                                   │

00:01:43 #3305 [Verbose] > │ and method32 (v0 : (struct (int32 * int64) []), v1 : UH5, v2 : int32) :      │

00:01:43 #3306 [Verbose] > │ int32 =                                                                      │

00:01:43 #3307 [Verbose] > │     match v1 with                                                            │

00:01:43 #3308 [Verbose] > │     | UH5_0(v3, v4, v5) -> (* Cons *)                                        │

00:01:43 #3309 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:01:43 #3310 [Verbose] > │         let v6 : int32 = v2 + 1                                              │

00:01:43 #3311 [Verbose] > │         method32(v0, v5, v6)                                                 │

00:01:43 #3312 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:01:43 #3313 [Verbose] > │         v2                                                                   │

00:01:43 #3314 [Verbose] > │ and method30 (v0 : UH5) : (struct (int32 * int64) []) =                      │

00:01:43 #3315 [Verbose] > │     let v1 : int32 = 0                                                       │

00:01:43 #3316 [Verbose] > │     let v2 : int32 = method31(v0, v1)                                        │

00:01:43 #3317 [Verbose] > │     let v3 : (struct (int32 * int64) []) = Array.zeroCreate<struct (int32 *  │

00:01:43 #3318 [Verbose] > │ int64)> (v2)                                                                 │

00:01:43 #3319 [Verbose] > │     let v4 : int32 = 0                                                       │

00:01:43 #3320 [Verbose] > │     let v5 : int32 = method32(v3, v0, v4)                                    │

00:01:43 #3321 [Verbose] > │     v3                                                                       │

00:01:43 #3322 [Verbose] > │ and method33 (v0 : UH2, v1 : UH6, v2 : int32) : struct (UH6 * int32) =       │

00:01:43 #3323 [Verbose] > │     match v0 with                                                            │

00:01:43 #3324 [Verbose] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

00:01:43 #3325 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:01:43 #3326 [Verbose] > │         let v6 : UH6 = UH6_0(v2, v3, v1)                                     │

00:01:43 #3327 [Verbose] > │         method33(v4, v6, v5)                                                 │

00:01:43 #3328 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:01:43 #3329 [Verbose] > │         struct (v1, v2)                                                      │

00:01:43 #3330 [Verbose] > │ and method34 (v0 : UH6, v1 : UH6) : UH6 =                                    │

00:01:43 #3331 [Verbose] > │     match v0 with                                                            │

00:01:43 #3332 [Verbose] > │     | UH6_0(v2, v3, v4) -> (* Cons *)                                        │

00:01:43 #3333 [Verbose] > │         let v5 : UH6 = UH6_0(v2, v3, v1)                                     │

00:01:43 #3334 [Verbose] > │         method34(v4, v5)                                                     │

00:01:43 #3335 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:01:43 #3336 [Verbose] > │         v1                                                                   │

00:01:43 #3337 [Verbose] > │ and method35 (v0 : Map<int32, int64>, v1 : UH6, v2 : UH2) : UH2 =            │

00:01:43 #3338 [Verbose] > │     match v1 with                                                            │

00:01:43 #3339 [Verbose] > │     | UH6_0(v3, v4, v5) -> (* Cons *)                                        │

00:01:43 #3340 [Verbose] > │         let v6 : UH2 = method35(v0, v5, v2)                                  │

00:01:43 #3341 [Verbose] > │         let v7 : int64 = v0.[v3]                                             │

00:01:43 #3342 [Verbose] > │         let v8 : int32 = int32 v7                                            │

00:01:43 #3343 [Verbose] > │         let v9 : string = v4.PadRight v8                                     │

00:01:43 #3344 [Verbose] > │         UH2_0(v9, v6)                                                        │

00:01:43 #3345 [Verbose] > │     | UH6_1 -> (* Nil *)                                                     │

00:01:43 #3346 [Verbose] > │         v2                                                                   │

00:01:43 #3347 [Verbose] > │ and method37 (v0 : UH2, v1 : int32) : int32 =                                │

00:01:43 #3348 [Verbose] > │     match v0 with                                                            │

00:01:43 #3349 [Verbose] > │     | UH2_0(v2, v3) -> (* Cons *)                                            │

00:01:43 #3350 [Verbose] > │         let v4 : int32 = v1 + 1                                              │

00:01:43 #3351 [Verbose] > │         method37(v3, v4)                                                     │

00:01:43 #3352 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:01:43 #3353 [Verbose] > │         v1                                                                   │

00:01:43 #3354 [Verbose] > │ and method38 (v0 : (string []), v1 : UH2, v2 : int32) : int32 =              │

00:01:43 #3355 [Verbose] > │     match v1 with                                                            │

00:01:43 #3356 [Verbose] > │     | UH2_0(v3, v4) -> (* Cons *)                                            │

00:01:43 #3357 [Verbose] > │         v0.[int v2] <- v3                                                    │

00:01:43 #3358 [Verbose] > │         let v5 : int32 = v2 + 1                                              │

00:01:43 #3359 [Verbose] > │         method38(v0, v4, v5)                                                 │

00:01:43 #3360 [Verbose] > │     | UH2_1 -> (* Nil *)                                                     │

00:01:43 #3361 [Verbose] > │         v2                                                                   │

00:01:43 #3362 [Verbose] > │ and method36 (v0 : UH2) : (string []) =                                      │

00:01:43 #3363 [Verbose] > │     let v1 : int32 = 0                                                       │

00:01:43 #3364 [Verbose] > │     let v2 : int32 = method37(v0, v1)                                        │

00:01:43 #3365 [Verbose] > │     let v3 : (string []) = Array.zeroCreate<string> (v2)                     │

00:01:43 #3366 [Verbose] > │     let v4 : int32 = 0                                                       │

00:01:43 #3367 [Verbose] > │     let v5 : int32 = method38(v3, v0, v4)                                    │

00:01:43 #3368 [Verbose] > │     v3                                                                       │

00:01:43 #3369 [Verbose] > │ and method40 (v0 : UH5, v1 : uint64) : uint64 =                              │

00:01:43 #3370 [Verbose] > │     match v0 with                                                            │

00:01:43 #3371 [Verbose] > │     | UH5_0(v2, v3, v4) -> (* Cons *)                                        │

00:01:43 #3372 [Verbose] > │         let v5 : uint64 = v1 + 1UL                                           │

00:01:43 #3373 [Verbose] > │         method40(v4, v5)                                                     │

00:01:43 #3374 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:01:43 #3375 [Verbose] > │         v1                                                                   │

00:01:43 #3376 [Verbose] > │ and method41 (v0 : (struct (int32 * int64) []), v1 : UH5, v2 : uint64) :     │

00:01:43 #3377 [Verbose] > │ uint64 =                                                                     │

00:01:43 #3378 [Verbose] > │     match v1 with                                                            │

00:01:43 #3379 [Verbose] > │     | UH5_0(v3, v4, v5) -> (* Cons *)                                        │

00:01:43 #3380 [Verbose] > │         v0.[int v2] <- struct (v3, v4)                                       │

00:01:43 #3381 [Verbose] > │         let v6 : uint64 = v2 + 1UL                                           │

00:01:43 #3382 [Verbose] > │         method41(v0, v5, v6)                                                 │

00:01:43 #3383 [Verbose] > │     | UH5_1 -> (* Nil *)                                                     │

00:01:43 #3384 [Verbose] > │         v2                                                                   │

00:01:43 #3385 [Verbose] > │ and method39 (v0 : UH5) : (struct (int32 * int64) []) =                      │

00:01:43 #3386 [Verbose] > │     let v1 : uint64 = 0UL                                                    │

00:01:43 #3387 [Verbose] > │     let v2 : uint64 = method40(v0, v1)                                       │

00:01:43 #3388 [Verbose] > │     let v3 : (struct (int32 * int64) []) = Array.zeroCreate<struct (int32 *  │

00:01:43 #3389 [Verbose] > │ int64)> (System.Convert.ToInt32(v2))                                         │

00:01:43 #3390 [Verbose] > │     let v4 : uint64 = 0UL                                                    │

00:01:43 #3391 [Verbose] > │     let v5 : uint64 = method41(v3, v0, v4)                                   │

00:01:43 #3392 [Verbose] > │     v3                                                                       │

00:01:43 #3393 [Verbose] > │ and closure8 () struct (v0 : int32, v1 : int64) : int64 =                    │

00:01:43 #3394 [Verbose] > │     v1                                                                       │

00:01:43 #3395 [Verbose] > │ and closure0 () () : unit =                                                  │

00:01:43 #3396 [Verbose] > │     let v0 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                           │

00:01:43 #3397 [Verbose] > │     let v1 : (int32 []) = method1(v0)                                        │

00:01:43 #3398 [Verbose] > │     let v2 : int32 = v1.Length                                               │

00:01:43 #3399 [Verbose] > │     let v3 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                           │

00:01:43 #3400 [Verbose] > │     let v4 : (int32 []) = method1(v3)                                        │

00:01:43 #3401 [Verbose] > │     let v5 : int32 = v4.Length                                               │

00:01:43 #3402 [Verbose] > │     let v6 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                           │

00:01:43 #3403 [Verbose] > │     let v7 : (int32 []) = method1(v6)                                        │

00:01:43 #3404 [Verbose] > │     let v8 : int32 = v7.Length                                               │

00:01:44 #3405 [Verbose] > │     let v9 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                           │

00:01:44 #3406 [Verbose] > │     let v10 : (int32 []) = method1(v9)                                       │

00:01:44 #3407 [Verbose] > │     let v11 : int32 = v10.Length                                             │

00:01:44 #3408 [Verbose] > │     let v12 : (int32 []) = Array.zeroCreate<int32> (100)                     │

00:01:44 #3409 [Verbose] > │     let v13 : Mut0 = {l0 = 0} : Mut0                                         │

00:01:44 #3410 [Verbose] > │     while method2(v13) do                                                    │

00:01:44 #3411 [Verbose] > │         let v15 : int32 = v13.l0                                             │

00:01:44 #3412 [Verbose] > │         let v16 : int32 = 1 + v15                                            │

00:01:44 #3413 [Verbose] > │         v12.[int v15] <- v16                                                 │

00:01:44 #3414 [Verbose] > │         let v17 : int32 = v15 + 1                                            │

00:01:44 #3415 [Verbose] > │         v13.l0 <- v17                                                        │

00:01:44 #3416 [Verbose] > │         ()                                                                   │

00:01:44 #3417 [Verbose] > │     let v18 : int32 = v12.Length                                             │

00:01:44 #3418 [Verbose] > │     let v19 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                          │

00:01:44 #3419 [Verbose] > │     let v20 : (int32 []) = method1(v19)                                      │

00:01:44 #3420 [Verbose] > │     let v21 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                          │

00:01:44 #3421 [Verbose] > │     let v22 : (int32 []) = method1(v21)                                      │

00:01:44 #3422 [Verbose] > │     let v23 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                          │

00:01:44 #3423 [Verbose] > │     let v24 : (int32 []) = method1(v23)                                      │

00:01:44 #3424 [Verbose] > │     let v25 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                          │

00:01:44 #3425 [Verbose] > │     let v26 : (int32 []) = method1(v25)                                      │

00:01:44 #3426 [Verbose] > │     let v27 : (int32 []) = Array.zeroCreate<int32> (100)                     │

00:01:44 #3427 [Verbose] > │     let v28 : Mut0 = {l0 = 0} : Mut0                                         │

00:01:44 #3428 [Verbose] > │     while method2(v28) do                                                    │

00:01:44 #3429 [Verbose] > │         let v30 : int32 = v28.l0                                             │

00:01:44 #3430 [Verbose] > │         let v31 : int32 = 1 + v30                                            │

00:01:44 #3431 [Verbose] > │         v27.[int v30] <- v31                                                 │

00:01:44 #3432 [Verbose] > │         let v32 : int32 = v30 + 1                                            │

00:01:44 #3433 [Verbose] > │         v28.l0 <- v32                                                        │

00:01:44 #3434 [Verbose] > │         ()                                                                   │

00:01:44 #3435 [Verbose] > │     let v33 : (unit -> unit) = closure0()                                    │

00:01:44 #3436 [Verbose] > │     let v34 : string = nameof v33                                            │

00:01:44 #3437 [Verbose] > │     let v35 : string = ""                                                    │

00:01:44 #3438 [Verbose] > │     System.Console.WriteLine v35                                             │

00:01:44 #3439 [Verbose] > │     System.Console.WriteLine v35                                             │

00:01:44 #3440 [Verbose] > │     let v36 : string = $"Test: {v34}"                                        │

00:01:44 #3441 [Verbose] > │     System.Console.WriteLine v36                                             │

00:01:44 #3442 [Verbose] > │     let v37 : int32 = 6                                                      │

00:01:44 #3443 [Verbose] > │     let v38 : int32 = 3                                                      │

00:01:44 #3444 [Verbose] > │     let v39 : US0 = US0_1(v38)                                               │

00:01:44 #3445 [Verbose] > │     let v40 : int32 = 1                                                      │

00:01:44 #3446 [Verbose] > │     let v41 : int32 = 0                                                      │

00:01:44 #3447 [Verbose] > │     let v42 : US0 = US0_1(v41)                                               │

00:01:44 #3448 [Verbose] > │     let v43 : int32 = 11                                                     │

00:01:44 #3449 [Verbose] > │     let v44 : int32 = 6                                                      │

00:01:44 #3450 [Verbose] > │     let v45 : US0 = US0_1(v44)                                               │

00:01:44 #3451 [Verbose] > │     let v46 : int32 = 12                                                     │

00:01:44 #3452 [Verbose] > │     let v47 : US0 = US0_0                                                    │

00:01:44 #3453 [Verbose] > │     let v48 : int32 = 60                                                     │

00:01:44 #3454 [Verbose] > │     let v49 : int32 = 59                                                     │

00:01:44 #3455 [Verbose] > │     let v50 : US0 = US0_1(v49)                                               │

00:01:44 #3456 [Verbose] > │     let v51 : int32 = 6                                                      │

00:01:44 #3457 [Verbose] > │     let v52 : int32 = 7                                                      │

00:01:44 #3458 [Verbose] > │     let v53 : int32 = 3                                                      │

00:01:44 #3459 [Verbose] > │     let v54 : US0 = US0_1(v53)                                               │

00:01:44 #3460 [Verbose] > │     let v55 : int32 = 1                                                      │

00:01:44 #3461 [Verbose] > │     let v56 : int32 = 7                                                      │

00:01:44 #3462 [Verbose] > │     let v57 : int32 = 0                                                      │

00:01:44 #3463 [Verbose] > │     let v58 : US0 = US0_1(v57)                                               │

00:01:44 #3464 [Verbose] > │     let v59 : int32 = 11                                                     │

00:01:44 #3465 [Verbose] > │     let v60 : int32 = 7                                                      │

00:01:44 #3466 [Verbose] > │     let v61 : int32 = 6                                                      │

00:01:44 #3467 [Verbose] > │     let v62 : US0 = US0_1(v61)                                               │

00:01:44 #3468 [Verbose] > │     let v63 : int32 = 12                                                     │

00:01:44 #3469 [Verbose] > │     let v64 : int32 = 7                                                      │

00:01:44 #3470 [Verbose] > │     let v65 : US0 = US0_0                                                    │

00:01:44 #3471 [Verbose] > │     let v66 : int32 = 60                                                     │

00:01:44 #3472 [Verbose] > │     let v67 : int32 = 100                                                    │

00:01:44 #3473 [Verbose] > │     let v68 : int32 = 59                                                     │

00:01:44 #3474 [Verbose] > │     let v69 : US0 = US0_1(v68)                                               │

00:01:44 #3475 [Verbose] > │     let v70 : UH0 = UH0_1                                                    │

00:01:44 #3476 [Verbose] > │     let v71 : UH0 = UH0_0(v27, v66, v67, v69, v70)                           │

00:01:44 #3477 [Verbose] > │     let v72 : UH0 = UH0_0(v26, v63, v64, v65, v71)                           │

00:01:44 #3478 [Verbose] > │     let v73 : UH0 = UH0_0(v24, v59, v60, v62, v72)                           │

00:01:44 #3479 [Verbose] > │     let v74 : UH0 = UH0_0(v22, v55, v56, v58, v73)                           │

00:01:44 #3480 [Verbose] > │     let v75 : UH0 = UH0_0(v20, v51, v52, v54, v74)                           │

00:01:44 #3481 [Verbose] > │     let v76 : UH0 = UH0_0(v12, v48, v18, v50, v75)                           │

00:01:44 #3482 [Verbose] > │     let v77 : UH0 = UH0_0(v10, v46, v11, v47, v76)                           │

00:01:44 #3483 [Verbose] > │     let v78 : UH0 = UH0_0(v7, v43, v8, v45, v77)                             │

00:01:44 #3484 [Verbose] > │     let v79 : UH0 = UH0_0(v4, v40, v5, v42, v78)                             │

00:01:44 #3485 [Verbose] > │     let v80 : UH0 = UH0_0(v1, v37, v2, v39, v79)                             │

00:01:44 #3486 [Verbose] > │     let v81 : (struct ((int32 []) * int32 * int32 * US0) []) = method3(v80)  │

00:01:44 #3487 [Verbose] > │     let v82 : uint64 = System.Convert.ToUInt64 v81.Length                    │

00:01:44 #3488 [Verbose] > │     let v83 : (struct (string * string * string * (int64 [])) []) =          │

00:01:44 #3489 [Verbose] > │ Array.zeroCreate<struct (string * string * string * (int64 []))>             │

00:01:44 #3490 [Verbose] > │ (System.Convert.ToInt32(v82))                                                │

00:01:44 #3491 [Verbose] > │     let v84 : Mut1 = {l0 = 0UL} : Mut1                                       │

00:01:44 #3492 [Verbose] > │     while method6(v82, v84) do                                               │

00:01:44 #3493 [Verbose] > │         let v86 : uint64 = v84.l0                                            │

00:01:44 #3494 [Verbose] > │         let struct (v87 : (int32 []), v88 : int32, v89 : int32, v90 : US0) = │

00:01:44 #3495 [Verbose] > │ v81.[int v86]                                                                │

00:01:44 #3496 [Verbose] > │         let v91 : string = $"%A{struct (v87, v88, v89)}"                     │

00:01:44 #3497 [Verbose] > │         System.Console.WriteLine v35                                         │

00:01:44 #3498 [Verbose] > │         let v92 : string = $"Solution: {v91}  "                              │

00:01:44 #3499 [Verbose] > │         System.Console.WriteLine v92                                         │

00:01:44 #3500 [Verbose] > │         let v93 : int32 = 0                                                  │

00:01:44 #3501 [Verbose] > │         let v94 : string = "semi_open_1"                                     │

00:01:44 #3502 [Verbose] > │         let v95 : (struct ((int32 []) * int32 * int32) -> US0) = closure1()  │

00:01:44 #3503 [Verbose] > │         let v96 : int32 = 1                                                  │

00:01:44 #3504 [Verbose] > │         let v97 : string = "closed_1"                                        │

00:01:44 #3505 [Verbose] > │         let v98 : (struct ((int32 []) * int32 * int32) -> US0) = closure2()  │

00:01:44 #3506 [Verbose] > │         let v99 : int32 = 2                                                  │

00:01:44 #3507 [Verbose] > │         let v100 : string = "semi_open_2"                                    │

00:01:44 #3508 [Verbose] > │         let v101 : (struct ((int32 []) * int32 * int32) -> US0) = closure3() │

00:01:44 #3509 [Verbose] > │         let v102 : int32 = 3                                                 │

00:01:44 #3510 [Verbose] > │         let v103 : string = "closed_2"                                       │

00:01:44 #3511 [Verbose] > │         let v104 : (struct ((int32 []) * int32 * int32) -> US0) = closure4() │

00:01:44 #3512 [Verbose] > │         let v105 : UH1 = UH1_1                                               │

00:01:44 #3513 [Verbose] > │         let v106 : UH1 = UH1_0(v102, v103, v104, v105)                       │

00:01:44 #3514 [Verbose] > │         let v107 : UH1 = UH1_0(v99, v100, v101, v106)                        │

00:01:44 #3515 [Verbose] > │         let v108 : UH1 = UH1_0(v96, v97, v98, v107)                          │

00:01:44 #3516 [Verbose] > │         let v109 : UH1 = UH1_0(v93, v94, v95, v108)                          │

00:01:44 #3517 [Verbose] > │         let v110 : (struct (int32 * string * (struct ((int32 []) * int32 *   │

00:01:44 #3518 [Verbose] > │ int32) -> US0)) []) = method11(v109)                                         │

00:01:44 #3519 [Verbose] > │         let v111 : uint64 = System.Convert.ToUInt64 v110.Length              │

00:01:44 #3520 [Verbose] > │         let v112 : (struct (US0 * int64) []) = Array.zeroCreate<struct (US0  │

00:01:44 #3521 [Verbose] > │ * int64)> (System.Convert.ToInt32(v111))                                     │

00:01:44 #3522 [Verbose] > │         let v113 : Mut1 = {l0 = 0UL} : Mut1                                  │

00:01:44 #3523 [Verbose] > │         while method6(v111, v113) do                                         │

00:01:44 #3524 [Verbose] > │             let v115 : uint64 = v113.l0                                      │

00:01:44 #3525 [Verbose] > │             let struct (v116 : int32, v117 : string, v118 : (struct ((int32  │

00:01:44 #3526 [Verbose] > │ []) * int32 * int32) -> US0)) = v110.[int v115]                              │

00:01:44 #3527 [Verbose] > │             let mutable result = None                                        │

00:01:44 #3528 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:01:44 #3529 [Verbose] > │             #if !WASM                                                        │

00:01:44 #3530 [Verbose] > │             ()                                                               │

00:01:44 #3531 [Verbose] > │             #else                                                            │

00:01:44 #3532 [Verbose] > │             ()                                                               │

00:01:44 #3533 [Verbose] > │             #endif                                                           │

00:01:44 #3534 [Verbose] > │             #else                                                            │

00:01:44 #3535 [Verbose] > │             System.GC.Collect ()                                             │

00:01:44 #3536 [Verbose] > │             ()                                                               │

00:01:44 #3537 [Verbose] > │             #endif                                                           │

00:01:44 #3538 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:01:44 #3539 [Verbose] > │             result |> Option.get                                             │

00:01:44 #3540 [Verbose] > │             let v119 : (unit -> System.Diagnostics.Stopwatch) =              │

00:01:44 #3541 [Verbose] > │ System.Diagnostics.Stopwatch                                                 │

00:01:44 #3542 [Verbose] > │             let v120 : System.Diagnostics.Stopwatch = v119 ()                │

00:01:44 #3543 [Verbose] > │             v120.Start ()                                                    │

00:01:44 #3544 [Verbose] > │             let v121 : int64 = v120.ElapsedMilliseconds                      │

00:01:44 #3545 [Verbose] > │             let v122 : (int32 []) = Array.zeroCreate<int32> (8000001)        │

00:01:44 #3546 [Verbose] > │             let v123 : Mut0 = {l0 = 0} : Mut0                                │

00:01:44 #3547 [Verbose] > │             while method14(v123) do                                          │

00:01:44 #3548 [Verbose] > │                 let v125 : int32 = v123.l0                                   │

00:01:44 #3549 [Verbose] > │                 v122.[int v125] <- v125                                      │

00:01:44 #3550 [Verbose] > │                 let v126 : int32 = v125 + 1                                  │

00:01:44 #3551 [Verbose] > │                 v123.l0 <- v126                                              │

00:01:44 #3552 [Verbose] > │                 ()                                                           │

00:01:44 #3553 [Verbose] > │             let v127 : (int32 -> US0) = closure5(v87, v88, v89, v118)        │

00:01:44 #3554 [Verbose] > │             let v128 : (US0 []) = v122 |> Array.Parallel.map v127            │

00:01:44 #3555 [Verbose] > │             let v129 : int32 = v128.Length                                   │

00:01:44 #3556 [Verbose] > │             let v130 : int32 = v129 - 1                                      │

00:01:44 #3557 [Verbose] > │             let v131 : US0 = v128.[int v130]                                 │

00:01:44 #3558 [Verbose] > │             let v132 : int64 = v120.ElapsedMilliseconds                      │

00:01:44 #3559 [Verbose] > │             let v133 : int64 = v132 - v121                                   │

00:01:44 #3560 [Verbose] > │             let v134 : string = $"Test case {v116 + 1}. {v117}. Time: {v133} │

00:01:44 #3561 [Verbose] > │ "                                                                            │

00:01:44 #3562 [Verbose] > │             System.Console.WriteLine v134                                    │

00:01:44 #3563 [Verbose] > │             v112.[int v115] <- struct (v131, v133)                           │

00:01:44 #3564 [Verbose] > │             let v135 : uint64 = v115 + 1UL                                   │

00:01:44 #3565 [Verbose] > │             v113.l0 <- v135                                                  │

00:01:44 #3566 [Verbose] > │             ()                                                               │

00:01:44 #3567 [Verbose] > │         let v136 : uint64 = System.Convert.ToUInt64 v112.Length              │

00:01:44 #3568 [Verbose] > │         let v137 : (US0 []) = Array.zeroCreate<US0>                          │

00:01:44 #3569 [Verbose] > │ (System.Convert.ToInt32(v136))                                               │

00:01:44 #3570 [Verbose] > │         let v138 : Mut1 = {l0 = 0UL} : Mut1                                  │

00:01:44 #3571 [Verbose] > │         while method6(v136, v138) do                                         │

00:01:44 #3572 [Verbose] > │             let v140 : uint64 = v138.l0                                      │

00:01:44 #3573 [Verbose] > │             let struct (v141 : US0, v142 : int64) = v112.[int v140]          │

00:01:44 #3574 [Verbose] > │             v137.[int v140] <- v141                                          │

00:01:44 #3575 [Verbose] > │             let v143 : uint64 = v140 + 1UL                                   │

00:01:44 #3576 [Verbose] > │             v138.l0 <- v143                                                  │

00:01:44 #3577 [Verbose] > │             ()                                                               │

00:01:44 #3578 [Verbose] > │         let v144 : uint64 = System.Convert.ToUInt64 v137.Length              │

00:01:44 #3579 [Verbose] > │         let v145 : bool = v144 <= 1UL                                        │

00:01:44 #3580 [Verbose] > │         if v145 then                                                         │

00:01:44 #3581 [Verbose] > │             ()                                                               │

00:01:44 #3582 [Verbose] > │         else                                                                 │

00:01:44 #3583 [Verbose] > │             let v146 : US0 = v137.[int 0UL]                                  │

00:01:44 #3584 [Verbose] > │             let v147 : uint64 = 0UL                                          │

00:01:44 #3585 [Verbose] > │             let v148 : bool = method15(v146, v137, v147)                     │

00:01:44 #3586 [Verbose] > │             if v148 then                                                     │

00:01:44 #3587 [Verbose] > │                 ()                                                           │

00:01:44 #3588 [Verbose] > │             else                                                             │

00:01:44 #3589 [Verbose] > │                 let v149 : string = $"Challenge error: {v137}"               │

00:01:44 #3590 [Verbose] > │                 failwith<unit> v149                                          │

00:01:44 #3591 [Verbose] > │         let v150 : string = $"%A{v90}"                                       │

00:01:44 #3592 [Verbose] > │         let v151 : (US0 []) = Array.zeroCreate<US0>                          │

00:01:44 #3593 [Verbose] > │ (System.Convert.ToInt32(v136))                                               │

00:01:44 #3594 [Verbose] > │         let v152 : Mut1 = {l0 = 0UL} : Mut1                                  │

00:01:44 #3595 [Verbose] > │         while method6(v136, v152) do                                         │

00:01:44 #3596 [Verbose] > │             let v154 : uint64 = v152.l0                                      │

00:01:44 #3597 [Verbose] > │             let struct (v155 : US0, v156 : int64) = v112.[int v154]          │

00:01:44 #3598 [Verbose] > │             v151.[int v154] <- v155                                          │

00:01:44 #3599 [Verbose] > │             let v157 : uint64 = v154 + 1UL                                   │

00:01:44 #3600 [Verbose] > │             v152.l0 <- v157                                                  │

00:01:44 #3601 [Verbose] > │             ()                                                               │

00:01:44 #3602 [Verbose] > │         let v158 : US0 = v151.[int 0UL]                                      │

00:01:44 #3603 [Verbose] > │         let v159 : string = $"%A{v158}"                                      │

00:01:44 #3604 [Verbose] > │         let v160 : (int64 []) = Array.zeroCreate<int64>                      │

00:01:44 #3605 [Verbose] > │ (System.Convert.ToInt32(v136))                                               │

00:01:44 #3606 [Verbose] > │         let v161 : Mut1 = {l0 = 0UL} : Mut1                                  │

00:01:44 #3607 [Verbose] > │         while method6(v136, v161) do                                         │

00:01:44 #3608 [Verbose] > │             let v163 : uint64 = v161.l0                                      │

00:01:44 #3609 [Verbose] > │             let struct (v164 : US0, v165 : int64) = v112.[int v163]          │

00:01:44 #3610 [Verbose] > │             v160.[int v163] <- v165                                          │

00:01:44 #3611 [Verbose] > │             let v166 : uint64 = v163 + 1UL                                   │

00:01:44 #3612 [Verbose] > │             v161.l0 <- v166                                                  │

00:01:44 #3613 [Verbose] > │             ()                                                               │

00:01:44 #3614 [Verbose] > │         v83.[int v86] <- struct (v150, v91, v159, v160)                      │

00:01:44 #3615 [Verbose] > │         let v167 : uint64 = v86 + 1UL                                        │

00:01:44 #3616 [Verbose] > │         v84.l0 <- v167                                                       │

00:01:44 #3617 [Verbose] > │         ()                                                                   │

00:01:44 #3618 [Verbose] > │     let v168 : uint64 = System.Convert.ToUInt64 v83.Length                   │

00:01:44 #3619 [Verbose] > │     let v169 : (struct (UH2 * US1) []) = Array.zeroCreate<struct (UH2 *      │

00:01:44 #3620 [Verbose] > │ US1)> (System.Convert.ToInt32(v168))                                         │

00:01:44 #3621 [Verbose] > │     let v170 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #3622 [Verbose] > │     while method6(v168, v170) do                                             │

00:01:44 #3623 [Verbose] > │         let v172 : uint64 = v170.l0                                          │

00:01:44 #3624 [Verbose] > │         let struct (v173 : string, v174 : string, v175 : string, v176 :      │

00:01:44 #3625 [Verbose] > │ (int64 [])) = v83.[int v172]                                                 │

00:01:44 #3626 [Verbose] > │         let v177 : uint64 = System.Convert.ToUInt64 v176.Length              │

00:01:44 #3627 [Verbose] > │         let v178 : UH3 = UH3_1                                               │

00:01:44 #3628 [Verbose] > │         let v179 : Mut2 = {l0 = 0UL; l1 = v178; l2 = 0L} : Mut2              │

00:01:44 #3629 [Verbose] > │         while method16(v177, v179) do                                        │

00:01:44 #3630 [Verbose] > │             let v181 : uint64 = v179.l0                                      │

00:01:44 #3631 [Verbose] > │             let struct (v182 : UH3, v183 : int64) = v179.l1, v179.l2         │

00:01:44 #3632 [Verbose] > │             let v184 : int64 = v176.[int v181]                               │

00:01:44 #3633 [Verbose] > │             let v185 : int64 = v183 + 1L                                     │

00:01:44 #3634 [Verbose] > │             let v186 : uint64 = v181 + 1UL                                   │

00:01:44 #3635 [Verbose] > │             let v187 : UH3 = UH3_0(v183, v184, v182)                         │

00:01:44 #3636 [Verbose] > │             v179.l0 <- v186                                                  │

00:01:44 #3637 [Verbose] > │             v179.l1 <- v187                                                  │

00:01:44 #3638 [Verbose] > │             v179.l2 <- v185                                                  │

00:01:44 #3639 [Verbose] > │             ()                                                               │

00:01:44 #3640 [Verbose] > │         let struct (v188 : UH3, v189 : int64) = v179.l1, v179.l2             │

00:01:44 #3641 [Verbose] > │         let v190 : UH3 = UH3_1                                               │

00:01:44 #3642 [Verbose] > │         let v191 : UH3 = method17(v188, v190)                                │

00:01:44 #3643 [Verbose] > │         let v192 : (struct (int64 * int64) []) = method18(v191)              │

00:01:44 #3644 [Verbose] > │         let v193 : int32 = v192.Length                                       │

00:01:44 #3645 [Verbose] > │         let v194 : (struct (int64 * int64) []) = Array.zeroCreate<struct     │

00:01:44 #3646 [Verbose] > │ (int64 * int64)> (v193)                                                      │

00:01:44 #3647 [Verbose] > │         let v195 : Mut0 = {l0 = 0} : Mut0                                    │

00:01:44 #3648 [Verbose] > │         while method21(v193, v195) do                                        │

00:01:44 #3649 [Verbose] > │             let v197 : int32 = v195.l0                                       │

00:01:44 #3650 [Verbose] > │             let struct (v198 : int64, v199 : int64) = v192.[int v197]        │

00:01:44 #3651 [Verbose] > │             let v200 : int64 = v198 + 1L                                     │

00:01:44 #3652 [Verbose] > │             v194.[int v197] <- struct (v200, v199)                           │

00:01:44 #3653 [Verbose] > │             let v201 : int32 = v197 + 1                                      │

00:01:44 #3654 [Verbose] > │             v195.l0 <- v201                                                  │

00:01:44 #3655 [Verbose] > │             ()                                                               │

00:01:44 #3656 [Verbose] > │         let v202 : (struct (int64 * int64) -> int64) = closure6()            │

00:01:44 #3657 [Verbose] > │         let v203 : (struct (int64 * int64) []) = v194 |> Array.sortBy v202   │

00:01:44 #3658 [Verbose] > │         let struct (v204 : int64, v205 : int64) = v203.[int 0]               │

00:01:44 #3659 [Verbose] > │         let v206 : string = $"%A{struct (v204, v205)}"                       │

00:01:44 #3660 [Verbose] > │         let v207 : bool = v173 = v175                                        │

00:01:44 #3661 [Verbose] > │         let v212 : US1 =                                                     │

00:01:44 #3662 [Verbose] > │             if v207 then                                                     │

00:01:44 #3663 [Verbose] > │                 let v208 : System.ConsoleColor =                             │

00:01:44 #3664 [Verbose] > │ System.ConsoleColor.DarkGreen                                                │

00:01:44 #3665 [Verbose] > │                 US1_1(v208)                                                  │

00:01:44 #3666 [Verbose] > │             else                                                             │

00:01:44 #3667 [Verbose] > │                 let v210 : System.ConsoleColor = System.ConsoleColor.DarkRed │

00:01:44 #3668 [Verbose] > │                 US1_1(v210)                                                  │

00:01:44 #3669 [Verbose] > │         let v213 : UH2 = UH2_1                                               │

00:01:44 #3670 [Verbose] > │         let v214 : UH2 = UH2_0(v206, v213)                                   │

00:01:44 #3671 [Verbose] > │         let v215 : UH2 = UH2_0(v175, v214)                                   │

00:01:44 #3672 [Verbose] > │         let v216 : UH2 = UH2_0(v173, v215)                                   │

00:01:44 #3673 [Verbose] > │         let v217 : UH2 = UH2_0(v174, v216)                                   │

00:01:44 #3674 [Verbose] > │         v169.[int v172] <- struct (v217, v212)                               │

00:01:44 #3675 [Verbose] > │         let v218 : uint64 = v172 + 1UL                                       │

00:01:44 #3676 [Verbose] > │         v170.l0 <- v218                                                      │

00:01:44 #3677 [Verbose] > │         ()                                                                   │

00:01:44 #3678 [Verbose] > │     let v219 : string = "Input"                                              │

00:01:44 #3679 [Verbose] > │     let v220 : string = "Expected"                                           │

00:01:44 #3680 [Verbose] > │     let v221 : string = "Result"                                             │

00:01:44 #3681 [Verbose] > │     let v222 : string = "Best"                                               │

00:01:44 #3682 [Verbose] > │     let v223 : UH2 = UH2_1                                                   │

00:01:44 #3683 [Verbose] > │     let v224 : UH2 = UH2_0(v222, v223)                                       │

00:01:44 #3684 [Verbose] > │     let v225 : UH2 = UH2_0(v221, v224)                                       │

00:01:44 #3685 [Verbose] > │     let v226 : UH2 = UH2_0(v220, v225)                                       │

00:01:44 #3686 [Verbose] > │     let v227 : UH2 = UH2_0(v219, v226)                                       │

00:01:44 #3687 [Verbose] > │     let v228 : US1 = US1_0                                                   │

00:01:44 #3688 [Verbose] > │     let v229 : string = "---"                                                │

00:01:44 #3689 [Verbose] > │     let v230 : UH2 = UH2_1                                                   │

00:01:44 #3690 [Verbose] > │     let v231 : UH2 = UH2_0(v229, v230)                                       │

00:01:44 #3691 [Verbose] > │     let v232 : UH2 = UH2_0(v229, v231)                                       │

00:01:44 #3692 [Verbose] > │     let v233 : UH2 = UH2_0(v229, v232)                                       │

00:01:44 #3693 [Verbose] > │     let v234 : UH2 = UH2_0(v229, v233)                                       │

00:01:44 #3694 [Verbose] > │     let v235 : US1 = US1_0                                                   │

00:01:44 #3695 [Verbose] > │     let v236 : UH4 = UH4_1                                                   │

00:01:44 #3696 [Verbose] > │     let v237 : UH4 = UH4_0(v234, v235, v236)                                 │

00:01:44 #3697 [Verbose] > │     let v238 : UH4 = UH4_0(v227, v228, v237)                                 │

00:01:44 #3698 [Verbose] > │     let v239 : (struct (UH2 * US1) []) = method22(v238)                      │

00:01:44 #3699 [Verbose] > │     let v240 : uint64 = System.Convert.ToUInt64 v239.Length                  │

00:01:44 #3700 [Verbose] > │     let v241 : uint64 = System.Convert.ToUInt64 v169.Length                  │

00:01:44 #3701 [Verbose] > │     let v242 : uint64 = v240 + v241                                          │

00:01:44 #3702 [Verbose] > │     let v243 : (struct (UH2 * US1) []) = Array.zeroCreate<struct (UH2 *      │

00:01:44 #3703 [Verbose] > │ US1)> (System.Convert.ToInt32(v242))                                         │

00:01:44 #3704 [Verbose] > │     let v244 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #3705 [Verbose] > │     while method6(v242, v244) do                                             │

00:01:44 #3706 [Verbose] > │         let v246 : uint64 = v244.l0                                          │

00:01:44 #3707 [Verbose] > │         let v247 : bool = v246 < v240                                        │

00:01:44 #3708 [Verbose] > │         let struct (v253 : UH2, v254 : US1) =                                │

00:01:44 #3709 [Verbose] > │             if v247 then                                                     │

00:01:44 #3710 [Verbose] > │                 let struct (v248 : UH2, v249 : US1) = v239.[int v246]        │

00:01:44 #3711 [Verbose] > │                 struct (v248, v249)                                          │

00:01:44 #3712 [Verbose] > │             else                                                             │

00:01:44 #3713 [Verbose] > │                 let v250 : uint64 = v246 - v240                              │

00:01:44 #3714 [Verbose] > │                 let struct (v251 : UH2, v252 : US1) = v169.[int v250]        │

00:01:44 #3715 [Verbose] > │                 struct (v251, v252)                                          │

00:01:44 #3716 [Verbose] > │         v243.[int v246] <- struct (v253, v254)                               │

00:01:44 #3717 [Verbose] > │         let v255 : uint64 = v246 + 1UL                                       │

00:01:44 #3718 [Verbose] > │         v244.l0 <- v255                                                      │

00:01:44 #3719 [Verbose] > │         ()                                                                   │

00:01:44 #3720 [Verbose] > │     let v256 : uint64 = System.Convert.ToUInt64 v243.Length                  │

00:01:44 #3721 [Verbose] > │     let v257 : ((string []) []) = Array.zeroCreate<(string [])>              │

00:01:44 #3722 [Verbose] > │ (System.Convert.ToInt32(v256))                                               │

00:01:44 #3723 [Verbose] > │     let v258 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #3724 [Verbose] > │     while method6(v256, v258) do                                             │

00:01:44 #3725 [Verbose] > │         let v260 : uint64 = v258.l0                                          │

00:01:44 #3726 [Verbose] > │         let struct (v261 : UH2, v262 : US1) = v243.[int v260]                │

00:01:44 #3727 [Verbose] > │         let v263 : (string []) = method25(v261)                              │

00:01:44 #3728 [Verbose] > │         v257.[int v260] <- v263                                              │

00:01:44 #3729 [Verbose] > │         let v264 : uint64 = v260 + 1UL                                       │

00:01:44 #3730 [Verbose] > │         v258.l0 <- v264                                                      │

00:01:44 #3731 [Verbose] > │         ()                                                                   │

00:01:44 #3732 [Verbose] > │     let v265 : ((string []) []) = v257 |> Array.transpose                    │

00:01:44 #3733 [Verbose] > │     let v266 : uint64 = System.Convert.ToUInt64 v265.Length                  │

00:01:44 #3734 [Verbose] > │     let v267 : (int64 []) = Array.zeroCreate<int64>                          │

00:01:44 #3735 [Verbose] > │ (System.Convert.ToInt32(v266))                                               │

00:01:44 #3736 [Verbose] > │     let v268 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #3737 [Verbose] > │     while method6(v266, v268) do                                             │

00:01:44 #3738 [Verbose] > │         let v270 : uint64 = v268.l0                                          │

00:01:44 #3739 [Verbose] > │         let v271 : (string []) = v265.[int v270]                             │

00:01:44 #3740 [Verbose] > │         let v272 : uint64 = System.Convert.ToUInt64 v271.Length              │

00:01:44 #3741 [Verbose] > │         let v273 : (int64 []) = Array.zeroCreate<int64>                      │

00:01:44 #3742 [Verbose] > │ (System.Convert.ToInt32(v272))                                               │

00:01:44 #3743 [Verbose] > │         let v274 : Mut1 = {l0 = 0UL} : Mut1                                  │

00:01:44 #3744 [Verbose] > │         while method6(v272, v274) do                                         │

00:01:44 #3745 [Verbose] > │             let v276 : uint64 = v274.l0                                      │

00:01:44 #3746 [Verbose] > │             let v277 : string = v271.[int v276]                              │

00:01:44 #3747 [Verbose] > │             let v278 : int64 = System.Convert.ToInt64 v277.Length            │

00:01:44 #3748 [Verbose] > │             v273.[int v276] <- v278                                          │

00:01:44 #3749 [Verbose] > │             let v279 : uint64 = v276 + 1UL                                   │

00:01:44 #3750 [Verbose] > │             v274.l0 <- v279                                                  │

00:01:44 #3751 [Verbose] > │             ()                                                               │

00:01:44 #3752 [Verbose] > │         let v280 : (int64 []) = v273 |> Array.sortDescending                 │

00:01:44 #3753 [Verbose] > │         let v281 : int64 option = v280 |> Array.tryItem 0                    │

00:01:44 #3754 [Verbose] > │         let v282 : (int64 -> US2) = closure7()                               │

00:01:44 #3755 [Verbose] > │         let v283 : US2 = US2_0                                               │

00:01:44 #3756 [Verbose] > │         let v284 : US2 = v281 |> Option.map v282 |> Option.defaultValue v283 │

00:01:44 #3757 [Verbose] > │         let v287 : int64 =                                                   │

00:01:44 #3758 [Verbose] > │             match v284 with                                                  │

00:01:44 #3759 [Verbose] > │             | US2_0 -> (* None *)                                            │

00:01:44 #3760 [Verbose] > │                 0L                                                           │

00:01:44 #3761 [Verbose] > │             | US2_1(v285) -> (* Some *)                                      │

00:01:44 #3762 [Verbose] > │                 v285                                                         │

00:01:44 #3763 [Verbose] > │         v267.[int v270] <- v287                                              │

00:01:44 #3764 [Verbose] > │         let v288 : uint64 = v270 + 1UL                                       │

00:01:44 #3765 [Verbose] > │         v268.l0 <- v288                                                      │

00:01:44 #3766 [Verbose] > │         ()                                                                   │

00:01:44 #3767 [Verbose] > │     let v289 : uint64 = System.Convert.ToUInt64 v267.Length                  │

00:01:44 #3768 [Verbose] > │     let v290 : UH5 = UH5_1                                                   │

00:01:44 #3769 [Verbose] > │     let v291 : Mut3 = {l0 = 0UL; l1 = v290; l2 = 0} : Mut3                   │

00:01:44 #3770 [Verbose] > │     while method28(v289, v291) do                                            │

00:01:44 #3771 [Verbose] > │         let v293 : uint64 = v291.l0                                          │

00:01:44 #3772 [Verbose] > │         let struct (v294 : UH5, v295 : int32) = v291.l1, v291.l2             │

00:01:44 #3773 [Verbose] > │         let v296 : int64 = v267.[int v293]                                   │

00:01:44 #3774 [Verbose] > │         let v297 : int32 = v295 + 1                                          │

00:01:44 #3775 [Verbose] > │         let v298 : uint64 = v293 + 1UL                                       │

00:01:44 #3776 [Verbose] > │         let v299 : UH5 = UH5_0(v295, v296, v294)                             │

00:01:44 #3777 [Verbose] > │         v291.l0 <- v298                                                      │

00:01:44 #3778 [Verbose] > │         v291.l1 <- v299                                                      │

00:01:44 #3779 [Verbose] > │         v291.l2 <- v297                                                      │

00:01:44 #3780 [Verbose] > │         ()                                                                   │

00:01:44 #3781 [Verbose] > │     let struct (v300 : UH5, v301 : int32) = v291.l1, v291.l2                 │

00:01:44 #3782 [Verbose] > │     let v302 : UH5 = UH5_1                                                   │

00:01:44 #3783 [Verbose] > │     let v303 : UH5 = method29(v300, v302)                                    │

00:01:44 #3784 [Verbose] > │     let v304 : (struct (int32 * int64) []) = method30(v303)                  │

00:01:44 #3785 [Verbose] > │     let v305 : Map<int32, int64> = v304 |> Array.map (fun (struct (a, b)) -> │

00:01:44 #3786 [Verbose] > │ a, b) |> Map.ofArray                                                         │

00:01:44 #3787 [Verbose] > │     let v306 : (struct ((string []) * US1) []) = Array.zeroCreate<struct     │

00:01:44 #3788 [Verbose] > │ ((string []) * US1)> (System.Convert.ToInt32(v256))                          │

00:01:44 #3789 [Verbose] > │     let v307 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #3790 [Verbose] > │     while method6(v256, v307) do                                             │

00:01:44 #3791 [Verbose] > │         let v309 : uint64 = v307.l0                                          │

00:01:44 #3792 [Verbose] > │         let struct (v310 : UH2, v311 : US1) = v243.[int v309]                │

00:01:44 #3793 [Verbose] > │         let v312 : UH6 = UH6_1                                               │

00:01:44 #3794 [Verbose] > │         let v313 : int32 = 0                                                 │

00:01:44 #3795 [Verbose] > │         let struct (v314 : UH6, v315 : int32) = method33(v310, v312, v313)   │

00:01:44 #3796 [Verbose] > │         let v316 : UH6 = UH6_1                                               │

00:01:44 #3797 [Verbose] > │         let v317 : UH6 = method34(v314, v316)                                │

00:01:44 #3798 [Verbose] > │         let v318 : UH2 = UH2_1                                               │

00:01:44 #3799 [Verbose] > │         let v319 : UH2 = method35(v305, v317, v318)                          │

00:01:44 #3800 [Verbose] > │         let v320 : (string []) = method36(v319)                              │

00:01:44 #3801 [Verbose] > │         v306.[int v309] <- struct (v320, v311)                               │

00:01:44 #3802 [Verbose] > │         let v321 : uint64 = v309 + 1UL                                       │

00:01:44 #3803 [Verbose] > │         v307.l0 <- v321                                                      │

00:01:44 #3804 [Verbose] > │         ()                                                                   │

00:01:44 #3805 [Verbose] > │     System.Console.WriteLine v35                                             │

00:01:44 #3806 [Verbose] > │     let v322 : uint64 = System.Convert.ToUInt64 v306.Length                  │

00:01:44 #3807 [Verbose] > │     let v323 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #3808 [Verbose] > │     while method6(v322, v323) do                                             │

00:01:44 #3809 [Verbose] > │         let v325 : uint64 = v323.l0                                          │

00:01:44 #3810 [Verbose] > │         let struct (v326 : (string []), v327 : US1) = v306.[int v325]        │

00:01:44 #3811 [Verbose] > │         match v327 with                                                      │

00:01:44 #3812 [Verbose] > │         | US1_0 -> (* None *)                                                │

00:01:44 #3813 [Verbose] > │             let mutable result = None                                        │

00:01:44 #3814 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:01:44 #3815 [Verbose] > │             #if !WASM                                                        │

00:01:44 #3816 [Verbose] > │             ()                                                               │

00:01:44 #3817 [Verbose] > │             #else                                                            │

00:01:44 #3818 [Verbose] > │             ()                                                               │

00:01:44 #3819 [Verbose] > │             #endif                                                           │

00:01:44 #3820 [Verbose] > │             #else                                                            │

00:01:44 #3821 [Verbose] > │             System.Console.ResetColor ()                                     │

00:01:44 #3822 [Verbose] > │             ()                                                               │

00:01:44 #3823 [Verbose] > │             #endif                                                           │

00:01:44 #3824 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:01:44 #3825 [Verbose] > │             result |> Option.get                                             │

00:01:44 #3826 [Verbose] > │             ()                                                               │

00:01:44 #3827 [Verbose] > │         | US1_1(v328) -> (* Some *)                                          │

00:01:44 #3828 [Verbose] > │             let mutable result = None                                        │

00:01:44 #3829 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:01:44 #3830 [Verbose] > │             #if !WASM                                                        │

00:01:44 #3831 [Verbose] > │             ()                                                               │

00:01:44 #3832 [Verbose] > │             #else                                                            │

00:01:44 #3833 [Verbose] > │             ()                                                               │

00:01:44 #3834 [Verbose] > │             #endif                                                           │

00:01:44 #3835 [Verbose] > │             #else                                                            │

00:01:44 #3836 [Verbose] > │             System.Console.ForegroundColor <- v328                           │

00:01:44 #3837 [Verbose] > │             ()                                                               │

00:01:44 #3838 [Verbose] > │             #endif                                                           │

00:01:44 #3839 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:01:44 #3840 [Verbose] > │             result |> Option.get                                             │

00:01:44 #3841 [Verbose] > │             ()                                                               │

00:01:44 #3842 [Verbose] > │         let v329 : string = "\t| "                                           │

00:01:44 #3843 [Verbose] > │         let v330 : string = System.String.Join (v329, v326)                  │

00:01:44 #3844 [Verbose] > │         System.Console.WriteLine v330                                        │

00:01:44 #3845 [Verbose] > │         let mutable result = None                                            │

00:01:44 #3846 [Verbose] > │         #if FABLE_COMPILER_RUST                                              │

00:01:44 #3847 [Verbose] > │         #if !WASM                                                            │

00:01:44 #3848 [Verbose] > │         ()                                                                   │

00:01:44 #3849 [Verbose] > │         #else                                                                │

00:01:44 #3850 [Verbose] > │         ()                                                                   │

00:01:44 #3851 [Verbose] > │         #endif                                                               │

00:01:44 #3852 [Verbose] > │         #else                                                                │

00:01:44 #3853 [Verbose] > │         System.Console.ResetColor ()                                         │

00:01:44 #3854 [Verbose] > │         ()                                                                   │

00:01:44 #3855 [Verbose] > │         #endif                                                               │

00:01:44 #3856 [Verbose] > │         |> fun x -> result <- Some x                                         │

00:01:44 #3857 [Verbose] > │         result |> Option.get                                                 │

00:01:44 #3858 [Verbose] > │         let v331 : uint64 = v325 + 1UL                                       │

00:01:44 #3859 [Verbose] > │         v323.l0 <- v331                                                      │

00:01:44 #3860 [Verbose] > │         ()                                                                   │

00:01:44 #3861 [Verbose] > │     let v332 : ((float []) []) = Array.zeroCreate<(float [])>                │

00:01:44 #3862 [Verbose] > │ (System.Convert.ToInt32(v168))                                               │

00:01:44 #3863 [Verbose] > │     let v333 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #3864 [Verbose] > │     while method6(v168, v333) do                                             │

00:01:44 #3865 [Verbose] > │         let v335 : uint64 = v333.l0                                          │

00:01:44 #3866 [Verbose] > │         let struct (v336 : string, v337 : string, v338 : string, v339 :      │

00:01:44 #3867 [Verbose] > │ (int64 [])) = v83.[int v335]                                                 │

00:01:44 #3868 [Verbose] > │         let v340 : (int64 -> float) = float                                  │

00:01:44 #3869 [Verbose] > │         let v341 : uint64 = System.Convert.ToUInt64 v339.Length              │

00:01:44 #3870 [Verbose] > │         let v342 : (float []) = Array.zeroCreate<float>                      │

00:01:44 #3871 [Verbose] > │ (System.Convert.ToInt32(v341))                                               │

00:01:44 #3872 [Verbose] > │         let v343 : Mut1 = {l0 = 0UL} : Mut1                                  │

00:01:44 #3873 [Verbose] > │         while method6(v341, v343) do                                         │

00:01:44 #3874 [Verbose] > │             let v345 : uint64 = v343.l0                                      │

00:01:44 #3875 [Verbose] > │             let v346 : int64 = v339.[int v345]                               │

00:01:44 #3876 [Verbose] > │             let v347 : float = v340 v346                                     │

00:01:44 #3877 [Verbose] > │             v342.[int v345] <- v347                                          │

00:01:44 #3878 [Verbose] > │             let v348 : uint64 = v345 + 1UL                                   │

00:01:44 #3879 [Verbose] > │             v343.l0 <- v348                                                  │

00:01:44 #3880 [Verbose] > │             ()                                                               │

00:01:44 #3881 [Verbose] > │         v332.[int v335] <- v342                                              │

00:01:44 #3882 [Verbose] > │         let v349 : uint64 = v335 + 1UL                                       │

00:01:44 #3883 [Verbose] > │         v333.l0 <- v349                                                      │

00:01:44 #3884 [Verbose] > │         ()                                                                   │

00:01:44 #3885 [Verbose] > │     let v350 : ((float []) []) = v332 |> Array.transpose                     │

00:01:44 #3886 [Verbose] > │     let v351 : uint64 = System.Convert.ToUInt64 v350.Length                  │

00:01:44 #3887 [Verbose] > │     let v352 : (float []) = Array.zeroCreate<float>                          │

00:01:44 #3888 [Verbose] > │ (System.Convert.ToInt32(v351))                                               │

00:01:44 #3889 [Verbose] > │     let v353 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #3890 [Verbose] > │     while method6(v351, v353) do                                             │

00:01:44 #3891 [Verbose] > │         let v355 : uint64 = v353.l0                                          │

00:01:44 #3892 [Verbose] > │         let v356 : (float []) = v350.[int v355]                              │

00:01:44 #3893 [Verbose] > │         let v357 : float = v356 |> Array.average                             │

00:01:44 #3894 [Verbose] > │         v352.[int v355] <- v357                                              │

00:01:44 #3895 [Verbose] > │         let v358 : uint64 = v355 + 1UL                                       │

00:01:44 #3896 [Verbose] > │         v353.l0 <- v358                                                      │

00:01:44 #3897 [Verbose] > │         ()                                                                   │

00:01:44 #3898 [Verbose] > │     let v359 : (float -> int64) = int64                                      │

00:01:44 #3899 [Verbose] > │     let v360 : uint64 = System.Convert.ToUInt64 v352.Length                  │

00:01:44 #3900 [Verbose] > │     let v361 : (int64 []) = Array.zeroCreate<int64>                          │

00:01:44 #3901 [Verbose] > │ (System.Convert.ToInt32(v360))                                               │

00:01:44 #3902 [Verbose] > │     let v362 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #3903 [Verbose] > │     while method6(v360, v362) do                                             │

00:01:44 #3904 [Verbose] > │         let v364 : uint64 = v362.l0                                          │

00:01:44 #3905 [Verbose] > │         let v365 : float = v352.[int v364]                                   │

00:01:44 #3906 [Verbose] > │         let v366 : int64 = v359 v365                                         │

00:01:44 #3907 [Verbose] > │         v361.[int v364] <- v366                                              │

00:01:44 #3908 [Verbose] > │         let v367 : uint64 = v364 + 1UL                                       │

00:01:44 #3909 [Verbose] > │         v362.l0 <- v367                                                      │

00:01:44 #3910 [Verbose] > │         ()                                                                   │

00:01:44 #3911 [Verbose] > │     let v368 : uint64 = System.Convert.ToUInt64 v361.Length                  │

00:01:44 #3912 [Verbose] > │     let v369 : UH5 = UH5_1                                                   │

00:01:44 #3913 [Verbose] > │     let v370 : Mut3 = {l0 = 0UL; l1 = v369; l2 = 0} : Mut3                   │

00:01:44 #3914 [Verbose] > │     while method28(v368, v370) do                                            │

00:01:44 #3915 [Verbose] > │         let v372 : uint64 = v370.l0                                          │

00:01:44 #3916 [Verbose] > │         let struct (v373 : UH5, v374 : int32) = v370.l1, v370.l2             │

00:01:44 #3917 [Verbose] > │         let v375 : int64 = v361.[int v372]                                   │

00:01:44 #3918 [Verbose] > │         let v376 : int32 = v374 + 1                                          │

00:01:44 #3919 [Verbose] > │         let v377 : uint64 = v372 + 1UL                                       │

00:01:44 #3920 [Verbose] > │         let v378 : UH5 = UH5_0(v374, v375, v373)                             │

00:01:44 #3921 [Verbose] > │         v370.l0 <- v377                                                      │

00:01:44 #3922 [Verbose] > │         v370.l1 <- v378                                                      │

00:01:44 #3923 [Verbose] > │         v370.l2 <- v376                                                      │

00:01:44 #3924 [Verbose] > │         ()                                                                   │

00:01:44 #3925 [Verbose] > │     let struct (v379 : UH5, v380 : int32) = v370.l1, v370.l2                 │

00:01:44 #3926 [Verbose] > │     let v381 : UH5 = UH5_1                                                   │

00:01:44 #3927 [Verbose] > │     let v382 : UH5 = method29(v379, v381)                                    │

00:01:44 #3928 [Verbose] > │     let v383 : (struct (int32 * int64) []) = method39(v382)                  │

00:01:44 #3929 [Verbose] > │     System.Console.WriteLine v35                                             │

00:01:44 #3930 [Verbose] > │     let v384 : string = "Average Ranking  "                                  │

00:01:44 #3931 [Verbose] > │     System.Console.WriteLine v384                                            │

00:01:44 #3932 [Verbose] > │     let v385 : (struct (int32 * int64) -> int64) = closure8()                │

00:01:44 #3933 [Verbose] > │     let v386 : (struct (int32 * int64) []) = v383 |> Array.sortBy v385       │

00:01:44 #3934 [Verbose] > │     let v387 : uint64 = System.Convert.ToUInt64 v386.Length                  │

00:01:44 #3935 [Verbose] > │     let v388 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #3936 [Verbose] > │     while method6(v387, v388) do                                             │

00:01:44 #3937 [Verbose] > │         let v390 : uint64 = v388.l0                                          │

00:01:44 #3938 [Verbose] > │         let struct (v391 : int32, v392 : int64) = v386.[int v390]            │

00:01:44 #3939 [Verbose] > │         let v393 : string = $"Test case %d{v391 + 1}. Average Time: %A{v392} │

00:01:44 #3940 [Verbose] > │ "                                                                            │

00:01:44 #3941 [Verbose] > │         System.Console.WriteLine v393                                        │

00:01:44 #3942 [Verbose] > │         let v394 : uint64 = v390 + 1UL                                       │

00:01:44 #3943 [Verbose] > │         v388.l0 <- v394                                                      │

00:01:44 #3944 [Verbose] > │         ()                                                                   │

00:01:44 #3945 [Verbose] > │     ()                                                                       │

00:01:44 #3946 [Verbose] > │ and method0 () : unit =                                                      │

00:01:44 #3947 [Verbose] > │     let v0 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                           │

00:01:44 #3948 [Verbose] > │     let v1 : (int32 []) = method1(v0)                                        │

00:01:44 #3949 [Verbose] > │     let v2 : int32 = v1.Length                                               │

00:01:44 #3950 [Verbose] > │     let v3 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                           │

00:01:44 #3951 [Verbose] > │     let v4 : (int32 []) = method1(v3)                                        │

00:01:44 #3952 [Verbose] > │     let v5 : int32 = v4.Length                                               │

00:01:44 #3953 [Verbose] > │     let v6 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                           │

00:01:44 #3954 [Verbose] > │     let v7 : (int32 []) = method1(v6)                                        │

00:01:44 #3955 [Verbose] > │     let v8 : int32 = v7.Length                                               │

00:01:44 #3956 [Verbose] > │     let v9 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                           │

00:01:44 #3957 [Verbose] > │     let v10 : (int32 []) = method1(v9)                                       │

00:01:44 #3958 [Verbose] > │     let v11 : int32 = v10.Length                                             │

00:01:44 #3959 [Verbose] > │     let v12 : (int32 []) = Array.zeroCreate<int32> (100)                     │

00:01:44 #3960 [Verbose] > │     let v13 : Mut0 = {l0 = 0} : Mut0                                         │

00:01:44 #3961 [Verbose] > │     while method2(v13) do                                                    │

00:01:44 #3962 [Verbose] > │         let v15 : int32 = v13.l0                                             │

00:01:44 #3963 [Verbose] > │         let v16 : int32 = 1 + v15                                            │

00:01:44 #3964 [Verbose] > │         v12.[int v15] <- v16                                                 │

00:01:44 #3965 [Verbose] > │         let v17 : int32 = v15 + 1                                            │

00:01:44 #3966 [Verbose] > │         v13.l0 <- v17                                                        │

00:01:44 #3967 [Verbose] > │         ()                                                                   │

00:01:44 #3968 [Verbose] > │     let v18 : int32 = v12.Length                                             │

00:01:44 #3969 [Verbose] > │     let v19 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                          │

00:01:44 #3970 [Verbose] > │     let v20 : (int32 []) = method1(v19)                                      │

00:01:44 #3971 [Verbose] > │     let v21 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                          │

00:01:44 #3972 [Verbose] > │     let v22 : (int32 []) = method1(v21)                                      │

00:01:44 #3973 [Verbose] > │     let v23 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                          │

00:01:44 #3974 [Verbose] > │     let v24 : (int32 []) = method1(v23)                                      │

00:01:44 #3975 [Verbose] > │     let v25 : (int32 []) = [|1; 3; 4; 6; 8; 9; 11|]                          │

00:01:44 #3976 [Verbose] > │     let v26 : (int32 []) = method1(v25)                                      │

00:01:44 #3977 [Verbose] > │     let v27 : (int32 []) = Array.zeroCreate<int32> (100)                     │

00:01:44 #3978 [Verbose] > │     let v28 : Mut0 = {l0 = 0} : Mut0                                         │

00:01:44 #3979 [Verbose] > │     while method2(v28) do                                                    │

00:01:44 #3980 [Verbose] > │         let v30 : int32 = v28.l0                                             │

00:01:44 #3981 [Verbose] > │         let v31 : int32 = 1 + v30                                            │

00:01:44 #3982 [Verbose] > │         v27.[int v30] <- v31                                                 │

00:01:44 #3983 [Verbose] > │         let v32 : int32 = v30 + 1                                            │

00:01:44 #3984 [Verbose] > │         v28.l0 <- v32                                                        │

00:01:44 #3985 [Verbose] > │         ()                                                                   │

00:01:44 #3986 [Verbose] > │     let v33 : (unit -> unit) = closure0()                                    │

00:01:44 #3987 [Verbose] > │     let v34 : string = nameof v33                                            │

00:01:44 #3988 [Verbose] > │     let v35 : string = ""                                                    │

00:01:44 #3989 [Verbose] > │     System.Console.WriteLine v35                                             │

00:01:44 #3990 [Verbose] > │     System.Console.WriteLine v35                                             │

00:01:44 #3991 [Verbose] > │     let v36 : string = $"Test: {v34}"                                        │

00:01:44 #3992 [Verbose] > │     System.Console.WriteLine v36                                             │

00:01:44 #3993 [Verbose] > │     let v37 : int32 = 6                                                      │

00:01:44 #3994 [Verbose] > │     let v38 : int32 = 3                                                      │

00:01:44 #3995 [Verbose] > │     let v39 : US0 = US0_1(v38)                                               │

00:01:44 #3996 [Verbose] > │     let v40 : int32 = 1                                                      │

00:01:44 #3997 [Verbose] > │     let v41 : int32 = 0                                                      │

00:01:44 #3998 [Verbose] > │     let v42 : US0 = US0_1(v41)                                               │

00:01:44 #3999 [Verbose] > │     let v43 : int32 = 11                                                     │

00:01:44 #4000 [Verbose] > │     let v44 : int32 = 6                                                      │

00:01:44 #4001 [Verbose] > │     let v45 : US0 = US0_1(v44)                                               │

00:01:44 #4002 [Verbose] > │     let v46 : int32 = 12                                                     │

00:01:44 #4003 [Verbose] > │     let v47 : US0 = US0_0                                                    │

00:01:44 #4004 [Verbose] > │     let v48 : int32 = 60                                                     │

00:01:44 #4005 [Verbose] > │     let v49 : int32 = 59                                                     │

00:01:44 #4006 [Verbose] > │     let v50 : US0 = US0_1(v49)                                               │

00:01:44 #4007 [Verbose] > │     let v51 : int32 = 6                                                      │

00:01:44 #4008 [Verbose] > │     let v52 : int32 = 7                                                      │

00:01:44 #4009 [Verbose] > │     let v53 : int32 = 3                                                      │

00:01:44 #4010 [Verbose] > │     let v54 : US0 = US0_1(v53)                                               │

00:01:44 #4011 [Verbose] > │     let v55 : int32 = 1                                                      │

00:01:44 #4012 [Verbose] > │     let v56 : int32 = 7                                                      │

00:01:44 #4013 [Verbose] > │     let v57 : int32 = 0                                                      │

00:01:44 #4014 [Verbose] > │     let v58 : US0 = US0_1(v57)                                               │

00:01:44 #4015 [Verbose] > │     let v59 : int32 = 11                                                     │

00:01:44 #4016 [Verbose] > │     let v60 : int32 = 7                                                      │

00:01:44 #4017 [Verbose] > │     let v61 : int32 = 6                                                      │

00:01:44 #4018 [Verbose] > │     let v62 : US0 = US0_1(v61)                                               │

00:01:44 #4019 [Verbose] > │     let v63 : int32 = 12                                                     │

00:01:44 #4020 [Verbose] > │     let v64 : int32 = 7                                                      │

00:01:44 #4021 [Verbose] > │     let v65 : US0 = US0_0                                                    │

00:01:44 #4022 [Verbose] > │     let v66 : int32 = 60                                                     │

00:01:44 #4023 [Verbose] > │     let v67 : int32 = 100                                                    │

00:01:44 #4024 [Verbose] > │     let v68 : int32 = 59                                                     │

00:01:44 #4025 [Verbose] > │     let v69 : US0 = US0_1(v68)                                               │

00:01:44 #4026 [Verbose] > │     let v70 : UH0 = UH0_1                                                    │

00:01:44 #4027 [Verbose] > │     let v71 : UH0 = UH0_0(v27, v66, v67, v69, v70)                           │

00:01:44 #4028 [Verbose] > │     let v72 : UH0 = UH0_0(v26, v63, v64, v65, v71)                           │

00:01:44 #4029 [Verbose] > │     let v73 : UH0 = UH0_0(v24, v59, v60, v62, v72)                           │

00:01:44 #4030 [Verbose] > │     let v74 : UH0 = UH0_0(v22, v55, v56, v58, v73)                           │

00:01:44 #4031 [Verbose] > │     let v75 : UH0 = UH0_0(v20, v51, v52, v54, v74)                           │

00:01:44 #4032 [Verbose] > │     let v76 : UH0 = UH0_0(v12, v48, v18, v50, v75)                           │

00:01:44 #4033 [Verbose] > │     let v77 : UH0 = UH0_0(v10, v46, v11, v47, v76)                           │

00:01:44 #4034 [Verbose] > │     let v78 : UH0 = UH0_0(v7, v43, v8, v45, v77)                             │

00:01:44 #4035 [Verbose] > │     let v79 : UH0 = UH0_0(v4, v40, v5, v42, v78)                             │

00:01:44 #4036 [Verbose] > │     let v80 : UH0 = UH0_0(v1, v37, v2, v39, v79)                             │

00:01:44 #4037 [Verbose] > │     let v81 : (struct ((int32 []) * int32 * int32 * US0) []) = method3(v80)  │

00:01:44 #4038 [Verbose] > │     let v82 : uint64 = System.Convert.ToUInt64 v81.Length                    │

00:01:44 #4039 [Verbose] > │     let v83 : (struct (string * string * string * (int64 [])) []) =          │

00:01:44 #4040 [Verbose] > │ Array.zeroCreate<struct (string * string * string * (int64 []))>             │

00:01:44 #4041 [Verbose] > │ (System.Convert.ToInt32(v82))                                                │

00:01:44 #4042 [Verbose] > │     let v84 : Mut1 = {l0 = 0UL} : Mut1                                       │

00:01:44 #4043 [Verbose] > │     while method6(v82, v84) do                                               │

00:01:44 #4044 [Verbose] > │         let v86 : uint64 = v84.l0                                            │

00:01:44 #4045 [Verbose] > │         let struct (v87 : (int32 []), v88 : int32, v89 : int32, v90 : US0) = │

00:01:44 #4046 [Verbose] > │ v81.[int v86]                                                                │

00:01:44 #4047 [Verbose] > │         let v91 : string = $"%A{struct (v87, v88, v89)}"                     │

00:01:44 #4048 [Verbose] > │         System.Console.WriteLine v35                                         │

00:01:44 #4049 [Verbose] > │         let v92 : string = $"Solution: {v91}  "                              │

00:01:44 #4050 [Verbose] > │         System.Console.WriteLine v92                                         │

00:01:44 #4051 [Verbose] > │         let v93 : int32 = 0                                                  │

00:01:44 #4052 [Verbose] > │         let v94 : string = "semi_open_1"                                     │

00:01:44 #4053 [Verbose] > │         let v95 : (struct ((int32 []) * int32 * int32) -> US0) = closure1()  │

00:01:44 #4054 [Verbose] > │         let v96 : int32 = 1                                                  │

00:01:44 #4055 [Verbose] > │         let v97 : string = "closed_1"                                        │

00:01:44 #4056 [Verbose] > │         let v98 : (struct ((int32 []) * int32 * int32) -> US0) = closure2()  │

00:01:44 #4057 [Verbose] > │         let v99 : int32 = 2                                                  │

00:01:44 #4058 [Verbose] > │         let v100 : string = "semi_open_2"                                    │

00:01:44 #4059 [Verbose] > │         let v101 : (struct ((int32 []) * int32 * int32) -> US0) = closure3() │

00:01:44 #4060 [Verbose] > │         let v102 : int32 = 3                                                 │

00:01:44 #4061 [Verbose] > │         let v103 : string = "closed_2"                                       │

00:01:44 #4062 [Verbose] > │         let v104 : (struct ((int32 []) * int32 * int32) -> US0) = closure4() │

00:01:44 #4063 [Verbose] > │         let v105 : UH1 = UH1_1                                               │

00:01:44 #4064 [Verbose] > │         let v106 : UH1 = UH1_0(v102, v103, v104, v105)                       │

00:01:44 #4065 [Verbose] > │         let v107 : UH1 = UH1_0(v99, v100, v101, v106)                        │

00:01:44 #4066 [Verbose] > │         let v108 : UH1 = UH1_0(v96, v97, v98, v107)                          │

00:01:44 #4067 [Verbose] > │         let v109 : UH1 = UH1_0(v93, v94, v95, v108)                          │

00:01:44 #4068 [Verbose] > │         let v110 : (struct (int32 * string * (struct ((int32 []) * int32 *   │

00:01:44 #4069 [Verbose] > │ int32) -> US0)) []) = method11(v109)                                         │

00:01:44 #4070 [Verbose] > │         let v111 : uint64 = System.Convert.ToUInt64 v110.Length              │

00:01:44 #4071 [Verbose] > │         let v112 : (struct (US0 * int64) []) = Array.zeroCreate<struct (US0  │

00:01:44 #4072 [Verbose] > │ * int64)> (System.Convert.ToInt32(v111))                                     │

00:01:44 #4073 [Verbose] > │         let v113 : Mut1 = {l0 = 0UL} : Mut1                                  │

00:01:44 #4074 [Verbose] > │         while method6(v111, v113) do                                         │

00:01:44 #4075 [Verbose] > │             let v115 : uint64 = v113.l0                                      │

00:01:44 #4076 [Verbose] > │             let struct (v116 : int32, v117 : string, v118 : (struct ((int32  │

00:01:44 #4077 [Verbose] > │ []) * int32 * int32) -> US0)) = v110.[int v115]                              │

00:01:44 #4078 [Verbose] > │             let mutable result = None                                        │

00:01:44 #4079 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:01:44 #4080 [Verbose] > │             #if !WASM                                                        │

00:01:44 #4081 [Verbose] > │             ()                                                               │

00:01:44 #4082 [Verbose] > │             #else                                                            │

00:01:44 #4083 [Verbose] > │             ()                                                               │

00:01:44 #4084 [Verbose] > │             #endif                                                           │

00:01:44 #4085 [Verbose] > │             #else                                                            │

00:01:44 #4086 [Verbose] > │             System.GC.Collect ()                                             │

00:01:44 #4087 [Verbose] > │             ()                                                               │

00:01:44 #4088 [Verbose] > │             #endif                                                           │

00:01:44 #4089 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:01:44 #4090 [Verbose] > │             result |> Option.get                                             │

00:01:44 #4091 [Verbose] > │             let v119 : (unit -> System.Diagnostics.Stopwatch) =              │

00:01:44 #4092 [Verbose] > │ System.Diagnostics.Stopwatch                                                 │

00:01:44 #4093 [Verbose] > │             let v120 : System.Diagnostics.Stopwatch = v119 ()                │

00:01:44 #4094 [Verbose] > │             v120.Start ()                                                    │

00:01:44 #4095 [Verbose] > │             let v121 : int64 = v120.ElapsedMilliseconds                      │

00:01:44 #4096 [Verbose] > │             let v122 : (int32 []) = Array.zeroCreate<int32> (8000001)        │

00:01:44 #4097 [Verbose] > │             let v123 : Mut0 = {l0 = 0} : Mut0                                │

00:01:44 #4098 [Verbose] > │             while method14(v123) do                                          │

00:01:44 #4099 [Verbose] > │                 let v125 : int32 = v123.l0                                   │

00:01:44 #4100 [Verbose] > │                 v122.[int v125] <- v125                                      │

00:01:44 #4101 [Verbose] > │                 let v126 : int32 = v125 + 1                                  │

00:01:44 #4102 [Verbose] > │                 v123.l0 <- v126                                              │

00:01:44 #4103 [Verbose] > │                 ()                                                           │

00:01:44 #4104 [Verbose] > │             let v127 : (int32 -> US0) = closure5(v87, v88, v89, v118)        │

00:01:44 #4105 [Verbose] > │             let v128 : (US0 []) = v122 |> Array.Parallel.map v127            │

00:01:44 #4106 [Verbose] > │             let v129 : int32 = v128.Length                                   │

00:01:44 #4107 [Verbose] > │             let v130 : int32 = v129 - 1                                      │

00:01:44 #4108 [Verbose] > │             let v131 : US0 = v128.[int v130]                                 │

00:01:44 #4109 [Verbose] > │             let v132 : int64 = v120.ElapsedMilliseconds                      │

00:01:44 #4110 [Verbose] > │             let v133 : int64 = v132 - v121                                   │

00:01:44 #4111 [Verbose] > │             let v134 : string = $"Test case {v116 + 1}. {v117}. Time: {v133} │

00:01:44 #4112 [Verbose] > │ "                                                                            │

00:01:44 #4113 [Verbose] > │             System.Console.WriteLine v134                                    │

00:01:44 #4114 [Verbose] > │             v112.[int v115] <- struct (v131, v133)                           │

00:01:44 #4115 [Verbose] > │             let v135 : uint64 = v115 + 1UL                                   │

00:01:44 #4116 [Verbose] > │             v113.l0 <- v135                                                  │

00:01:44 #4117 [Verbose] > │             ()                                                               │

00:01:44 #4118 [Verbose] > │         let v136 : uint64 = System.Convert.ToUInt64 v112.Length              │

00:01:44 #4119 [Verbose] > │         let v137 : (US0 []) = Array.zeroCreate<US0>                          │

00:01:44 #4120 [Verbose] > │ (System.Convert.ToInt32(v136))                                               │

00:01:44 #4121 [Verbose] > │         let v138 : Mut1 = {l0 = 0UL} : Mut1                                  │

00:01:44 #4122 [Verbose] > │         while method6(v136, v138) do                                         │

00:01:44 #4123 [Verbose] > │             let v140 : uint64 = v138.l0                                      │

00:01:44 #4124 [Verbose] > │             let struct (v141 : US0, v142 : int64) = v112.[int v140]          │

00:01:44 #4125 [Verbose] > │             v137.[int v140] <- v141                                          │

00:01:44 #4126 [Verbose] > │             let v143 : uint64 = v140 + 1UL                                   │

00:01:44 #4127 [Verbose] > │             v138.l0 <- v143                                                  │

00:01:44 #4128 [Verbose] > │             ()                                                               │

00:01:44 #4129 [Verbose] > │         let v144 : uint64 = System.Convert.ToUInt64 v137.Length              │

00:01:44 #4130 [Verbose] > │         let v145 : bool = v144 <= 1UL                                        │

00:01:44 #4131 [Verbose] > │         if v145 then                                                         │

00:01:44 #4132 [Verbose] > │             ()                                                               │

00:01:44 #4133 [Verbose] > │         else                                                                 │

00:01:44 #4134 [Verbose] > │             let v146 : US0 = v137.[int 0UL]                                  │

00:01:44 #4135 [Verbose] > │             let v147 : uint64 = 0UL                                          │

00:01:44 #4136 [Verbose] > │             let v148 : bool = method15(v146, v137, v147)                     │

00:01:44 #4137 [Verbose] > │             if v148 then                                                     │

00:01:44 #4138 [Verbose] > │                 ()                                                           │

00:01:44 #4139 [Verbose] > │             else                                                             │

00:01:44 #4140 [Verbose] > │                 let v149 : string = $"Challenge error: {v137}"               │

00:01:44 #4141 [Verbose] > │                 failwith<unit> v149                                          │

00:01:44 #4142 [Verbose] > │         let v150 : string = $"%A{v90}"                                       │

00:01:44 #4143 [Verbose] > │         let v151 : (US0 []) = Array.zeroCreate<US0>                          │

00:01:44 #4144 [Verbose] > │ (System.Convert.ToInt32(v136))                                               │

00:01:44 #4145 [Verbose] > │         let v152 : Mut1 = {l0 = 0UL} : Mut1                                  │

00:01:44 #4146 [Verbose] > │         while method6(v136, v152) do                                         │

00:01:44 #4147 [Verbose] > │             let v154 : uint64 = v152.l0                                      │

00:01:44 #4148 [Verbose] > │             let struct (v155 : US0, v156 : int64) = v112.[int v154]          │

00:01:44 #4149 [Verbose] > │             v151.[int v154] <- v155                                          │

00:01:44 #4150 [Verbose] > │             let v157 : uint64 = v154 + 1UL                                   │

00:01:44 #4151 [Verbose] > │             v152.l0 <- v157                                                  │

00:01:44 #4152 [Verbose] > │             ()                                                               │

00:01:44 #4153 [Verbose] > │         let v158 : US0 = v151.[int 0UL]                                      │

00:01:44 #4154 [Verbose] > │         let v159 : string = $"%A{v158}"                                      │

00:01:44 #4155 [Verbose] > │         let v160 : (int64 []) = Array.zeroCreate<int64>                      │

00:01:44 #4156 [Verbose] > │ (System.Convert.ToInt32(v136))                                               │

00:01:44 #4157 [Verbose] > │         let v161 : Mut1 = {l0 = 0UL} : Mut1                                  │

00:01:44 #4158 [Verbose] > │         while method6(v136, v161) do                                         │

00:01:44 #4159 [Verbose] > │             let v163 : uint64 = v161.l0                                      │

00:01:44 #4160 [Verbose] > │             let struct (v164 : US0, v165 : int64) = v112.[int v163]          │

00:01:44 #4161 [Verbose] > │             v160.[int v163] <- v165                                          │

00:01:44 #4162 [Verbose] > │             let v166 : uint64 = v163 + 1UL                                   │

00:01:44 #4163 [Verbose] > │             v161.l0 <- v166                                                  │

00:01:44 #4164 [Verbose] > │             ()                                                               │

00:01:44 #4165 [Verbose] > │         v83.[int v86] <- struct (v150, v91, v159, v160)                      │

00:01:44 #4166 [Verbose] > │         let v167 : uint64 = v86 + 1UL                                        │

00:01:44 #4167 [Verbose] > │         v84.l0 <- v167                                                       │

00:01:44 #4168 [Verbose] > │         ()                                                                   │

00:01:44 #4169 [Verbose] > │     let v168 : uint64 = System.Convert.ToUInt64 v83.Length                   │

00:01:44 #4170 [Verbose] > │     let v169 : (struct (UH2 * US1) []) = Array.zeroCreate<struct (UH2 *      │

00:01:44 #4171 [Verbose] > │ US1)> (System.Convert.ToInt32(v168))                                         │

00:01:44 #4172 [Verbose] > │     let v170 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #4173 [Verbose] > │     while method6(v168, v170) do                                             │

00:01:44 #4174 [Verbose] > │         let v172 : uint64 = v170.l0                                          │

00:01:44 #4175 [Verbose] > │         let struct (v173 : string, v174 : string, v175 : string, v176 :      │

00:01:44 #4176 [Verbose] > │ (int64 [])) = v83.[int v172]                                                 │

00:01:44 #4177 [Verbose] > │         let v177 : uint64 = System.Convert.ToUInt64 v176.Length              │

00:01:44 #4178 [Verbose] > │         let v178 : UH3 = UH3_1                                               │

00:01:44 #4179 [Verbose] > │         let v179 : Mut2 = {l0 = 0UL; l1 = v178; l2 = 0L} : Mut2              │

00:01:44 #4180 [Verbose] > │         while method16(v177, v179) do                                        │

00:01:44 #4181 [Verbose] > │             let v181 : uint64 = v179.l0                                      │

00:01:44 #4182 [Verbose] > │             let struct (v182 : UH3, v183 : int64) = v179.l1, v179.l2         │

00:01:44 #4183 [Verbose] > │             let v184 : int64 = v176.[int v181]                               │

00:01:44 #4184 [Verbose] > │             let v185 : int64 = v183 + 1L                                     │

00:01:44 #4185 [Verbose] > │             let v186 : uint64 = v181 + 1UL                                   │

00:01:44 #4186 [Verbose] > │             let v187 : UH3 = UH3_0(v183, v184, v182)                         │

00:01:44 #4187 [Verbose] > │             v179.l0 <- v186                                                  │

00:01:44 #4188 [Verbose] > │             v179.l1 <- v187                                                  │

00:01:44 #4189 [Verbose] > │             v179.l2 <- v185                                                  │

00:01:44 #4190 [Verbose] > │             ()                                                               │

00:01:44 #4191 [Verbose] > │         let struct (v188 : UH3, v189 : int64) = v179.l1, v179.l2             │

00:01:44 #4192 [Verbose] > │         let v190 : UH3 = UH3_1                                               │

00:01:44 #4193 [Verbose] > │         let v191 : UH3 = method17(v188, v190)                                │

00:01:44 #4194 [Verbose] > │         let v192 : (struct (int64 * int64) []) = method18(v191)              │

00:01:44 #4195 [Verbose] > │         let v193 : int32 = v192.Length                                       │

00:01:44 #4196 [Verbose] > │         let v194 : (struct (int64 * int64) []) = Array.zeroCreate<struct     │

00:01:44 #4197 [Verbose] > │ (int64 * int64)> (v193)                                                      │

00:01:44 #4198 [Verbose] > │         let v195 : Mut0 = {l0 = 0} : Mut0                                    │

00:01:44 #4199 [Verbose] > │         while method21(v193, v195) do                                        │

00:01:44 #4200 [Verbose] > │             let v197 : int32 = v195.l0                                       │

00:01:44 #4201 [Verbose] > │             let struct (v198 : int64, v199 : int64) = v192.[int v197]        │

00:01:44 #4202 [Verbose] > │             let v200 : int64 = v198 + 1L                                     │

00:01:44 #4203 [Verbose] > │             v194.[int v197] <- struct (v200, v199)                           │

00:01:44 #4204 [Verbose] > │             let v201 : int32 = v197 + 1                                      │

00:01:44 #4205 [Verbose] > │             v195.l0 <- v201                                                  │

00:01:44 #4206 [Verbose] > │             ()                                                               │

00:01:44 #4207 [Verbose] > │         let v202 : (struct (int64 * int64) -> int64) = closure6()            │

00:01:44 #4208 [Verbose] > │         let v203 : (struct (int64 * int64) []) = v194 |> Array.sortBy v202   │

00:01:44 #4209 [Verbose] > │         let struct (v204 : int64, v205 : int64) = v203.[int 0]               │

00:01:44 #4210 [Verbose] > │         let v206 : string = $"%A{struct (v204, v205)}"                       │

00:01:44 #4211 [Verbose] > │         let v207 : bool = v173 = v175                                        │

00:01:44 #4212 [Verbose] > │         let v212 : US1 =                                                     │

00:01:44 #4213 [Verbose] > │             if v207 then                                                     │

00:01:44 #4214 [Verbose] > │                 let v208 : System.ConsoleColor =                             │

00:01:44 #4215 [Verbose] > │ System.ConsoleColor.DarkGreen                                                │

00:01:44 #4216 [Verbose] > │                 US1_1(v208)                                                  │

00:01:44 #4217 [Verbose] > │             else                                                             │

00:01:44 #4218 [Verbose] > │                 let v210 : System.ConsoleColor = System.ConsoleColor.DarkRed │

00:01:44 #4219 [Verbose] > │                 US1_1(v210)                                                  │

00:01:44 #4220 [Verbose] > │         let v213 : UH2 = UH2_1                                               │

00:01:44 #4221 [Verbose] > │         let v214 : UH2 = UH2_0(v206, v213)                                   │

00:01:44 #4222 [Verbose] > │         let v215 : UH2 = UH2_0(v175, v214)                                   │

00:01:44 #4223 [Verbose] > │         let v216 : UH2 = UH2_0(v173, v215)                                   │

00:01:44 #4224 [Verbose] > │         let v217 : UH2 = UH2_0(v174, v216)                                   │

00:01:44 #4225 [Verbose] > │         v169.[int v172] <- struct (v217, v212)                               │

00:01:44 #4226 [Verbose] > │         let v218 : uint64 = v172 + 1UL                                       │

00:01:44 #4227 [Verbose] > │         v170.l0 <- v218                                                      │

00:01:44 #4228 [Verbose] > │         ()                                                                   │

00:01:44 #4229 [Verbose] > │     let v219 : string = "Input"                                              │

00:01:44 #4230 [Verbose] > │     let v220 : string = "Expected"                                           │

00:01:44 #4231 [Verbose] > │     let v221 : string = "Result"                                             │

00:01:44 #4232 [Verbose] > │     let v222 : string = "Best"                                               │

00:01:44 #4233 [Verbose] > │     let v223 : UH2 = UH2_1                                                   │

00:01:44 #4234 [Verbose] > │     let v224 : UH2 = UH2_0(v222, v223)                                       │

00:01:44 #4235 [Verbose] > │     let v225 : UH2 = UH2_0(v221, v224)                                       │

00:01:44 #4236 [Verbose] > │     let v226 : UH2 = UH2_0(v220, v225)                                       │

00:01:44 #4237 [Verbose] > │     let v227 : UH2 = UH2_0(v219, v226)                                       │

00:01:44 #4238 [Verbose] > │     let v228 : US1 = US1_0                                                   │

00:01:44 #4239 [Verbose] > │     let v229 : string = "---"                                                │

00:01:44 #4240 [Verbose] > │     let v230 : UH2 = UH2_1                                                   │

00:01:44 #4241 [Verbose] > │     let v231 : UH2 = UH2_0(v229, v230)                                       │

00:01:44 #4242 [Verbose] > │     let v232 : UH2 = UH2_0(v229, v231)                                       │

00:01:44 #4243 [Verbose] > │     let v233 : UH2 = UH2_0(v229, v232)                                       │

00:01:44 #4244 [Verbose] > │     let v234 : UH2 = UH2_0(v229, v233)                                       │

00:01:44 #4245 [Verbose] > │     let v235 : US1 = US1_0                                                   │

00:01:44 #4246 [Verbose] > │     let v236 : UH4 = UH4_1                                                   │

00:01:44 #4247 [Verbose] > │     let v237 : UH4 = UH4_0(v234, v235, v236)                                 │

00:01:44 #4248 [Verbose] > │     let v238 : UH4 = UH4_0(v227, v228, v237)                                 │

00:01:44 #4249 [Verbose] > │     let v239 : (struct (UH2 * US1) []) = method22(v238)                      │

00:01:44 #4250 [Verbose] > │     let v240 : uint64 = System.Convert.ToUInt64 v239.Length                  │

00:01:44 #4251 [Verbose] > │     let v241 : uint64 = System.Convert.ToUInt64 v169.Length                  │

00:01:44 #4252 [Verbose] > │     let v242 : uint64 = v240 + v241                                          │

00:01:44 #4253 [Verbose] > │     let v243 : (struct (UH2 * US1) []) = Array.zeroCreate<struct (UH2 *      │

00:01:44 #4254 [Verbose] > │ US1)> (System.Convert.ToInt32(v242))                                         │

00:01:44 #4255 [Verbose] > │     let v244 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #4256 [Verbose] > │     while method6(v242, v244) do                                             │

00:01:44 #4257 [Verbose] > │         let v246 : uint64 = v244.l0                                          │

00:01:44 #4258 [Verbose] > │         let v247 : bool = v246 < v240                                        │

00:01:44 #4259 [Verbose] > │         let struct (v253 : UH2, v254 : US1) =                                │

00:01:44 #4260 [Verbose] > │             if v247 then                                                     │

00:01:44 #4261 [Verbose] > │                 let struct (v248 : UH2, v249 : US1) = v239.[int v246]        │

00:01:44 #4262 [Verbose] > │                 struct (v248, v249)                                          │

00:01:44 #4263 [Verbose] > │             else                                                             │

00:01:44 #4264 [Verbose] > │                 let v250 : uint64 = v246 - v240                              │

00:01:44 #4265 [Verbose] > │                 let struct (v251 : UH2, v252 : US1) = v169.[int v250]        │

00:01:44 #4266 [Verbose] > │                 struct (v251, v252)                                          │

00:01:44 #4267 [Verbose] > │         v243.[int v246] <- struct (v253, v254)                               │

00:01:44 #4268 [Verbose] > │         let v255 : uint64 = v246 + 1UL                                       │

00:01:44 #4269 [Verbose] > │         v244.l0 <- v255                                                      │

00:01:44 #4270 [Verbose] > │         ()                                                                   │

00:01:44 #4271 [Verbose] > │     let v256 : uint64 = System.Convert.ToUInt64 v243.Length                  │

00:01:44 #4272 [Verbose] > │     let v257 : ((string []) []) = Array.zeroCreate<(string [])>              │

00:01:44 #4273 [Verbose] > │ (System.Convert.ToInt32(v256))                                               │

00:01:44 #4274 [Verbose] > │     let v258 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #4275 [Verbose] > │     while method6(v256, v258) do                                             │

00:01:44 #4276 [Verbose] > │         let v260 : uint64 = v258.l0                                          │

00:01:44 #4277 [Verbose] > │         let struct (v261 : UH2, v262 : US1) = v243.[int v260]                │

00:01:44 #4278 [Verbose] > │         let v263 : (string []) = method25(v261)                              │

00:01:44 #4279 [Verbose] > │         v257.[int v260] <- v263                                              │

00:01:44 #4280 [Verbose] > │         let v264 : uint64 = v260 + 1UL                                       │

00:01:44 #4281 [Verbose] > │         v258.l0 <- v264                                                      │

00:01:44 #4282 [Verbose] > │         ()                                                                   │

00:01:44 #4283 [Verbose] > │     let v265 : ((string []) []) = v257 |> Array.transpose                    │

00:01:44 #4284 [Verbose] > │     let v266 : uint64 = System.Convert.ToUInt64 v265.Length                  │

00:01:44 #4285 [Verbose] > │     let v267 : (int64 []) = Array.zeroCreate<int64>                          │

00:01:44 #4286 [Verbose] > │ (System.Convert.ToInt32(v266))                                               │

00:01:44 #4287 [Verbose] > │     let v268 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #4288 [Verbose] > │     while method6(v266, v268) do                                             │

00:01:44 #4289 [Verbose] > │         let v270 : uint64 = v268.l0                                          │

00:01:44 #4290 [Verbose] > │         let v271 : (string []) = v265.[int v270]                             │

00:01:44 #4291 [Verbose] > │         let v272 : uint64 = System.Convert.ToUInt64 v271.Length              │

00:01:44 #4292 [Verbose] > │         let v273 : (int64 []) = Array.zeroCreate<int64>                      │

00:01:44 #4293 [Verbose] > │ (System.Convert.ToInt32(v272))                                               │

00:01:44 #4294 [Verbose] > │         let v274 : Mut1 = {l0 = 0UL} : Mut1                                  │

00:01:44 #4295 [Verbose] > │         while method6(v272, v274) do                                         │

00:01:44 #4296 [Verbose] > │             let v276 : uint64 = v274.l0                                      │

00:01:44 #4297 [Verbose] > │             let v277 : string = v271.[int v276]                              │

00:01:44 #4298 [Verbose] > │             let v278 : int64 = System.Convert.ToInt64 v277.Length            │

00:01:44 #4299 [Verbose] > │             v273.[int v276] <- v278                                          │

00:01:44 #4300 [Verbose] > │             let v279 : uint64 = v276 + 1UL                                   │

00:01:44 #4301 [Verbose] > │             v274.l0 <- v279                                                  │

00:01:44 #4302 [Verbose] > │             ()                                                               │

00:01:44 #4303 [Verbose] > │         let v280 : (int64 []) = v273 |> Array.sortDescending                 │

00:01:44 #4304 [Verbose] > │         let v281 : int64 option = v280 |> Array.tryItem 0                    │

00:01:44 #4305 [Verbose] > │         let v282 : (int64 -> US2) = closure7()                               │

00:01:44 #4306 [Verbose] > │         let v283 : US2 = US2_0                                               │

00:01:44 #4307 [Verbose] > │         let v284 : US2 = v281 |> Option.map v282 |> Option.defaultValue v283 │

00:01:44 #4308 [Verbose] > │         let v287 : int64 =                                                   │

00:01:44 #4309 [Verbose] > │             match v284 with                                                  │

00:01:44 #4310 [Verbose] > │             | US2_0 -> (* None *)                                            │

00:01:44 #4311 [Verbose] > │                 0L                                                           │

00:01:44 #4312 [Verbose] > │             | US2_1(v285) -> (* Some *)                                      │

00:01:44 #4313 [Verbose] > │                 v285                                                         │

00:01:44 #4314 [Verbose] > │         v267.[int v270] <- v287                                              │

00:01:44 #4315 [Verbose] > │         let v288 : uint64 = v270 + 1UL                                       │

00:01:44 #4316 [Verbose] > │         v268.l0 <- v288                                                      │

00:01:44 #4317 [Verbose] > │         ()                                                                   │

00:01:44 #4318 [Verbose] > │     let v289 : uint64 = System.Convert.ToUInt64 v267.Length                  │

00:01:44 #4319 [Verbose] > │     let v290 : UH5 = UH5_1                                                   │

00:01:44 #4320 [Verbose] > │     let v291 : Mut3 = {l0 = 0UL; l1 = v290; l2 = 0} : Mut3                   │

00:01:44 #4321 [Verbose] > │     while method28(v289, v291) do                                            │

00:01:44 #4322 [Verbose] > │         let v293 : uint64 = v291.l0                                          │

00:01:44 #4323 [Verbose] > │         let struct (v294 : UH5, v295 : int32) = v291.l1, v291.l2             │

00:01:44 #4324 [Verbose] > │         let v296 : int64 = v267.[int v293]                                   │

00:01:44 #4325 [Verbose] > │         let v297 : int32 = v295 + 1                                          │

00:01:44 #4326 [Verbose] > │         let v298 : uint64 = v293 + 1UL                                       │

00:01:44 #4327 [Verbose] > │         let v299 : UH5 = UH5_0(v295, v296, v294)                             │

00:01:44 #4328 [Verbose] > │         v291.l0 <- v298                                                      │

00:01:44 #4329 [Verbose] > │         v291.l1 <- v299                                                      │

00:01:44 #4330 [Verbose] > │         v291.l2 <- v297                                                      │

00:01:44 #4331 [Verbose] > │         ()                                                                   │

00:01:44 #4332 [Verbose] > │     let struct (v300 : UH5, v301 : int32) = v291.l1, v291.l2                 │

00:01:44 #4333 [Verbose] > │     let v302 : UH5 = UH5_1                                                   │

00:01:44 #4334 [Verbose] > │     let v303 : UH5 = method29(v300, v302)                                    │

00:01:44 #4335 [Verbose] > │     let v304 : (struct (int32 * int64) []) = method30(v303)                  │

00:01:44 #4336 [Verbose] > │     let v305 : Map<int32, int64> = v304 |> Array.map (fun (struct (a, b)) -> │

00:01:44 #4337 [Verbose] > │ a, b) |> Map.ofArray                                                         │

00:01:44 #4338 [Verbose] > │     let v306 : (struct ((string []) * US1) []) = Array.zeroCreate<struct     │

00:01:44 #4339 [Verbose] > │ ((string []) * US1)> (System.Convert.ToInt32(v256))                          │

00:01:44 #4340 [Verbose] > │     let v307 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #4341 [Verbose] > │     while method6(v256, v307) do                                             │

00:01:44 #4342 [Verbose] > │         let v309 : uint64 = v307.l0                                          │

00:01:44 #4343 [Verbose] > │         let struct (v310 : UH2, v311 : US1) = v243.[int v309]                │

00:01:44 #4344 [Verbose] > │         let v312 : UH6 = UH6_1                                               │

00:01:44 #4345 [Verbose] > │         let v313 : int32 = 0                                                 │

00:01:44 #4346 [Verbose] > │         let struct (v314 : UH6, v315 : int32) = method33(v310, v312, v313)   │

00:01:44 #4347 [Verbose] > │         let v316 : UH6 = UH6_1                                               │

00:01:44 #4348 [Verbose] > │         let v317 : UH6 = method34(v314, v316)                                │

00:01:44 #4349 [Verbose] > │         let v318 : UH2 = UH2_1                                               │

00:01:44 #4350 [Verbose] > │         let v319 : UH2 = method35(v305, v317, v318)                          │

00:01:44 #4351 [Verbose] > │         let v320 : (string []) = method36(v319)                              │

00:01:44 #4352 [Verbose] > │         v306.[int v309] <- struct (v320, v311)                               │

00:01:44 #4353 [Verbose] > │         let v321 : uint64 = v309 + 1UL                                       │

00:01:44 #4354 [Verbose] > │         v307.l0 <- v321                                                      │

00:01:44 #4355 [Verbose] > │         ()                                                                   │

00:01:44 #4356 [Verbose] > │     System.Console.WriteLine v35                                             │

00:01:44 #4357 [Verbose] > │     let v322 : uint64 = System.Convert.ToUInt64 v306.Length                  │

00:01:44 #4358 [Verbose] > │     let v323 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #4359 [Verbose] > │     while method6(v322, v323) do                                             │

00:01:44 #4360 [Verbose] > │         let v325 : uint64 = v323.l0                                          │

00:01:44 #4361 [Verbose] > │         let struct (v326 : (string []), v327 : US1) = v306.[int v325]        │

00:01:44 #4362 [Verbose] > │         match v327 with                                                      │

00:01:44 #4363 [Verbose] > │         | US1_0 -> (* None *)                                                │

00:01:44 #4364 [Verbose] > │             let mutable result = None                                        │

00:01:44 #4365 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:01:44 #4366 [Verbose] > │             #if !WASM                                                        │

00:01:44 #4367 [Verbose] > │             ()                                                               │

00:01:44 #4368 [Verbose] > │             #else                                                            │

00:01:44 #4369 [Verbose] > │             ()                                                               │

00:01:44 #4370 [Verbose] > │             #endif                                                           │

00:01:44 #4371 [Verbose] > │             #else                                                            │

00:01:44 #4372 [Verbose] > │             System.Console.ResetColor ()                                     │

00:01:44 #4373 [Verbose] > │             ()                                                               │

00:01:44 #4374 [Verbose] > │             #endif                                                           │

00:01:44 #4375 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:01:44 #4376 [Verbose] > │             result |> Option.get                                             │

00:01:44 #4377 [Verbose] > │             ()                                                               │

00:01:44 #4378 [Verbose] > │         | US1_1(v328) -> (* Some *)                                          │

00:01:44 #4379 [Verbose] > │             let mutable result = None                                        │

00:01:44 #4380 [Verbose] > │             #if FABLE_COMPILER_RUST                                          │

00:01:44 #4381 [Verbose] > │             #if !WASM                                                        │

00:01:44 #4382 [Verbose] > │             ()                                                               │

00:01:44 #4383 [Verbose] > │             #else                                                            │

00:01:44 #4384 [Verbose] > │             ()                                                               │

00:01:44 #4385 [Verbose] > │             #endif                                                           │

00:01:44 #4386 [Verbose] > │             #else                                                            │

00:01:44 #4387 [Verbose] > │             System.Console.ForegroundColor <- v328                           │

00:01:44 #4388 [Verbose] > │             ()                                                               │

00:01:44 #4389 [Verbose] > │             #endif                                                           │

00:01:44 #4390 [Verbose] > │             |> fun x -> result <- Some x                                     │

00:01:44 #4391 [Verbose] > │             result |> Option.get                                             │

00:01:44 #4392 [Verbose] > │             ()                                                               │

00:01:44 #4393 [Verbose] > │         let v329 : string = "\t| "                                           │

00:01:44 #4394 [Verbose] > │         let v330 : string = System.String.Join (v329, v326)                  │

00:01:44 #4395 [Verbose] > │         System.Console.WriteLine v330                                        │

00:01:44 #4396 [Verbose] > │         let mutable result = None                                            │

00:01:44 #4397 [Verbose] > │         #if FABLE_COMPILER_RUST                                              │

00:01:44 #4398 [Verbose] > │         #if !WASM                                                            │

00:01:44 #4399 [Verbose] > │         ()                                                                   │

00:01:44 #4400 [Verbose] > │         #else                                                                │

00:01:44 #4401 [Verbose] > │         ()                                                                   │

00:01:44 #4402 [Verbose] > │         #endif                                                               │

00:01:44 #4403 [Verbose] > │         #else                                                                │

00:01:44 #4404 [Verbose] > │         System.Console.ResetColor ()                                         │

00:01:44 #4405 [Verbose] > │         ()                                                                   │

00:01:44 #4406 [Verbose] > │         #endif                                                               │

00:01:44 #4407 [Verbose] > │         |> fun x -> result <- Some x                                         │

00:01:44 #4408 [Verbose] > │         result |> Option.get                                                 │

00:01:44 #4409 [Verbose] > │         let v331 : uint64 = v325 + 1UL                                       │

00:01:44 #4410 [Verbose] > │         v323.l0 <- v331                                                      │

00:01:44 #4411 [Verbose] > │         ()                                                                   │

00:01:44 #4412 [Verbose] > │     let v332 : ((float []) []) = Array.zeroCreate<(float [])>                │

00:01:44 #4413 [Verbose] > │ (System.Convert.ToInt32(v168))                                               │

00:01:44 #4414 [Verbose] > │     let v333 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #4415 [Verbose] > │     while method6(v168, v333) do                                             │

00:01:44 #4416 [Verbose] > │         let v335 : uint64 = v333.l0                                          │

00:01:44 #4417 [Verbose] > │         let struct (v336 : string, v337 : string, v338 : string, v339 :      │

00:01:44 #4418 [Verbose] > │ (int64 [])) = v83.[int v335]                                                 │

00:01:44 #4419 [Verbose] > │         let v340 : (int64 -> float) = float                                  │

00:01:44 #4420 [Verbose] > │         let v341 : uint64 = System.Convert.ToUInt64 v339.Length              │

00:01:44 #4421 [Verbose] > │         let v342 : (float []) = Array.zeroCreate<float>                      │

00:01:44 #4422 [Verbose] > │ (System.Convert.ToInt32(v341))                                               │

00:01:44 #4423 [Verbose] > │         let v343 : Mut1 = {l0 = 0UL} : Mut1                                  │

00:01:44 #4424 [Verbose] > │         while method6(v341, v343) do                                         │

00:01:44 #4425 [Verbose] > │             let v345 : uint64 = v343.l0                                      │

00:01:44 #4426 [Verbose] > │             let v346 : int64 = v339.[int v345]                               │

00:01:44 #4427 [Verbose] > │             let v347 : float = v340 v346                                     │

00:01:44 #4428 [Verbose] > │             v342.[int v345] <- v347                                          │

00:01:44 #4429 [Verbose] > │             let v348 : uint64 = v345 + 1UL                                   │

00:01:44 #4430 [Verbose] > │             v343.l0 <- v348                                                  │

00:01:44 #4431 [Verbose] > │             ()                                                               │

00:01:44 #4432 [Verbose] > │         v332.[int v335] <- v342                                              │

00:01:44 #4433 [Verbose] > │         let v349 : uint64 = v335 + 1UL                                       │

00:01:44 #4434 [Verbose] > │         v333.l0 <- v349                                                      │

00:01:44 #4435 [Verbose] > │         ()                                                                   │

00:01:44 #4436 [Verbose] > │     let v350 : ((float []) []) = v332 |> Array.transpose                     │

00:01:44 #4437 [Verbose] > │     let v351 : uint64 = System.Convert.ToUInt64 v350.Length                  │

00:01:44 #4438 [Verbose] > │     let v352 : (float []) = Array.zeroCreate<float>                          │

00:01:44 #4439 [Verbose] > │ (System.Convert.ToInt32(v351))                                               │

00:01:44 #4440 [Verbose] > │     let v353 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #4441 [Verbose] > │     while method6(v351, v353) do                                             │

00:01:44 #4442 [Verbose] > │         let v355 : uint64 = v353.l0                                          │

00:01:44 #4443 [Verbose] > │         let v356 : (float []) = v350.[int v355]                              │

00:01:44 #4444 [Verbose] > │         let v357 : float = v356 |> Array.average                             │

00:01:44 #4445 [Verbose] > │         v352.[int v355] <- v357                                              │

00:01:44 #4446 [Verbose] > │         let v358 : uint64 = v355 + 1UL                                       │

00:01:44 #4447 [Verbose] > │         v353.l0 <- v358                                                      │

00:01:44 #4448 [Verbose] > │         ()                                                                   │

00:01:44 #4449 [Verbose] > │     let v359 : (float -> int64) = int64                                      │

00:01:44 #4450 [Verbose] > │     let v360 : uint64 = System.Convert.ToUInt64 v352.Length                  │

00:01:44 #4451 [Verbose] > │     let v361 : (int64 []) = Array.zeroCreate<int64>                          │

00:01:44 #4452 [Verbose] > │ (System.Convert.ToInt32(v360))                                               │

00:01:44 #4453 [Verbose] > │     let v362 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #4454 [Verbose] > │     while method6(v360, v362) do                                             │

00:01:44 #4455 [Verbose] > │         let v364 : uint64 = v362.l0                                          │

00:01:44 #4456 [Verbose] > │         let v365 : float = v352.[int v364]                                   │

00:01:44 #4457 [Verbose] > │         let v366 : int64 = v359 v365                                         │

00:01:44 #4458 [Verbose] > │         v361.[int v364] <- v366                                              │

00:01:44 #4459 [Verbose] > │         let v367 : uint64 = v364 + 1UL                                       │

00:01:44 #4460 [Verbose] > │         v362.l0 <- v367                                                      │

00:01:44 #4461 [Verbose] > │         ()                                                                   │

00:01:44 #4462 [Verbose] > │     let v368 : uint64 = System.Convert.ToUInt64 v361.Length                  │

00:01:44 #4463 [Verbose] > │     let v369 : UH5 = UH5_1                                                   │

00:01:44 #4464 [Verbose] > │     let v370 : Mut3 = {l0 = 0UL; l1 = v369; l2 = 0} : Mut3                   │

00:01:44 #4465 [Verbose] > │     while method28(v368, v370) do                                            │

00:01:44 #4466 [Verbose] > │         let v372 : uint64 = v370.l0                                          │

00:01:44 #4467 [Verbose] > │         let struct (v373 : UH5, v374 : int32) = v370.l1, v370.l2             │

00:01:44 #4468 [Verbose] > │         let v375 : int64 = v361.[int v372]                                   │

00:01:44 #4469 [Verbose] > │         let v376 : int32 = v374 + 1                                          │

00:01:44 #4470 [Verbose] > │         let v377 : uint64 = v372 + 1UL                                       │

00:01:44 #4471 [Verbose] > │         let v378 : UH5 = UH5_0(v374, v375, v373)                             │

00:01:44 #4472 [Verbose] > │         v370.l0 <- v377                                                      │

00:01:44 #4473 [Verbose] > │         v370.l1 <- v378                                                      │

00:01:44 #4474 [Verbose] > │         v370.l2 <- v376                                                      │

00:01:44 #4475 [Verbose] > │         ()                                                                   │

00:01:44 #4476 [Verbose] > │     let struct (v379 : UH5, v380 : int32) = v370.l1, v370.l2                 │

00:01:44 #4477 [Verbose] > │     let v381 : UH5 = UH5_1                                                   │

00:01:44 #4478 [Verbose] > │     let v382 : UH5 = method29(v379, v381)                                    │

00:01:44 #4479 [Verbose] > │     let v383 : (struct (int32 * int64) []) = method39(v382)                  │

00:01:44 #4480 [Verbose] > │     System.Console.WriteLine v35                                             │

00:01:44 #4481 [Verbose] > │     let v384 : string = "Average Ranking  "                                  │

00:01:44 #4482 [Verbose] > │     System.Console.WriteLine v384                                            │

00:01:44 #4483 [Verbose] > │     let v385 : (struct (int32 * int64) -> int64) = closure8()                │

00:01:44 #4484 [Verbose] > │     let v386 : (struct (int32 * int64) []) = v383 |> Array.sortBy v385       │

00:01:44 #4485 [Verbose] > │     let v387 : uint64 = System.Convert.ToUInt64 v386.Length                  │

00:01:44 #4486 [Verbose] > │     let v388 : Mut1 = {l0 = 0UL} : Mut1                                      │

00:01:44 #4487 [Verbose] > │     while method6(v387, v388) do                                             │

00:01:44 #4488 [Verbose] > │         let v390 : uint64 = v388.l0                                          │

00:01:44 #4489 [Verbose] > │         let struct (v391 : int32, v392 : int64) = v386.[int v390]            │

00:01:44 #4490 [Verbose] > │         let v393 : string = $"Test case %d{v391 + 1}. Average Time: %A{v392} │

00:01:44 #4491 [Verbose] > │ "                                                                            │

00:01:44 #4492 [Verbose] > │         System.Console.WriteLine v393                                        │

00:01:44 #4493 [Verbose] > │         let v394 : uint64 = v390 + 1UL                                       │

00:01:44 #4494 [Verbose] > │         v388.l0 <- v394                                                      │

00:01:44 #4495 [Verbose] > │         ()                                                                   │

00:01:44 #4496 [Verbose] > │     ()                                                                       │

00:01:44 #4497 [Verbose] > │ method0()                                                                    │

00:01:44 #4498 [Verbose] > │                                                                              │

00:01:44 #4499 [Verbose] > │                                                                              │

00:01:44 #4500 [Verbose] > │                                                                              │

00:01:44 #4501 [Verbose] > │ Test: v33                                                                    │

00:01:44 #4502 [Verbose] > │                                                                              │

00:01:44 #4503 [Verbose] > │ Solution: struct ([|1; 3; 4; 6; 8; 9; 11|], 6, 7)                            │

00:01:44 #4504 [Verbose] > │ Test case 1. semi_open_1. Time: 666                                          │

00:01:44 #4505 [Verbose] > │ Test case 2. closed_1. Time: 574                                             │

00:01:44 #4506 [Verbose] > │ Test case 3. semi_open_2. Time: 599                                          │

00:01:44 #4507 [Verbose] > │ Test case 4. closed_2. Time: 588                                             │

00:01:44 #4508 [Verbose] > │                                                                              │

00:01:44 #4509 [Verbose] > │ Solution: struct ([|1; 3; 4; 6; 8; 9; 11|], 1, 7)                            │

00:01:44 #4510 [Verbose] > │ Test case 1. semi_open_1. Time: 526                                          │

00:01:44 #4511 [Verbose] > │ Test case 2. closed_1. Time: 520                                             │

00:01:44 #4512 [Verbose] > │ Test case 3. semi_open_2. Time: 524                                          │

00:01:44 #4513 [Verbose] > │ Test case 4. closed_2. Time: 531                                             │

00:01:44 #4514 [Verbose] > │                                                                              │

00:01:44 #4515 [Verbose] > │ Solution: struct ([|1; 3; 4; 6; 8; 9; 11|], 11, 7)                           │

00:01:44 #4516 [Verbose] > │ Test case 1. semi_open_1. Time: 517                                          │

00:01:44 #4517 [Verbose] > │ Test case 2. closed_1. Time: 508                                             │

00:01:44 #4518 [Verbose] > │ Test case 3. semi_open_2. Time: 533                                          │

00:01:44 #4519 [Verbose] > │ Test case 4. closed_2. Time: 500                                             │

00:01:44 #4520 [Verbose] > │                                                                              │

00:01:44 #4521 [Verbose] > │ Solution: struct ([|1; 3; 4; 6; 8; 9; 11|], 12, 7)                           │

00:01:44 #4522 [Verbose] > │ Test case 1. semi_open_1. Time: 524                                          │

00:01:44 #4523 [Verbose] > │ Test case 2. closed_1. Time: 547                                             │

00:01:44 #4524 [Verbose] > │ Test case 3. semi_open_2. Time: 563                                          │

00:01:44 #4525 [Verbose] > │ Test case 4. closed_2. Time: 584                                             │

00:01:44 #4526 [Verbose] > │                                                                              │

00:01:44 #4527 [Verbose] > │ Solution: struct ([|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16;   │

00:01:44 #4528 [Verbose] > │ 17; 18; 19; 20;                                                              │

00:01:44 #4529 [Verbose] > │           21; 22; 23; 24; 25; 26; 27; 28; 29; 30; 31; 32; 33; 34; 35; 36;    │

00:01:44 #4530 [Verbose] > │ 37; 38;                                                                      │

00:01:44 #4531 [Verbose] > │           39; 40; 41; 42; 43; 44; 45; 46; 47; 48; 49; 50; 51; 52; 53; 54;    │

00:01:44 #4532 [Verbose] > │ 55; 56;                                                                      │

00:01:44 #4533 [Verbose] > │           57; 58; 59; 60; 61; 62; 63; 64; 65; 66; 67; 68; 69; 70; 71; 72;    │

00:01:44 #4534 [Verbose] > │ 73; 74;                                                                      │

00:01:44 #4535 [Verbose] > │           75; 76; 77; 78; 79; 80; 81; 82; 83; 84; 85; 86; 87; 88; 89; 90;    │

00:01:44 #4536 [Verbose] > │ 91; 92;                                                                      │

00:01:44 #4537 [Verbose] > │           93; 94; 95; 96; 97; 98; 99; 100|], 60, 100)                        │

00:01:44 #4538 [Verbose] > │ Test case 1. semi_open_1. Time: 593                                          │

00:01:44 #4539 [Verbose] > │ Test case 2. closed_1. Time: 574                                             │

00:01:44 #4540 [Verbose] > │ Test case 3. semi_open_2. Time: 551                                          │

00:01:44 #4541 [Verbose] > │ Test case 4. closed_2. Time: 534                                             │

00:01:44 #4542 [Verbose] > │                                                                              │

00:01:44 #4543 [Verbose] > │ Solution: struct ([|1; 3; 4; 6; 8; 9; 11|], 6, 7)                            │

00:01:44 #4544 [Verbose] > │ Test case 1. semi_open_1. Time: 509                                          │

00:01:44 #4545 [Verbose] > │ Test case 2. closed_1. Time: 511                                             │

00:01:44 #4546 [Verbose] > │ Test case 3. semi_open_2. Time: 514                                          │

00:01:44 #4547 [Verbose] > │ Test case 4. closed_2. Time: 513                                             │

00:01:44 #4548 [Verbose] > │                                                                              │

00:01:44 #4549 [Verbose] > │ Solution: struct ([|1; 3; 4; 6; 8; 9; 11|], 1, 7)                            │

00:01:44 #4550 [Verbose] > │ Test case 1. semi_open_1. Time: 560                                          │

00:01:44 #4551 [Verbose] > │ Test case 2. closed_1. Time: 530                                             │

00:01:44 #4552 [Verbose] > │ Test case 3. semi_open_2. Time: 532                                          │

00:01:44 #4553 [Verbose] > │ Test case 4. closed_2. Time: 534                                             │

00:01:44 #4554 [Verbose] > │                                                                              │

00:01:44 #4555 [Verbose] > │ Solution: struct ([|1; 3; 4; 6; 8; 9; 11|], 11, 7)                           │

00:01:44 #4556 [Verbose] > │ Test case 1. semi_open_1. Time: 613                                          │

00:01:44 #4557 [Verbose] > │ Test case 2. closed_1. Time: 584                                             │

00:01:44 #4558 [Verbose] > │ Test case 3. semi_open_2. Time: 582                                          │

00:01:44 #4559 [Verbose] > │ Test case 4. closed_2. Time: 622                                             │

00:01:44 #4560 [Verbose] > │                                                                              │

00:01:44 #4561 [Verbose] > │ Solution: struct ([|1; 3; 4; 6; 8; 9; 11|], 12, 7)                           │

00:01:44 #4562 [Verbose] > │ Test case 1. semi_open_1. Time: 603                                          │

00:01:44 #4563 [Verbose] > │ Test case 2. closed_1. Time: 571                                             │

00:01:44 #4564 [Verbose] > │ Test case 3. semi_open_2. Time: 567                                          │

00:01:44 #4565 [Verbose] > │ Test case 4. closed_2. Time: 550                                             │

00:01:44 #4566 [Verbose] > │                                                                              │

00:01:44 #4567 [Verbose] > │ Solution: struct ([|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16;   │

00:01:44 #4568 [Verbose] > │ 17; 18; 19; 20;                                                              │

00:01:44 #4569 [Verbose] > │           21; 22; 23; 24; 25; 26; 27; 28; 29; 30; 31; 32; 33; 34; 35; 36;    │

00:01:44 #4570 [Verbose] > │ 37; 38;                                                                      │

00:01:44 #4571 [Verbose] > │           39; 40; 41; 42; 43; 44; 45; 46; 47; 48; 49; 50; 51; 52; 53; 54;    │

00:01:44 #4572 [Verbose] > │ 55; 56;                                                                      │

00:01:44 #4573 [Verbose] > │           57; 58; 59; 60; 61; 62; 63; 64; 65; 66; 67; 68; 69; 70; 71; 72;    │

00:01:44 #4574 [Verbose] > │ 73; 74;                                                                      │

00:01:44 #4575 [Verbose] > │           75; 76; 77; 78; 79; 80; 81; 82; 83; 84; 85; 86; 87; 88; 89; 90;    │

00:01:44 #4576 [Verbose] > │ 91; 92;                                                                      │

00:01:44 #4577 [Verbose] > │           93; 94; 95; 96; 97; 98; 99; 100|], 60, 100)                        │

00:01:44 #4578 [Verbose] > │ Test case 1. semi_open_1. Time: 569                                          │

00:01:44 #4579 [Verbose] > │ Test case 2. closed_1. Time: 534                                             │

00:01:44 #4580 [Verbose] > │ Test case 3. semi_open_2. Time: 584                                          │

00:01:44 #4581 [Verbose] > │ Test case 4. closed_2. Time: 587                                             │

00:01:44 #4582 [Verbose] > │                                                                              │

00:01:44 #4583 [Verbose] > │ Input                                                                        │

00:01:44 #4584 [Verbose] > │                                                                              │

00:01:44 #4585 [Verbose] > │                                                                              │

00:01:44 #4586 [Verbose] > │                                                                              │

00:01:44 #4587 [Verbose] > │  	| Expected	| Result  	| Best                                                     │

00:01:44 #4588 [Verbose] > │ ---                                                                          │

00:01:44 #4589 [Verbose] > │                                                                              │

00:01:44 #4590 [Verbose] > │                                                                              │

00:01:44 #4591 [Verbose] > │                                                                              │

00:01:44 #4592 [Verbose] > │    	| ---     	| ---     	| ---                                                    │

00:01:44 #4593 [Verbose] > │ struct ([|1; 3; 4; 6; 8; 9; 11|], 6, 7)                                      │

00:01:44 #4594 [Verbose] > │                                                                              │

00:01:44 #4595 [Verbose] > │                                                                              │

00:01:44 #4596 [Verbose] > │                                                                              │

00:01:44 #4597 [Verbose] > │ | US0_1 3 	| US0_1 3 	| struct (2L, 574L)                                        │

00:01:44 #4598 [Verbose] > │ struct ([|1; 3; 4; 6; 8; 9; 11|], 1, 7)                                      │

00:01:44 #4599 [Verbose] > │                                                                              │

00:01:44 #4600 [Verbose] > │                                                                              │

00:01:44 #4601 [Verbose] > │                                                                              │

00:01:44 #4602 [Verbose] > │ | US0_1 0 	| US0_1 0 	| struct (2L, 520L)                                        │

00:01:44 #4603 [Verbose] > │ struct ([|1; 3; 4; 6; 8; 9; 11|], 11, 7)                                     │

00:01:44 #4604 [Verbose] > │                                                                              │

00:01:44 #4605 [Verbose] > │                                                                              │

00:01:44 #4606 [Verbose] > │                                                                              │

00:01:44 #4607 [Verbose] > │ | US0_1 6 	| US0_1 6 	| struct (4L, 500L)                                        │

00:01:44 #4608 [Verbose] > │ struct ([|1; 3; 4; 6; 8; 9; 11|], 12, 7)                                     │

00:01:44 #4609 [Verbose] > │                                                                              │

00:01:44 #4610 [Verbose] > │                                                                              │

00:01:44 #4611 [Verbose] > │                                                                              │

00:01:44 #4612 [Verbose] > │ | US0_0   	| US0_0   	| struct (1L, 524L)                                        │

00:01:44 #4613 [Verbose] > │ struct ([|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; │

00:01:44 #4614 [Verbose] > │ 20;                                                                          │

00:01:44 #4615 [Verbose] > │           21; 22; 23; 24; 25; 26; 27; 28; 29; 30; 31; 32; 33; 34; 35; 36;    │

00:01:44 #4616 [Verbose] > │ 37; 38;                                                                      │

00:01:44 #4617 [Verbose] > │           39; 40; 41; 42; 43; 44; 45; 46; 47; 48; 49; 50; 51; 52; 53; 54;    │

00:01:44 #4618 [Verbose] > │ 55; 56;                                                                      │

00:01:44 #4619 [Verbose] > │           57; 58; 59; 60; 61; 62; 63; 64; 65; 66; 67; 68; 69; 70; 71; 72;    │

00:01:44 #4620 [Verbose] > │ 73; 74;                                                                      │

00:01:44 #4621 [Verbose] > │           75; 76; 77; 78; 79; 80; 81; 82; 83; 84; 85; 86; 87; 88; 89; 90;    │

00:01:44 #4622 [Verbose] > │ 91; 92;                                                                      │

00:01:44 #4623 [Verbose] > │           93; 94; 95; 96; 97; 98; 99; 100|], 60, 100)	| US0_1 59	| US0_1 59	|      │

00:01:44 #4624 [Verbose] > │ struct (4L, 534L)                                                            │

00:01:44 #4625 [Verbose] > │ struct ([|1; 3; 4; 6; 8; 9; 11|], 6, 7)                                      │

00:01:44 #4626 [Verbose] > │                                                                              │

00:01:44 #4627 [Verbose] > │                                                                              │

00:01:44 #4628 [Verbose] > │                                                                              │

00:01:44 #4629 [Verbose] > │ | US0_1 3 	| US0_1 3 	| struct (1L, 509L)                                        │

00:01:44 #4630 [Verbose] > │ struct ([|1; 3; 4; 6; 8; 9; 11|], 1, 7)                                      │

00:01:44 #4631 [Verbose] > │                                                                              │

00:01:44 #4632 [Verbose] > │                                                                              │

00:01:44 #4633 [Verbose] > │                                                                              │

00:01:44 #4634 [Verbose] > │ | US0_1 0 	| US0_1 0 	| struct (2L, 530L)                                        │

00:01:44 #4635 [Verbose] > │ struct ([|1; 3; 4; 6; 8; 9; 11|], 11, 7)                                     │

00:01:44 #4636 [Verbose] > │                                                                              │

00:01:44 #4637 [Verbose] > │                                                                              │

00:01:44 #4638 [Verbose] > │                                                                              │

00:01:44 #4639 [Verbose] > │ | US0_1 6 	| US0_1 6 	| struct (3L, 582L)                                        │

00:01:44 #4640 [Verbose] > │ struct ([|1; 3; 4; 6; 8; 9; 11|], 12, 7)                                     │

00:01:44 #4641 [Verbose] > │                                                                              │

00:01:44 #4642 [Verbose] > │                                                                              │

00:01:44 #4643 [Verbose] > │                                                                              │

00:01:44 #4644 [Verbose] > │ | US0_0   	| US0_0   	| struct (4L, 550L)                                        │

00:01:44 #4645 [Verbose] > │ struct ([|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; │

00:01:44 #4646 [Verbose] > │ 20;                                                                          │

00:01:44 #4647 [Verbose] > │           21; 22; 23; 24; 25; 26; 27; 28; 29; 30; 31; 32; 33; 34; 35; 36;    │

00:01:44 #4648 [Verbose] > │ 37; 38;                                                                      │

00:01:44 #4649 [Verbose] > │           39; 40; 41; 42; 43; 44; 45; 46; 47; 48; 49; 50; 51; 52; 53; 54;    │

00:01:44 #4650 [Verbose] > │ 55; 56;                                                                      │

00:01:44 #4651 [Verbose] > │           57; 58; 59; 60; 61; 62; 63; 64; 65; 66; 67; 68; 69; 70; 71; 72;    │

00:01:44 #4652 [Verbose] > │ 73; 74;                                                                      │

00:01:44 #4653 [Verbose] > │           75; 76; 77; 78; 79; 80; 81; 82; 83; 84; 85; 86; 87; 88; 89; 90;    │

00:01:44 #4654 [Verbose] > │ 91; 92;                                                                      │

00:01:44 #4655 [Verbose] > │           93; 94; 95; 96; 97; 98; 99; 100|], 60, 100)	| US0_1 59	| US0_1 59	|      │

00:01:44 #4656 [Verbose] > │ struct (2L, 534L)                                                            │

00:01:44 #4657 [Verbose] > │                                                                              │

00:01:44 #4658 [Verbose] > │ Average Ranking                                                              │

00:01:44 #4659 [Verbose] > │ Test case 2. Average Time: 545L                                              │

00:01:44 #4660 [Verbose] > │ Test case 3. Average Time: 554L                                              │

00:01:44 #4661 [Verbose] > │ Test case 4. Average Time: 554L                                              │

00:01:44 #4662 [Verbose] > │ Test case 1. Average Time: 568L                                              │

00:01:44 #4663 [Verbose] > │                                                                              │

00:01:44 #4664 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:01:44 #4665 [Verbose] >

00:01:44 #4666 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:01:44 #4667 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:01:44 #4668 [Verbose] > │ ## returnLettersWithOddCountTests                                            │

00:01:44 #4669 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:01:44 #4670 [Verbose] >

00:01:44 #4671 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:01:44 #4672 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:01:44 #4673 [Verbose] > │ Test: ReturnLettersWithOddCount                                              │

00:01:44 #4674 [Verbose] > │                                                                              │

00:01:44 #4675 [Verbose] > │ Solution: 1                                                                  │

00:01:44 #4676 [Verbose] > │ Test case 1. A. Time: 645L                                                   │

00:01:44 #4677 [Verbose] > │                                                                              │

00:01:44 #4678 [Verbose] > │ Solution: 2                                                                  │

00:01:44 #4679 [Verbose] > │ Test case 1. A. Time: 663L                                                   │

00:01:44 #4680 [Verbose] > │                                                                              │

00:01:44 #4681 [Verbose] > │ Solution: 3                                                                  │

00:01:44 #4682 [Verbose] > │ Test case 1. A. Time: 680L                                                   │

00:01:44 #4683 [Verbose] > │                                                                              │

00:01:44 #4684 [Verbose] > │ Solution: 9                                                                  │

00:01:44 #4685 [Verbose] > │ Test case 1. A. Time: 730L                                                   │

00:01:44 #4686 [Verbose] > │                                                                              │

00:01:44 #4687 [Verbose] > │ Solution: 10                                                                 │

00:01:44 #4688 [Verbose] > │ Test case 1. A. Time: 815L                                                   │

00:01:44 #4689 [Verbose] > │                                                                              │

00:01:44 #4690 [Verbose] > │ Input   | Expected        | Result          | Best                           │

00:01:44 #4691 [Verbose] > │ ---     | ---             | ---             | ---                            │

00:01:44 #4692 [Verbose] > │ 1       | a               | a               | (1, 645)                       │

00:01:44 #4693 [Verbose] > │ 2       | ba              | ba              | (1, 663)                       │

00:01:44 #4694 [Verbose] > │ 3       | aaa             | aaa             | (1, 680)                       │

00:01:44 #4695 [Verbose] > │ 9       | aaaaaaaaa       | aaaaaaaaa       | (1, 730)                       │

00:01:44 #4696 [Verbose] > │ 10      | baaaaaaaaa      | baaaaaaaaa      | (1, 815)                       │

00:01:44 #4697 [Verbose] > │                                                                              │

00:01:44 #4698 [Verbose] > │ Averages                                                                     │

00:01:44 #4699 [Verbose] > │ Test case 1. Average Time: 706L                                              │

00:01:44 #4700 [Verbose] > │                                                                              │

00:01:44 #4701 [Verbose] > │ Ranking                                                                      │

00:01:44 #4702 [Verbose] > │ Test case 1. Average Time: 706L                                              │

00:01:44 #4703 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:01:44 #4704 [Verbose] >

00:01:44 #4705 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:01:44 #4706 [Verbose] > //// test

00:01:44 #4707 [Verbose] >

00:01:44 #4708 [Verbose] > let solutions = [[

00:01:44 #4709 [Verbose] >     "A",

00:01:44 #4710 [Verbose] >     fun n ->

00:01:44 #4711 [Verbose] >         let mutable _builder = StringBuilder (new string('a', n))

00:01:44 #4712 [Verbose] >         if n % 2 = 0 then

00:01:44 #4713 [Verbose] >             _builder.[[0]] <- 'b'

00:01:44 #4714 [Verbose] >

00:01:44 #4715 [Verbose] >         _builder.ToString ()

00:01:44 #4716 [Verbose] > ]]

00:01:44 #4717 [Verbose] > let testCases = seq {

00:01:44 #4718 [Verbose] >     1, "a"

00:01:44 #4719 [Verbose] >     2, "ba"

00:01:44 #4720 [Verbose] >     3, "aaa"

00:01:44 #4721 [Verbose] >     9, "aaaaaaaaa"

00:01:44 #4722 [Verbose] >     10, "baaaaaaaaa"

00:01:44 #4723 [Verbose] > }

00:01:44 #4724 [Verbose] > let rec returnLettersWithOddCountTests =

00:01:44 #4725 [Verbose] >     runAll (nameof returnLettersWithOddCountTests) _count solutions testCases

00:01:44 #4726 [Verbose] > returnLettersWithOddCountTests

00:01:44 #4727 [Verbose] > |> sortResultList

00:01:45 #4728 [Verbose] >

00:01:45 #4729 [Verbose] > ╭─[ 864.59ms - stdout ]────────────────────────────────────────────────────────╮

00:01:45 #4730 [Verbose] > │                                                                              │

00:01:45 #4731 [Verbose] > │                                                                              │

00:01:45 #4732 [Verbose] > │ Test: returnLettersWithOddCountTests                                         │

00:01:45 #4733 [Verbose] > │                                                                              │

00:01:45 #4734 [Verbose] > │ Solution: 1                                                                  │

00:01:45 #4735 [Verbose] > │ Test case 1. A. Time: 1L                                                     │

00:01:45 #4736 [Verbose] > │                                                                              │

00:01:45 #4737 [Verbose] > │ Solution: 2                                                                  │

00:01:45 #4738 [Verbose] > │ Test case 1. A. Time: 0L                                                     │

00:01:45 #4739 [Verbose] > │                                                                              │

00:01:45 #4740 [Verbose] > │ Solution: 3                                                                  │

00:01:45 #4741 [Verbose] > │ Test case 1. A. Time: 0L                                                     │

00:01:45 #4742 [Verbose] > │                                                                              │

00:01:45 #4743 [Verbose] > │ Solution: 9                                                                  │

00:01:45 #4744 [Verbose] > │ Test case 1. A. Time: 0L                                                     │

00:01:45 #4745 [Verbose] > │                                                                              │

00:01:45 #4746 [Verbose] > │ Solution: 10                                                                 │

00:01:45 #4747 [Verbose] > │ Test case 1. A. Time: 2L                                                     │

00:01:45 #4748 [Verbose] > │                                                                              │

00:01:45 #4749 [Verbose] > │ Input	| Expected  	| Result    	| Best                                             │

00:01:45 #4750 [Verbose] > │ ---  	| ---       	| ---       	| ---                                              │

00:01:45 #4751 [Verbose] > │ 1    	| a         	| a         	| (1, 1)                                           │

00:01:45 #4752 [Verbose] > │ 2    	| ba        	| ba        	| (1, 0)                                           │

00:01:45 #4753 [Verbose] > │ 3    	| aaa       	| aaa       	| (1, 0)                                           │

00:01:45 #4754 [Verbose] > │ 9    	| aaaaaaaaa 	| aaaaaaaaa 	| (1, 0)                                           │

00:01:45 #4755 [Verbose] > │ 10   	| baaaaaaaaa	| baaaaaaaaa	| (1, 2)                                           │

00:01:45 #4756 [Verbose] > │                                                                              │

00:01:45 #4757 [Verbose] > │ Average Ranking                                                              │

00:01:45 #4758 [Verbose] > │ Test case 1. Average Time: 0L                                                │

00:01:45 #4759 [Verbose] > │                                                                              │

00:01:45 #4760 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:01:45 #4761 [Verbose] >

00:01:45 #4762 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:01:45 #4763 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:01:45 #4764 [Verbose] > │ ## hasAnyPairCloseToEachotherTests                                           │

00:01:45 #4765 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:01:45 #4766 [Verbose] >

00:01:45 #4767 [Verbose] > ── markdown ────────────────────────────────────────────────────────────────────

00:01:45 #4768 [Verbose] > ╭──────────────────────────────────────────────────────────────────────────────╮

00:01:45 #4769 [Verbose] > │ Test: HasAnyPairCloseToEachother                                             │

00:01:45 #4770 [Verbose] > │                                                                              │

00:01:45 #4771 [Verbose] > │ Solution: 0                                                                  │

00:01:45 #4772 [Verbose] > │ Test case 1. A. Time: 137L                                                   │

00:01:45 #4773 [Verbose] > │                                                                              │

00:01:45 #4774 [Verbose] > │ Solution: 1,2                                                                │

00:01:45 #4775 [Verbose] > │ Test case 1. A. Time: 186L                                                   │

00:01:45 #4776 [Verbose] > │                                                                              │

00:01:45 #4777 [Verbose] > │ Solution: 3,5                                                                │

00:01:45 #4778 [Verbose] > │ Test case 1. A. Time: 206L                                                   │

00:01:45 #4779 [Verbose] > │                                                                              │

00:01:45 #4780 [Verbose] > │ Solution: 3,4,6                                                              │

00:01:45 #4781 [Verbose] > │ Test case 1. A. Time: 149L                                                   │

00:01:45 #4782 [Verbose] > │                                                                              │

00:01:45 #4783 [Verbose] > │ Solution: 2,4,6                                                              │

00:01:45 #4784 [Verbose] > │ Test case 1. A. Time: 150L                                                   │

00:01:45 #4785 [Verbose] > │                                                                              │

00:01:45 #4786 [Verbose] > │ Input   | Expected        | Result  | Best                                   │

00:01:45 #4787 [Verbose] > │ ---     | ---             | ---     | ---                                    │

00:01:45 #4788 [Verbose] > │ 0       | False           | False   | (1, 137)                               │

00:01:45 #4789 [Verbose] > │ 1,2     | True            | True    | (1, 186)                               │

00:01:45 #4790 [Verbose] > │ 3,5     | False           | False   | (1, 206)                               │

00:01:45 #4791 [Verbose] > │ 3,4,6   | True            | True    | (1, 149)                               │

00:01:45 #4792 [Verbose] > │ 2,4,6   | False           | False   | (1, 150)                               │

00:01:45 #4793 [Verbose] > │                                                                              │

00:01:45 #4794 [Verbose] > │ Averages                                                                     │

00:01:45 #4795 [Verbose] > │ Test case 1. Average Time: 165L                                              │

00:01:45 #4796 [Verbose] > │                                                                              │

00:01:45 #4797 [Verbose] > │ Ranking                                                                      │

00:01:45 #4798 [Verbose] > │ Test case 1. Average Time: 165L                                              │

00:01:45 #4799 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:01:45 #4800 [Verbose] >

00:01:45 #4801 [Verbose] > ── fsharp ──────────────────────────────────────────────────────────────────────

00:01:45 #4802 [Verbose] > //// test

00:01:45 #4803 [Verbose] >

00:01:45 #4804 [Verbose] > let solutions = [[

00:01:45 #4805 [Verbose] >     "A",

00:01:45 #4806 [Verbose] >     fun (a: int[[]]) ->

00:01:45 #4807 [Verbose] >         let indices = System.Linq.Enumerable.Range(0, a.Length) |>

00:01:45 #4808 [Verbose] > System.Linq.Enumerable.ToArray

00:01:45 #4809 [Verbose] >         System.Array.Sort (a, indices)

00:01:45 #4810 [Verbose] >

00:01:45 #4811 [Verbose] >         indices

00:01:45 #4812 [Verbose] >         |> Array.take (a.Length - 1)

00:01:45 #4813 [Verbose] >         |> Array.exists (fun i -> a.[[i + 1]] - a.[[i]] = 1)

00:01:45 #4814 [Verbose] > ]]

00:01:45 #4815 [Verbose] > let testCases = seq {

00:01:45 #4816 [Verbose] >     [[| 0 |]], false

00:01:45 #4817 [Verbose] >     [[| 1; 2 |]], true

00:01:45 #4818 [Verbose] >     [[| 3; 5 |]], false

00:01:45 #4819 [Verbose] >     [[| 3; 4; 6 |]], true

00:01:45 #4820 [Verbose] >     [[| 2; 4; 6 |]], false

00:01:45 #4821 [Verbose] > }

00:01:45 #4822 [Verbose] > let rec hasAnyPairCloseToEachotherTests =

00:01:45 #4823 [Verbose] >     runAll (nameof hasAnyPairCloseToEachotherTests) _count solutions testCases

00:01:45 #4824 [Verbose] > hasAnyPairCloseToEachotherTests

00:01:45 #4825 [Verbose] > |> sortResultList

00:01:46 #4826 [Verbose] >

00:01:46 #4827 [Verbose] > ╭─[ 854.89ms - stdout ]────────────────────────────────────────────────────────╮

00:01:46 #4828 [Verbose] > │                                                                              │

00:01:46 #4829 [Verbose] > │                                                                              │

00:01:46 #4830 [Verbose] > │ Test: hasAnyPairCloseToEachotherTests                                        │

00:01:46 #4831 [Verbose] > │                                                                              │

00:01:46 #4832 [Verbose] > │ Solution: 0                                                                  │

00:01:46 #4833 [Verbose] > │ Test case 1. A. Time: 3L                                                     │

00:01:46 #4834 [Verbose] > │                                                                              │

00:01:46 #4835 [Verbose] > │ Solution: 1,2                                                                │

00:01:46 #4836 [Verbose] > │ Test case 1. A. Time: 0L                                                     │

00:01:46 #4837 [Verbose] > │                                                                              │

00:01:46 #4838 [Verbose] > │ Solution: 3,5                                                                │

00:01:46 #4839 [Verbose] > │ Test case 1. A. Time: 0L                                                     │

00:01:46 #4840 [Verbose] > │                                                                              │

00:01:46 #4841 [Verbose] > │ Solution: 3,4,6                                                              │

00:01:46 #4842 [Verbose] > │ Test case 1. A. Time: 0L                                                     │

00:01:46 #4843 [Verbose] > │                                                                              │

00:01:46 #4844 [Verbose] > │ Solution: 2,4,6                                                              │

00:01:46 #4845 [Verbose] > │ Test case 1. A. Time: 0L                                                     │

00:01:46 #4846 [Verbose] > │                                                                              │

00:01:46 #4847 [Verbose] > │ Input	| Expected	| Result	| Best                                                   │

00:01:46 #4848 [Verbose] > │ ---  	| ---     	| ---   	| ---                                                    │

00:01:46 #4849 [Verbose] > │ 0    	| False   	| False 	| (1, 3)                                                 │

00:01:46 #4850 [Verbose] > │ 1,2  	| True    	| True  	| (1, 0)                                                 │

00:01:46 #4851 [Verbose] > │ 3,5  	| False   	| False 	| (1, 0)                                                 │

00:01:46 #4852 [Verbose] > │ 3,4,6	| True    	| True  	| (1, 0)                                                 │

00:01:46 #4853 [Verbose] > │ 2,4,6	| False   	| False 	| (1, 0)                                                 │

00:01:46 #4854 [Verbose] > │                                                                              │

00:01:46 #4855 [Verbose] > │ Average Ranking                                                              │

00:01:46 #4856 [Verbose] > │ Test case 1. Average Time: 0L                                                │

00:01:46 #4857 [Verbose] > │                                                                              │

00:01:46 #4858 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:01:46 #4859 [Verbose] >

00:01:46 #4860 [Verbose] > ── spiral ──────────────────────────────────────────────────────────────────────

00:01:46 #4861 [Verbose] > // // test

00:01:46 #4862 [Verbose] >

00:01:46 #4863 [Verbose] > ()

00:01:46 #4864 [Verbose] > Building C:\Users\i574n\AppData\Local\Temp\!dotnet-repl\20240208-1653-0595-9558-96ee528d5f23\main.spi

00:01:46 #4865 [Verbose] >

00:01:46 #4866 [Verbose] > ╭─[ 184.26ms - stdout ]────────────────────────────────────────────────────────╮

00:01:46 #4867 [Verbose] > │ let rec method0 () : unit =                                                  │

00:01:46 #4868 [Verbose] > │     ()                                                                       │

00:01:46 #4869 [Verbose] > │ method0()                                                                    │

00:01:46 #4870 [Verbose] > │                                                                              │

00:01:46 #4871 [Verbose] > │                                                                              │

00:01:46 #4872 [Verbose] > ╰──────────────────────────────────────────────────────────────────────────────╯

00:01:49 #4873 [Verbose] > [NbConvertApp] Converting notebook Perf.dib.ipynb to html

00:01:49 #4874 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

00:01:49 #4875 [Verbose] >   validate(nb)

00:01:49 #4876 [Verbose] > C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

00:01:49 #4877 [Verbose] >   return _pygments_highlight(

00:01:51 #4878 [Verbose] > [NbConvertApp] Writing 556025 bytes to Perf.dib.html

00:01:52 #4879 [Debug] executeAsync / exitCode: 0 / output.Length: 344418

00:01:52 #4880 [Debug] main / executeCommand / exitCode: 0

00:00:00 #1 [Debug] writeDibCode / output: Fs / path: Perf.dib

00:00:00 #2 [Debug] parseDibCode / output: Fs / file: Perf.dib

In [ ]:
{ . "$ScriptDir/../apps/dir-tree-html/build.ps1" } | Invoke-Block

── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ # DirTreeHtml (Polyglot)                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Testing.dib



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.A

spNetCore.Html.Abstractions.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.Formatting.dll"

open System

open System.IO

open System.Text

open Microsoft.DotNet.Interactive.Formatting



── fsharp - import ─────────────────────────────────────────────────────────────

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.FSharp.dll"

open Microsoft.DotNet.Interactive.FSharp.FSharpKernelHelpers

#r 

"C:/Users/i574n/.nuget/packages/dotnet-repl/0.1.204/tools/net7.0/any/Microsoft.D

otNet.Interactive.dll"

open type Microsoft.DotNet.Interactive.Kernel



── fsharp - import ─────────────────────────────────────────────────────────────

#r @"../../../../../../../.nuget/packages/expecto/10.1.0/lib/net6.0/Expecto.dll"



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



Formatter.ListExpansionLimit <- 100



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



type AssertExceptionFormatter (ex) =

    member _.Text =

        ex.ToString()

            .Replace("32m", "<span style=\"color: green;\">")

            .Replace("36m", "</span>")

            .Replace("31m", "<span style=\"color: red;\">")

            .Replace("\n", "<br/>\n")





Formatter.Register<AssertExceptionFormatter> ((fun (x : 

AssertExceptionFormatter) -> x.Text), "text/html")



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __expect fn log expected actual =

    if log then printfn $"{actual.ToDisplayString ()}"

    try

        "Testing.__expect" |> fn actual expected

    with :? Expecto.AssertException as ex ->

        AssertExceptionFormatter(ex).Display () |> ignore

        failwith (ex.GetType().FullName)



let inline __contains log expected actual = __expect Expecto.Expect.contains log

expected actual

let inline _contains expected actual = __contains true expected actual



let inline __equal log expected actual = __expect Expecto.Expect.equal log 

expected actual

let inline _equal expected actual = __equal true expected actual



let inline __isGreaterThan log expected actual = __expect 

Expecto.Expect.isGreaterThan log expected actual

let ...



── fsharp - import ─────────────────────────────────────────────────────────────

//// test



let inline __isBetween log a b actual =

    let inline isBetween actual (a, b) _ =

        __isGreaterThanOrEqual log a actual

        __isLessThanOrEqual log b actual

    __expect isBetween log (a, b) actual

let inline _isBetween a b actual = __isBetween true a b actual



── fsharp ──────────────────────────────────────────────────────────────────────

#r 

@"../../../../../../../.nuget/packages/fsharp.control.asyncseq/3.2.1/lib/netstan

dard2.1/FSharp.Control.AsyncSeq.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive/6.0.1-preview.1/lib/net6.

0/System.Reactive.dll"

#r 

@"../../../../../../../.nuget/packages/system.reactive.linq/6.0.1-preview.1/lib/

netstandard2.0/System.Reactive.Linq.dll"

#r 

@"../../../../../../../.nuget/packages/argu/6.1.5/lib/netstandard2.0/Argu.dll"

#r 

@"../../../../../../../.nuget/packages/system.commandline/2.0.0-beta4.22272.1/li

b/net6.0/System.CommandLine.dll"

#r 

@"../../../../../../../.nuget/packages/falco.markup/1.0.2/lib/netstandard2.0/Fal

co.Markup.dll"



── fsharp ──────────────────────────────────────────────────────────────────────

#!import ../../lib/fsharp/Common.fs

#!import ../../lib/fsharp/CommonFSharp.fs

#!import ../../lib/fsharp/Async.fs

#!import ../../lib/fsharp/AsyncSeq.fs

#!import ../../lib/fsharp/Networking.fs

#!import ../../lib/fsharp/Runtime.fs

#!import ../../lib/fsharp/FileSystem.fs



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Common =



    let nl = System.Environment.NewLine

    let q = @""""



    let inline cons head tail = head :: tail



    module String =

        let inline contains (value : string) (input : string) =

            input.Contains value



        let inline endsWith (value : string) (input : string) =

            input.EndsWith value



        let inline padLeft totalWidth paddingChar (input : string) =

            input.PadLeft (totalWidth, paddingChar)



        let inline replace (oldValue : string) (newValue : string) (input : 

string) =

            input.Replace (oldValue, newValue)



        let inline split separator (input : string) =

            input.Split separator



        let inline spli...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module CommonFSharp =



    open Common



    /// ## getUnionCaseName



    let inline getUnionCaseName<'T> (x: 'T) =

        match Reflection.FSharpValue.GetUnionFields(x, typeof<'T>) with

        | case, _ -> case.Name





── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Async =



    open Common



    /// ## choice



    let inline choice asyncs = async {

        let e = Event<_> ()

        use cts = new System.Threading.CancellationTokenSource ()

        let fn =

            asyncs

            |> Seq.map (fun a -> async {

                let! x = a

                e.Trigger x

            })

            |> Async.Parallel

            |> Async.Ignore

        Async.Start (fn, cts.Token)

        let! result = Async.AwaitEvent e.Publish

        cts.Cancel ()

        return result

    }



    /// ## map



    let inline map fn a = async {

        let! x = a

        return fn x

    }



    /// ## catch



    let inline catch a =

        a

        |> Async.Catch

        ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module AsyncSeq =



    open Common



    /// ## subscribeEvent



    let inline subscribeEvent (event: IEvent<'H, 'A>) map =

        let observable = System.Reactive.Linq.Observable.FromEventPattern<'H, 

'A>(event.AddHandler, event.RemoveHandler)

        System.Reactive.Linq.Observable.Select (observable, fun event -> map 

event.EventArgs)

        |> FSharp.Control.AsyncSeq.ofObservableBuffered



    let subscribeToken (token : System.Threading.CancellationToken) =

        let tcs = new System.Threading.Tasks.TaskCompletionSource ()

        System.Action tcs.SetResult |> token.Register |> ignore

        let start = System.DateTime.Now.Ticks

        FSharp.Control.AsyncSeq.unfoldAsync

            (fun (...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Networking =



    open Common



    /// ## testPortOpen



    let inline testPortOpen port = async {

        let! ct = Async.CancellationToken

        use client = new System.Net.Sockets.TcpClient ()

        try

            do! client.ConnectAsync ("127.0.0.1", port, ct) |> 

Async.awaitValueTaskUnit

            return true

        with ex ->

            trace Verbose (fun () -> $"testPortOpen / ex: {ex |> 

printException}") getLocals

            return false

    }



    let inline testPortOpenTimeout timeout port = async {

        let! result =

            testPortOpen port

            |> Async.runWithTimeoutAsync timeout

        return

            match result with

            | None -> false

 ...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module Runtime =



    open Common



    /// ## isWindows



    let isWindows =

        fun () ->

            System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform

                System.Runtime.InteropServices.OSPlatform.Windows

        |> memoize



    /// ## getExecutableSuffix



    let inline getExecutableSuffix () =

        if isWindows ()

        then ".exe"

        else ""



    /// ## splitCommand



    type private CommandParseStep =

        | Start

        | Path of quoted: bool

        | Arguments



    let splitCommand (command: string) =

        let rec loop (path, args) chars step =

            match chars, step with

            | ('"' | '\'') :: tail, _ when path = "" -> loop (pat...



── fsharp - import ─────────────────────────────────────────────────────────────

#if !INTERACTIVE

namespace Polyglot

#endif



module FileSystem =



    open Common



    /// ## Operators



    module Operators =

        let inline (</>) a b =

            System.IO.Path.Combine (a, b)



    open Operators



    /// ## createTempDirectoryName



    let inline createTempDirectoryName () =

        let root = System.Reflection.Assembly.GetEntryAssembly().GetName().Name



        System.IO.Path.GetTempPath ()

        </> $"!{root}"

        </> string (newGuidFromDateTime System.DateTime.Now)



    /// ## createTempDirectory



    let inline createTempDirectory () =

        let tempFolder = createTempDirectoryName ()

        let result = System.IO.Directory.CreateDirectory tempFolder



        if not result.Exists then

            let ge...



── fsharp ──────────────────────────────────────────────────────────────────────

open FileSystem.Operators

open Falco.Markup



── fsharp ──────────────────────────────────────────────────────────────────────

type FileSystemNode =

    | File of string * string * int64

    | Folder of string * string * FileSystemNode list

    | Root of FileSystemNode list



let rec scanDirectory isRoot (basePath : string) (path : string) =

    let relativePath = path.Replace(basePath, "").Replace("\\", 

"/").Replace("//", "/").TrimStart '/'



    let directories =

        path

        |> System.IO.Directory.GetDirectories

        |> Array.toList

        |> List.sort

        |> List.map (scanDirectory false basePath)

    let files =

        path

        |> System.IO.Directory.GetFiles

        |> Array.toList

        |> List.sort

        |> List.map (fun f -> File (System.IO.Path.GetFileName f, relativePath, 

System.IO.FileInfo(f).Length))



    let children = directories @ files

    if isRoot

    then Root children

    else Folder (path |> System.IO.Path.GetFileName, relativePath, children)



let rec generateHtml fsNode =

    let sizeLabel size =

        match float size with

        | size when size > 1024.0 * 1024.0 -> $"%.2f{size / 1024.0 / 1024.0} MB"

        | size when size > 1024.0 -> $"%.2f{size / 1024.0} KB"

        | size -> $"%.2f{size} B"

    match fsNode with

    | File (fileName, relativePath, size) ->

        Elem.div [[]] [[

            Text.raw "&#128196; "

            Elem.a [[

                Attr.href $"""{relativePath}{if relativePath = "" then "" else 

"/"}{fileName}"""

            ]] [[

                Text.raw fileName

            ]]

            Elem.span [[]] [[

                Text.raw $" ({size |> sizeLabel})"

            ]]

        ]]

    | Folder (folderName, relativePath, children) ->

        let size =

            let rec loop children =

                children

                |> List.sumBy (function

                    | File (_, _, size) -> size

                    | Folder (_, _, children)

                    | Root children -> loop children

                )

            loop children

        Elem.details [[

            Attr.open' "true"

        ]] [[

            Elem.summary [[]] [[

                Text.raw "&#128194; "

                Elem.a [[

                    Attr.href relativePath

                ]] [[

                    Text.raw folderName

                ]]

                Elem.span [[]] [[

                    Text.raw $" ({size |> sizeLabel})"

                ]]

            ]]

            Elem.div [[]] [[

                yield! children |> List.map generateHtml

            ]]

        ]]

    | Root children ->

        Elem.div [[]] [[

            yield! children |> List.map generateHtml

        ]]



let generateHtmlForFileSystem root =

    $"""<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <style>

body {{

    background-color: #222;

    color: #ccc;

}}

a {{

  color: #777;

  font-size: 15px;

}}

span {{

  font-size: 11px;

}}

div > div {{

  padding-left: 10px;

}}

details > div {{

  padding-left: 19px;

}}

  </style>

</head>

<body>

  {root |> generateHtml |> renderNode}

</body>

</html>

"""



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let tempFolder = FileSystem.createTempDirectory ()

let rec loop d n = async {

    if n >= 0 then

        tempFolder </> d |> System.IO.Directory.CreateDirectory |> ignore

        do!

            n

            |> string

            |> String.replicate (n + 1)

            |> FileSystem.writeAllTextAsync (tempFolder </> d </> $"file.txt")

        do! loop $"{d}/{n}" (n - 1)

}

loop "_.root" 3

|> Async.RunSynchronously



let html =

    scanDirectory true tempFolder tempFolder

    |> generateHtmlForFileSystem



html

|> _equal """<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <style>

body {

    background-color: #222;

    color: #ccc;

}

a {

  color: #777;

  font-size: 15px;

}

span {

  font-size: 11px;

}

div > div {

  padding-left: 10px;

}

details > div {

  padding-left: 19px;

}

  </style>

</head>

<body>

  <div><details open="true"><summary>&#128194; <a href="_.root">_.root</a><span>

(10.00 B)</span></summary><div><details open="true"><summary>&#128194; <a 

href="_.root/3">3</a><span> (6.00 B)</span></summary><div><details 

open="true"><summary>&#128194; <a href="_.root/3/2">2</a><span> (3.00 

B)</span></summary><div><details open="true"><summary>&#128194; <a 

href="_.root/3/2/1">1</a><span> (1.00 B)</span></summary><div><div>&#128196; <a 

href="_.root/3/2/1/file.txt">file.txt</a><span> (1.00 

B)</span></div></div></details><div>&#128196; <a 

href="_.root/3/2/file.txt">file.txt</a><span> (2.00 

B)</span></div></div></details><div>&#128196; <a 

href="_.root/3/file.txt">file.txt</a><span> (3.00 

B)</span></div></div></details><div>&#128196; <a 

href="_.root/file.txt">file.txt</a><span> (4.00 

B)</span></div></div></details></div>

</body>

</html>

"""



html |> Microsoft.DotNet.Interactive.Formatting.Html.ToHtmlContent



╭─[ 174.72ms - return value ]──────────────────────────────────────────────────╮

│ <!DOCTYPE html>                                                              │

│ <html lang="en">                                                             │

│ <head>                                                                       │

│   <meta charset="UTF-8">                                                     │

│   <style>                                                                    │

│ body {                                                                       │

│     background-color: #222;                                                  │

│     color: #ccc;                                                             │

│ }                                                                            │

│ a {                                                                          │

│   color: #777;                                                               │

│   font-size: 15px;                                                           │

│ }                                                                            │

│ span {                                                                       │

│   font-size: 11px;                                                           │

│ }                                                                            │

│ div > div {                                                                  │

│   padding-left: 10px;                                                        │

│ }                                                                            │

│ details > div {                                                              │

│   padding-left: 19px;                                                        │

│ }                                                                            │

│   </style>                                                                   │

│ </head>                                                                      │

│ <body>                                                                       │

│   <div><details open="true"><summary>&#128194; <a                            │

│ href="_.root">_.root</a><span> (10.00 B)</span></summary><div><details       │

│ open="true"><summary>&#128194; <a href="_.root/3">3</a><span> (6.00          │

│ B)</span></summary><div><details open="true"><summary>&#128194; <a           │

│ href="_.root/3/2">2</a><span> (3.00 B)</span></summary><div><details         │

│ open="true"><summary>&#128194; <a href="_.root/3/2/1">1</a><span> (1.00      │

│ B)</span></summary><div><div>&#128196; <a href="_.root...                    │

╰──────────────────────────────────────────────────────────────────────────────╯



╭─[ 191.63ms - stdout ]────────────────────────────────────────────────────────╮

│ <!DOCTYPE html>                                                              │

│ <html lang="en">                                                             │

│ <head>                                                                       │

│   <meta charset="UTF-8">                                                     │

│   <style>                                                                    │

│ body {                                                                       │

│     background-color: #222;                                                  │

│     color: #ccc;                                                             │

│ }                                                                            │

│ a {                                                                          │

│   color: #777;                                                               │

│   font-size: 15px;                                                           │

│ }                                                                            │

│ span {                                                                       │

│   font-size: 11px;                                                           │

│ }                                                                            │

│ div > div {                                                                  │

│   padding-left: 10px;                                                        │

│ }                                                                            │

│ details > div {                                                              │

│   padding-left: 19px;                                                        │

│ }                                                                            │

│   </style>                                                                   │

│ </head>                                                                      │

│ <body>                                                                       │

│   <div><details open="true"><summary>&#128194; <a                            │

│ href="_.root">_.root</a><span> (10.00 B)</span></summary><div><details       │

│ open="true"><summary>&#128194; <a href="_.root/3">3</a><span> (6.00          │

│ B)</span></summary><div><details open="true"><summary>&#128194; <a           │

│ href="_.root/3/2">2</a><span> (3.00 B)</span></summary><div><details         │

│ open="true"><summary>&#128194; <a href="_.root/3/2/1">1</a><span> (1.00      │

│ B)</span></summary><div><div>&#128196; <a                                    │

│ href="_.root/3/2/1/file.txt">file.txt</a><span> (1.00                        │

│ B)</span></div></div></details><div>&#128196; <a                             │

│ href="_.root/3/2/file.txt">file.txt</a><span> (2.00                          │

│ B)</span></div></div></details><div>&#128196; <a                             │

│ href="_.root/3/file.txt">file.txt</a><span> (3.00                            │

│ B)</span></div></div></details><div>&#128196; <a                             │

│ href="_.root/file.txt">file.txt</a><span> (4.00                              │

│ B)</span></div></div></details></div>                                        │

│ </body>                                                                      │

│ </html>                                                                      │

│                                                                              │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## Arguments                                                                 │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

[[<RequireQualifiedAccess>]]

type Arguments =

    | [[<Argu.ArguAttributes.ExactlyOnce>]] Dir of string

    | [[<Argu.ArguAttributes.ExactlyOnce>]] Html of string



    interface Argu.IArgParserTemplate with

        member s.Usage =

            match s with

            | Dir _ -> nameof Dir

            | Html _ -> nameof Html



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



Argu.ArgumentParser.Create<Arguments>().PrintUsage ()



╭─[ 123.55ms - return value ]──────────────────────────────────────────────────╮

│ USAGE: dotnet.exe [--help] --dir <string> --html <string>                    │

│                                                                              │

│ OPTIONS:                                                                     │

│                                                                              │

│     --dir <string>        Dir                                                │

│     --html <string>       Html                                               │

│     --help                display this list of options.                      │

│                                                                              │

╰──────────────────────────────────────────────────────────────────────────────╯



── markdown ────────────────────────────────────────────────────────────────────

╭──────────────────────────────────────────────────────────────────────────────╮

│ ## main                                                                      │

╰──────────────────────────────────────────────────────────────────────────────╯



── fsharp ──────────────────────────────────────────────────────────────────────

let main args =

    let argsMap = args |> Runtime.parseArgsMap<Arguments>



    let dir =

        match argsMap.[[nameof Arguments.Dir]] with

        | [[ Arguments.Dir dir ]] -> Some dir

        | _ -> None

        |> Option.get



    let htmlPath =

        match argsMap.[[nameof Arguments.Html]] with

        | [[ Arguments.Html html ]] -> Some html

        | _ -> None

        |> Option.get



    let fileSystem = scanDirectory true dir dir

    let html = generateHtmlForFileSystem fileSystem



    html |> FileSystem.writeAllTextAsync htmlPath

    |> Async.runWithTimeout 30000

    |> function

        | Some () -> 0

        | None -> 1



── fsharp ──────────────────────────────────────────────────────────────────────

//// test



let args =

    System.Environment.GetEnvironmentVariable "ARGS"

    |> Runtime.splitArgs

    |> Seq.toArray



match args with

| [[||]] -> 0

| args -> if main args = 0 then 0 else failwith "main failed"



╭─[ 66.72ms - return value ]───────────────────────────────────────────────────╮

│ <div class="dni-plaintext"><pre>0</pre></div><style>                         │

│ .dni-code-hint {                                                             │

│     font-style: italic;                                                      │

│     overflow: hidden;                                                        │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview {                                                              │

│     white-space: nowrap;                                                     │

│ }                                                                            │

│ .dni-treeview td {                                                           │

│     vertical-align: top;                                                     │

│     text-align: start;                                                       │

│ }                                                                            │

│ details.dni-treeview {                                                       │

│     padding-left: 1em;                                                       │

│ }                                                                            │

│ table td {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ table tr {                                                                   │

│     vertical-align: top;                                                     │

│     margin: 0em 0px;                                                         │

│ }                                                                            │

│ table tr td pre                                                              │

│ {                                                                            │

│     vertical-align: top !important;                                          │

│     margin: 0em 0px !important;                                              │

│ }                                                                            │

│ table th {                                                                   │

│     text-align: start;                                                       │

│ }                                                                            │

│ </style>                                                                     │

╰──────────────────────────────────────────────────────────────────────────────╯

[NbConvertApp] Converting notebook DirTreeHtml.dib.ipynb to html

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbformat\__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.

  validate(nb)

C:\Users\i574n\scoop\apps\python\current\Lib\site-packages\nbconvert\filters\highlight.py:71: UserWarning: IPython3 lexer unavailable, falling back on Python 3

  return _pygments_highlight(

[NbConvertApp] Writing 308616 bytes to DirTreeHtml.dib.html

00:00:00 #1 [Debug] writeDibCode / output: Fs / path: DirTreeHtml.dib

00:00:00 #2 [Debug] parseDibCode / output: Fs / file: DirTreeHtml.dib

00:00:00 #1 [Debug] persistCodeProject / packages: [Argu; Falco.Markup; FSharp.Control.AsyncSeq; ... ] / modules: [lib/fsharp/Common.fs; lib/fsharp/CommonFSharp.fs; lib/fsharp/Async.fs; ... ] / name: DirTreeHtml / code.Length: 4478

00:00:00 #2 [Debug] buildProject / fullPath: C:\home\git\polyglot\target\polyglot\builder\DirTreeHtml\DirTreeHtml.fsproj

00:00:00 #3 [Debug] executeAsync / options: { Command =

   "dotnet publish "C:\home\git\polyglot\target/polyglot/builder\DirTreeHtml\DirTreeHtml.fsproj" --configuration Release --output "C:\home\git\polyglot\apps\dir-tree-html\dist" --runtime linux-x64"

  WorkingDirectory =

   Some "C:\home\git\polyglot\target\polyglot\builder\DirTreeHtml"

  CancellationToken = None

  OnLine = None }

00:00:00 #4 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET

00:00:01 #5 [Verbose] >   Determining projects to restore...

00:00:02 #6 [Verbose] >   Paket version 8.0.0-alpha002+6339fce88f07b4d959d03b78330fdb5a6d936483

00:00:02 #7 [Verbose] >   The last full restore is still up to date. Nothing left to do.

00:00:02 #8 [Verbose] >   Total time taken: 0 milliseconds

00:00:03 #9 [Verbose] >   Paket version 8.0.0-alpha002+6339fce88f07b4d959d03b78330fdb5a6d936483

00:00:04 #10 [Verbose] >   Restoring C:\home\git\polyglot\target\polyglot\builder\DirTreeHtml\DirTreeHtml.fsproj

00:00:04 #11 [Verbose] >   Starting restore process.

00:00:04 #12 [Verbose] >   Total time taken: 0 milliseconds

00:00:09 #13 [Verbose] >   Restored C:\home\git\polyglot\target\polyglot\builder\DirTreeHtml\DirTreeHtml.fsproj (in 4.5 sec).

00:00:18 #14 [Verbose] >   DirTreeHtml -> C:\home\git\polyglot\target\polyglot\builder\DirTreeHtml\bin\Release\net8.0\linux-x64\DirTreeHtml.dll

00:00:20 #15 [Verbose] >   DirTreeHtml -> C:\home\git\polyglot\apps\dir-tree-html\dist\

00:00:20 #16 [Debug] executeAsync / exitCode: 0 / output.Length: 756

00:00:20 #17 [Debug] executeAsync / options: { Command =

   "dotnet publish "C:\home\git\polyglot\target/polyglot/builder\DirTreeHtml\DirTreeHtml.fsproj" --configuration Release --output "C:\home\git\polyglot\apps\dir-tree-html\dist" --runtime win-x64"

  WorkingDirectory =

   Some "C:\home\git\polyglot\target\polyglot\builder\DirTreeHtml"

  CancellationToken = None

  OnLine = None }

00:00:20 #18 [Verbose] > MSBuild version 17.8.3+195e7f5a3 for .NET

00:00:21 #19 [Verbose] >   Determining projects to restore...

00:00:22 #20 [Verbose] >   Restored C:\home\git\polyglot\target\polyglot\builder\DirTreeHtml\DirTreeHtml.fsproj (in 497 ms).

00:00:31 #21 [Verbose] >   DirTreeHtml -> C:\home\git\polyglot\target\polyglot\builder\DirTreeHtml\bin\Release\net8.0\win-x64\DirTreeHtml.dll

00:00:35 #22 [Verbose] >   DirTreeHtml -> C:\home\git\polyglot\apps\dir-tree-html\dist\

00:00:35 #23 [Debug] executeAsync / exitCode: 0 / output.Length: 358

In [ ]:
{ . "$ScriptDir/../apps/ipfs/build.ps1" } | Invoke-Block
Lockfile is up to date, resolution step is skipped

Already up to date



Done in 2.4s

In [ ]:
{ . "$ScriptDir/outdated.ps1" } | Invoke-Block
Paket version 8.0.0-alpha002+6339fce88f07b4d959d03b78330fdb5a6d936483

Resolving dependency graph...

Outdated packages found:

  Group: Main

    * Expecto.FsCheck 10.1.0-fscheck3 -> 10.1.0

    * FsCheck 3.0.0-rc1 -> 2.16.6

    * Microsoft.AspNetCore.Connections.Abstractions 7.0 -> 8.0.1

    * Microsoft.AspNetCore.Http.Connections.Client 7.0 -> 8.0.1

    * Microsoft.AspNetCore.Http.Connections.Common 7.0 -> 8.0.1

    * Microsoft.AspNetCore.SignalR.Client 7.0 -> 8.0.1

    * Microsoft.AspNetCore.SignalR.Client.Core 7.0 -> 8.0.1

    * Microsoft.AspNetCore.SignalR.Common 7.0 -> 8.0.1

    * Microsoft.AspNetCore.SignalR.Protocols.Json 7.0 -> 8.0.1

    * Microsoft.Extensions.Features 7.0 -> 8.0.1

Total time taken: 1 minute, 24 seconds


CheckToml / toml: C:\home\git\polyglot\Cargo.toml

chat_contract

================

Name                        Project                        Compat   Latest   Kind    Platform

----                        -------                        ------   ------   ----    --------

ahash                       0.7.7                          ---      0.8.7    Normal  ---

ahash                       0.8.7                          0.7.7    ---      Normal  ---

allocator-api2              0.2.16                         Removed  ---      Normal  ---

autocfg                     1.1.0                          ---      Removed  Build   ---

bumpalo                     3.14.0                         ---      Removed  Normal  ---

cfg-if                      1.0.0                          ---      Removed  Normal  ---

cfg-if                      1.0.0                          Removed  ---      Normal  ---

equivalent                  1.0.1                          Removed  ---      Normal  ---

getrandom                   0.2.12                         ---      Removed  Normal  cfg(any(target_os = "linux", target_os = "android", target_os = "windows", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonfly", target_os = "solaris", target_os = "illumos", target_os = "fuchsia", target_os = "redox", target_os = "cloudabi", target_os = "haiku", target_os = "vxworks", target_os = "emscripten", target_os = "wasi"))

hashbrown                   0.12.3                         ---      0.14.3   Normal  ---

hashbrown                   0.14.3                         0.12.3   ---      Normal  ---

indexmap                    1.9.3                          ---      2.2.1    Normal  ---

indexmap                    2.2.1                          1.9.3    ---      Normal  ---

js-sys                      0.3.67                         ---      Removed  Normal  cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

libc                        0.2.152                        ---      Removed  Normal  cfg(unix)

log                         0.4.20                         ---      Removed  Normal  ---

once_cell                   1.19.0                         ---      Removed  Normal  ---

proc-macro2                 1.0.78                         ---      Removed  Normal  ---

proc-macro2                 1.0.78                         Removed  ---      Normal  ---

quote                       1.0.35                         ---      Removed  Normal  ---

quote                       1.0.35                         Removed  ---      Normal  ---

syn                         2.0.48                         ---      Removed  Normal  ---

syn                         2.0.48                         Removed  ---      Normal  ---

unicode-ident               1.0.12                         ---      Removed  Normal  ---

unicode-ident               1.0.12                         Removed  ---      Normal  ---

wasi                        0.11.0+wasi-snapshot-preview1  ---      Removed  Normal  cfg(target_os = "wasi")

wasm-bindgen                0.2.90                         ---      Removed  Normal  ---

wasm-bindgen                0.2.90                         ---      Removed  Normal  cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

wasm-bindgen-backend        0.2.90                         ---      Removed  Normal  ---

wasm-bindgen-macro          0.2.90                         ---      Removed  Normal  ---

wasm-bindgen-macro-support  0.2.90                         ---      Removed  Normal  ---

wasm-bindgen-shared         0.2.90                         ---      Removed  Normal  ---

zerocopy                    0.7.32                         Removed  ---      Normal  ---

zerocopy-derive             0.7.32                         Removed  ---      Normal  ---



chat_contract_tests

================

Name                        Project                        Compat   Latest   Kind    Platform

----                        -------                        ------   ------   ----    --------

ahash                       0.7.7                          ---      0.8.7    Normal  ---

ahash                       0.8.7                          0.7.7    ---      Normal  ---

allocator-api2              0.2.16                         Removed  ---      Normal  ---

autocfg                     1.1.0                          ---      Removed  Build   ---

bumpalo                     3.14.0                         ---      Removed  Normal  ---

cfg-if                      1.0.0                          ---      Removed  Normal  ---

cfg-if                      1.0.0                          Removed  ---      Normal  ---

equivalent                  1.0.1                          Removed  ---      Normal  ---

getrandom                   0.2.12                         ---      Removed  Normal  cfg(any(target_os = "linux", target_os = "android", target_os = "windows", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonfly", target_os = "solaris", target_os = "illumos", target_os = "fuchsia", target_os = "redox", target_os = "cloudabi", target_os = "haiku", target_os = "vxworks", target_os = "emscripten", target_os = "wasi"))

hashbrown                   0.12.3                         ---      0.14.3   Normal  ---

hashbrown                   0.14.3                         0.12.3   ---      Normal  ---

indexmap                    1.9.3                          ---      2.2.1    Normal  ---

indexmap                    2.2.1                          1.9.3    ---      Normal  ---

js-sys                      0.3.67                         ---      Removed  Normal  cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

libc                        0.2.152                        ---      Removed  Normal  cfg(unix)

log                         0.4.20                         ---      Removed  Normal  ---

once_cell                   1.19.0                         ---      Removed  Normal  ---

proc-macro2                 1.0.78                         ---      Removed  Normal  ---

proc-macro2                 1.0.78                         Removed  ---      Normal  ---

quote                       1.0.35                         ---      Removed  Normal  ---

quote                       1.0.35                         Removed  ---      Normal  ---

syn                         2.0.48                         ---      Removed  Normal  ---

syn                         2.0.48                         Removed  ---      Normal  ---

unicode-ident               1.0.12                         ---      Removed  Normal  ---

unicode-ident               1.0.12                         Removed  ---      Normal  ---

wasi                        0.11.0+wasi-snapshot-preview1  ---      Removed  Normal  cfg(target_os = "wasi")

wasm-bindgen                0.2.90                         ---      Removed  Normal  ---

wasm-bindgen                0.2.90                         ---      Removed  Normal  cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

wasm-bindgen-backend        0.2.90                         ---      Removed  Normal  ---

wasm-bindgen-macro          0.2.90                         ---      Removed  Normal  ---

wasm-bindgen-macro-support  0.2.90                         ---      Removed  Normal  ---

wasm-bindgen-shared         0.2.90                         ---      Removed  Normal  ---

zerocopy                    0.7.32                         Removed  ---      Normal  ---

zerocopy-derive             0.7.32                         Removed  ---      Normal  ---



dice_contract

================

Name                        Project                        Compat   Latest   Kind    Platform

----                        -------                        ------   ------   ----    --------

ahash                       0.7.7                          ---      0.8.7    Normal  ---

ahash                       0.8.7                          0.7.7    ---      Normal  ---

allocator-api2              0.2.16                         Removed  ---      Normal  ---

autocfg                     1.1.0                          ---      Removed  Build   ---

bumpalo                     3.14.0                         ---      Removed  Normal  ---

cfg-if                      1.0.0                          ---      Removed  Normal  ---

cfg-if                      1.0.0                          Removed  ---      Normal  ---

equivalent                  1.0.1                          Removed  ---      Normal  ---

getrandom                   0.2.12                         ---      Removed  Normal  cfg(any(target_os = "linux", target_os = "android", target_os = "windows", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonfly", target_os = "solaris", target_os = "illumos", target_os = "fuchsia", target_os = "redox", target_os = "cloudabi", target_os = "haiku", target_os = "vxworks", target_os = "emscripten", target_os = "wasi"))

hashbrown                   0.12.3                         ---      0.14.3   Normal  ---

hashbrown                   0.14.3                         0.12.3   ---      Normal  ---

indexmap                    1.9.3                          ---      2.2.1    Normal  ---

indexmap                    2.2.1                          1.9.3    ---      Normal  ---

js-sys                      0.3.67                         ---      Removed  Normal  cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

libc                        0.2.152                        ---      Removed  Normal  cfg(unix)

log                         0.4.20                         ---      Removed  Normal  ---

once_cell                   1.19.0                         ---      Removed  Normal  ---

proc-macro2                 1.0.78                         ---      Removed  Normal  ---

proc-macro2                 1.0.78                         Removed  ---      Normal  ---

quote                       1.0.35                         ---      Removed  Normal  ---

quote                       1.0.35                         Removed  ---      Normal  ---

syn                         2.0.48                         ---      Removed  Normal  ---

syn                         2.0.48                         Removed  ---      Normal  ---

unicode-ident               1.0.12                         ---      Removed  Normal  ---

unicode-ident               1.0.12                         Removed  ---      Normal  ---

wasi                        0.11.0+wasi-snapshot-preview1  ---      Removed  Normal  cfg(target_os = "wasi")

wasm-bindgen                0.2.90                         ---      Removed  Normal  ---

wasm-bindgen                0.2.90                         ---      Removed  Normal  cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

wasm-bindgen-backend        0.2.90                         ---      Removed  Normal  ---

wasm-bindgen-macro          0.2.90                         ---      Removed  Normal  ---

wasm-bindgen-macro-support  0.2.90                         ---      Removed  Normal  ---

wasm-bindgen-shared         0.2.90                         ---      Removed  Normal  ---

zerocopy                    0.7.32                         Removed  ---      Normal  ---

zerocopy-derive             0.7.32                         Removed  ---      Normal  ---



dice_contract_tests

================

Name                        Project                        Compat   Latest   Kind    Platform

----                        -------                        ------   ------   ----    --------

ahash                       0.7.7                          ---      0.8.7    Normal  ---

ahash                       0.8.7                          0.7.7    ---      Normal  ---

allocator-api2              0.2.16                         Removed  ---      Normal  ---

autocfg                     1.1.0                          ---      Removed  Build   ---

bumpalo                     3.14.0                         ---      Removed  Normal  ---

cfg-if                      1.0.0                          ---      Removed  Normal  ---

cfg-if                      1.0.0                          Removed  ---      Normal  ---

equivalent                  1.0.1                          Removed  ---      Normal  ---

getrandom                   0.2.12                         ---      Removed  Normal  cfg(any(target_os = "linux", target_os = "android", target_os = "windows", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonfly", target_os = "solaris", target_os = "illumos", target_os = "fuchsia", target_os = "redox", target_os = "cloudabi", target_os = "haiku", target_os = "vxworks", target_os = "emscripten", target_os = "wasi"))

hashbrown                   0.12.3                         ---      0.14.3   Normal  ---

hashbrown                   0.14.3                         0.12.3   ---      Normal  ---

indexmap                    1.9.3                          ---      2.2.1    Normal  ---

indexmap                    2.2.1                          1.9.3    ---      Normal  ---

js-sys                      0.3.67                         ---      Removed  Normal  cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

libc                        0.2.152                        ---      Removed  Normal  cfg(unix)

log                         0.4.20                         ---      Removed  Normal  ---

once_cell                   1.19.0                         ---      Removed  Normal  ---

proc-macro2                 1.0.78                         ---      Removed  Normal  ---

proc-macro2                 1.0.78                         Removed  ---      Normal  ---

quote                       1.0.35                         ---      Removed  Normal  ---

quote                       1.0.35                         Removed  ---      Normal  ---

syn                         2.0.48                         ---      Removed  Normal  ---

syn                         2.0.48                         Removed  ---      Normal  ---

unicode-ident               1.0.12                         ---      Removed  Normal  ---

unicode-ident               1.0.12                         Removed  ---      Normal  ---

wasi                        0.11.0+wasi-snapshot-preview1  ---      Removed  Normal  cfg(target_os = "wasi")

wasm-bindgen                0.2.90                         ---      Removed  Normal  ---

wasm-bindgen                0.2.90                         ---      Removed  Normal  cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

wasm-bindgen-backend        0.2.90                         ---      Removed  Normal  ---

wasm-bindgen-macro          0.2.90                         ---      Removed  Normal  ---

wasm-bindgen-macro-support  0.2.90                         ---      Removed  Normal  ---

wasm-bindgen-shared         0.2.90                         ---      Removed  Normal  ---

zerocopy                    0.7.32                         Removed  ---      Normal  ---

zerocopy-derive             0.7.32                         Removed  ---      Normal  ---



extension

================

Name      Project  Compat  Latest  Kind    Platform

----      -------  ------  ------  ----    --------

gloo-net  0.4.0    ---     0.5.0   Normal  ---


CheckToml / toml: C:\home\git\polyglot\apps\chat\contract\Cargo.toml

Name                                              Project                        Compat   Latest   Kind         Platform

----                                              -------                        ------   ------   ----         --------

actix->tokio                                      1.35.1                         1.36.0   1.36.0   Normal       ---

actix-rt->tokio                                   1.35.1                         1.36.0   1.36.0   Normal       ---

ahash->getrandom                                  0.2.12                         Removed  Removed  Normal       cfg(any(target_os = "linux", target_os = "android", target_os = "windows", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonfly", target_os = "solaris", target_os = "illumos", target_os = "fuchsia", target_os = "redox", target_os = "cloudabi", target_os = "haiku", target_os = "vxworks", target_os = "emscripten", target_os = "wasi"))

android_system_properties->libc                   0.2.152                        0.2.153  0.2.153  Normal       ---

anstream->anstyle                                 1.0.5                          1.0.6    1.0.6    Normal       ---

anstyle-wincon->anstyle                           1.0.5                          1.0.6    1.0.6    Normal       ---

backtrace->libc                                   0.2.152                        0.2.153  0.2.153  Normal       cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))

backtrace->miniz_oxide                            0.7.1                          0.7.2    0.7.2    Normal       cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))

cc->jobserver                                     0.1.27                         0.1.28   0.1.28   Normal       ---

cc->libc                                          0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

chrono->iana-time-zone                            0.1.59                         0.1.60   0.1.60   Normal       cfg(unix)

chrono->js-sys                                    0.3.67                         0.3.68   0.3.68   Normal       cfg(all(target_arch = "wasm32", not(any(target_os = "emscripten", target_os = "wasi"))))

chrono->num-traits                                0.2.17                         0.2.18   0.2.18   Normal       ---

chrono->wasm-bindgen                              0.2.90                         0.2.91   0.2.91   Normal       cfg(all(target_arch = "wasm32", not(any(target_os = "emscripten", target_os = "wasi"))))

clap->clap_builder                                4.4.18                         4.5.0    4.5.0    Normal       ---

clap->clap_derive                                 4.4.7                          4.5.0    4.5.0    Normal       ---

clap_builder->anstyle                             1.0.5                          1.0.6    1.0.6    Normal       ---

clap_builder->clap_lex                            0.6.0                          0.7.0    0.7.0    Normal       ---

clap_builder->strsim                              0.10.0                         0.11.0   0.11.0   Normal       ---

cpufeatures->libc                                 0.2.152                        0.2.153  0.2.153  Normal       aarch64-linux-android

curve25519-dalek->fiat-crypto                     0.2.5                          0.2.6    0.2.6    Normal       cfg(curve25519_dalek_backend = "fiat")

darling->darling_core                             0.20.3                         0.20.5   0.20.5   Normal       ---

darling->darling_macro                            0.20.3                         0.20.5   0.20.5   Normal       ---

darling_macro->darling_core                       0.20.3                         0.20.5   0.20.5   Normal       ---

ed25519-dalek->curve25519-dalek                   4.1.1                          4.1.2    4.1.2    Normal       ---

errno->libc                                       0.2.152                        0.2.153  0.2.153  Normal       cfg(target_os = "hermit")

fs2->libc                                         0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

getrandom->cfg-if                                 1.0.0                          Removed  Removed  Normal       ---

getrandom->js-sys                                 0.3.67                         0.3.68   0.3.68   Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

getrandom->js-sys                                 0.3.67                         Removed  Removed  Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

getrandom->libc                                   0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

getrandom->libc                                   0.2.152                        Removed  Removed  Normal       cfg(unix)

getrandom->wasi                                   0.11.0+wasi-snapshot-preview1  Removed  Removed  Normal       cfg(target_os = "wasi")

getrandom->wasm-bindgen                           0.2.90                         0.2.91   0.2.91   Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

getrandom->wasm-bindgen                           0.2.90                         Removed  Removed  Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

h2->indexmap                                      2.2.1                          2.2.2    2.2.2    Normal       ---

h2->tokio                                         1.35.1                         1.36.0   1.36.0   Normal       ---

hashbrown->ahash                                  0.7.7                          0.8.7    0.8.7    Normal       ---

heck->unicode-segmentation                        1.10.1                         1.11.0   1.11.0   Normal       ---

hyper->tokio                                      1.35.1                         1.36.0   1.36.0   Normal       ---

hyper-timeout->tokio                              1.35.1                         1.36.0   1.36.0   Normal       ---

iana-time-zone->js-sys                            0.3.67                         0.3.68   0.3.68   Normal       cfg(target_arch = "wasm32")

iana-time-zone->wasm-bindgen                      0.2.90                         0.2.91   0.2.91   Normal       cfg(target_arch = "wasm32")

indexmap->autocfg                                 1.1.0                          Removed  Removed  Build        ---

indexmap->hashbrown                               0.12.3                         0.14.3   0.14.3   Normal       ---

jobserver->libc                                   0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

js-sys->wasm-bindgen                              0.2.90                         0.2.91   0.2.91   Normal       ---

js-sys->wasm-bindgen                              0.2.90                         Removed  Removed  Normal       ---

mio->libc                                         0.2.152                        0.2.153  0.2.153  Normal       cfg(target_os = "wasi")

near-crypto->curve25519-dalek                     4.1.1                          4.1.2    4.1.2    Normal       ---

near-crypto->ed25519-dalek                        2.1.0                          2.1.1    2.1.1    Normal       ---

near-o11y->actix                                  0.13.1                         0.13.3   0.13.3   Normal       ---

near-o11y->clap                                   4.4.18                         4.5.0    4.5.0    Normal       ---

near-o11y->tokio                                  1.35.1                         1.36.0   1.36.0   Normal       ---

near-primitives->serde_with                       3.5.1                          3.6.0    3.6.0    Normal       ---

near-primitives->time                             0.3.31                         0.3.34   0.3.34   Normal       ---

near-primitives-core->serde_with                  3.5.1                          3.6.0    3.6.0    Normal       ---

near-sdk-macros->darling                          0.20.3                         0.20.5   0.20.5   Normal       ---

near-vm-runner->ed25519-dalek                     2.1.0                          2.1.1    2.1.1    Normal       ---

near-vm-runner->serde_with                        3.5.1                          3.6.0    3.6.0    Normal       ---

num-bigint->num-integer                           0.1.45                         0.1.46   0.1.46   Normal       ---

num-bigint->num-traits                            0.2.17                         0.2.18   0.2.18   Normal       ---

num-integer->autocfg                              1.1.0                          Removed  Removed  Build        ---

num-integer->num-traits                           0.2.17                         0.2.18   0.2.18   Normal       ---

num-rational->num-integer                         0.1.45                         0.1.46   0.1.46   Normal       ---

num-rational->num-traits                          0.2.17                         0.2.18   0.2.18   Normal       ---

num_cpus->hermit-abi                              0.3.4                          0.3.5    0.3.5    Normal       cfg(target_os = "hermit")

num_cpus->libc                                    0.2.152                        0.2.153  0.2.153  Normal       cfg(not(windows))

opentelemetry->js-sys                             0.3.67                         0.3.68   0.3.68   Normal       cfg(target_arch = "wasm32")

opentelemetry->tokio                              1.35.1                         1.36.0   1.36.0   Normal       ---

opentelemetry-otlp->tokio                         1.35.1                         1.36.0   1.36.0   Normal       ---

parking_lot_core->libc                            0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

petgraph->indexmap                                2.2.1                          2.2.2    2.2.2    Normal       ---

proc-macro-crate->toml_edit                       0.21.0                         0.21.1   0.21.1   Normal       ---

proc-macro2->unicode-ident                        1.0.12                         Removed  Removed  Normal       ---

prost-build->tempfile                             3.9.0                          3.10.0   3.10.0   Normal       ---

quote->proc-macro2                                1.0.78                         Removed  Removed  Normal       ---

rand->libc                                        0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

redox_syscall->bitflags                           1.3.2                          Removed  Removed  Normal       ---

rustix->libc                                      0.2.152                        0.2.153  0.2.153  Development  ---

serde_with->indexmap                              1.9.3                          2.2.2    2.2.2    Normal       ---

serde_with->indexmap                              2.2.1                          2.2.2    2.2.2    Normal       ---

serde_with->serde_with_macros                     3.5.1                          3.6.0    3.6.0    Normal       ---

serde_with->time                                  0.3.31                         0.3.34   0.3.34   Normal       ---

serde_with_macros->darling                        0.20.3                         0.20.5   0.20.5   Normal       ---

serde_yaml->indexmap                              2.2.1                          2.2.2    2.2.2    Normal       ---

signal-hook-registry->libc                        0.2.152                        0.2.153  0.2.153  Normal       ---

socket2->libc                                     0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

syn->proc-macro2                                  1.0.78                         Removed  Removed  Normal       ---

syn->quote                                        1.0.35                         Removed  Removed  Normal       ---

syn->unicode-ident                                1.0.12                         Removed  Removed  Normal       ---

tempfile->redox_syscall                           0.4.1                          Removed  Removed  Normal       cfg(target_os = "redox")

tempfile->rustix                                  0.38.30                        0.38.31  0.38.31  Normal       cfg(any(unix, target_os = "wasi"))

time->time-macros                                 0.2.16                         0.2.17   0.2.17   Normal       ---

tokio->libc                                       0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

tokio-io-timeout->tokio                           1.35.1                         1.36.0   1.36.0   Normal       ---

tokio-stream->tokio                               1.35.1                         1.36.0   1.36.0   Normal       ---

tokio-util->tokio                                 1.35.1                         1.36.0   1.36.0   Normal       ---

toml_edit->indexmap                               2.2.1                          2.2.2    2.2.2    Normal       ---

toml_edit->winnow                                 0.5.35                         0.5.39   0.5.39   Normal       ---

tonic->tokio                                      1.35.1                         1.36.0   1.36.0   Normal       ---

tower->tokio                                      1.35.1                         1.36.0   1.36.0   Normal       ---

tracing-appender->time                            0.3.31                         0.3.34   0.3.34   Normal       ---

wasm-bindgen->cfg-if                              1.0.0                          Removed  Removed  Normal       ---

wasm-bindgen->wasm-bindgen-macro                  0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen->wasm-bindgen-macro                  0.2.90                         Removed  Removed  Normal       ---

wasm-bindgen-backend->bumpalo                     3.14.0                         Removed  Removed  Normal       ---

wasm-bindgen-backend->log                         0.4.20                         Removed  Removed  Normal       ---

wasm-bindgen-backend->once_cell                   1.19.0                         Removed  Removed  Normal       ---

wasm-bindgen-backend->proc-macro2                 1.0.78                         Removed  Removed  Normal       ---

wasm-bindgen-backend->quote                       1.0.35                         Removed  Removed  Normal       ---

wasm-bindgen-backend->syn                         2.0.48                         Removed  Removed  Normal       ---

wasm-bindgen-backend->wasm-bindgen-shared         0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen-backend->wasm-bindgen-shared         0.2.90                         Removed  Removed  Normal       ---

wasm-bindgen-macro->quote                         1.0.35                         Removed  Removed  Normal       ---

wasm-bindgen-macro->wasm-bindgen-macro-support    0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen-macro->wasm-bindgen-macro-support    0.2.90                         Removed  Removed  Normal       ---

wasm-bindgen-macro-support->proc-macro2           1.0.78                         Removed  Removed  Normal       ---

wasm-bindgen-macro-support->quote                 1.0.35                         Removed  Removed  Normal       ---

wasm-bindgen-macro-support->syn                   2.0.48                         Removed  Removed  Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-backend  0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-backend  0.2.90                         Removed  Removed  Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-shared   0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-shared   0.2.90                         Removed  Removed  Normal       ---

wee_alloc->libc                                   0.2.152                        0.2.153  0.2.153  Normal       cfg(all(unix, not(target_arch = "wasm32")))

which->rustix                                     0.38.30                        0.38.31  0.38.31  Normal       ---


CheckToml / toml: C:\home\git\polyglot\apps\chat\contract\tests\Cargo.toml

Name                                              Project                        Compat   Latest   Kind         Platform

----                                              -------                        ------   ------   ----         --------

actix->tokio                                      1.35.1                         1.36.0   1.36.0   Normal       ---

actix-rt->tokio                                   1.35.1                         1.36.0   1.36.0   Normal       ---

ahash->cfg-if                                     1.0.0                          ---      Removed  Normal       ---

ahash->getrandom                                  0.2.12                         Removed  ---      Normal       cfg(any(target_os = "linux", target_os = "android", target_os = "windows", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonfly", target_os = "solaris", target_os = "illumos", target_os = "fuchsia", target_os = "redox", target_os = "cloudabi", target_os = "haiku", target_os = "vxworks", target_os = "emscripten", target_os = "wasi"))

ahash->zerocopy                                   0.7.32                         ---      Removed  Normal       ---

android_system_properties->libc                   0.2.152                        0.2.153  0.2.153  Normal       ---

anstream->anstyle                                 1.0.5                          1.0.6    1.0.6    Normal       ---

anstyle-wincon->anstyle                           1.0.5                          1.0.6    1.0.6    Normal       ---

atty->libc                                        0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

backtrace->libc                                   0.2.152                        0.2.153  0.2.153  Normal       cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))

backtrace->miniz_oxide                            0.7.1                          0.7.2    0.7.2    Normal       cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))

bzip2->libc                                       0.2.152                        0.2.153  0.2.153  Normal       ---

bzip2-sys->libc                                   0.2.152                        0.2.153  0.2.153  Normal       ---

cc->jobserver                                     0.1.27                         0.1.28   0.1.28   Normal       ---

cc->libc                                          0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

chrono->iana-time-zone                            0.1.59                         0.1.60   0.1.60   Normal       cfg(unix)

chrono->js-sys                                    0.3.67                         0.3.68   0.3.68   Normal       cfg(all(target_arch = "wasm32", not(any(target_os = "emscripten", target_os = "wasi"))))

chrono->num-traits                                0.2.17                         0.2.18   0.2.18   Normal       ---

chrono->wasm-bindgen                              0.2.90                         0.2.91   0.2.91   Normal       cfg(all(target_arch = "wasm32", not(any(target_os = "emscripten", target_os = "wasi"))))

clap->clap_builder                                4.4.18                         4.5.0    4.5.0    Normal       ---

clap->clap_derive                                 4.4.7                          4.5.0    4.5.0    Normal       ---

clap_builder->anstyle                             1.0.5                          1.0.6    1.0.6    Normal       ---

clap_builder->clap_lex                            0.6.0                          0.7.0    0.7.0    Normal       ---

clap_builder->strsim                              0.10.0                         0.11.0   0.11.0   Normal       ---

core-foundation->libc                             0.2.152                        0.2.153  0.2.153  Normal       ---

cpufeatures->libc                                 0.2.152                        0.2.153  0.2.153  Normal       aarch64-linux-android

curve25519-dalek->fiat-crypto                     0.2.5                          0.2.6    0.2.6    Normal       cfg(curve25519_dalek_backend = "fiat")

darling->darling_core                             0.20.3                         0.20.5   0.20.5   Normal       ---

darling->darling_macro                            0.20.3                         0.20.5   0.20.5   Normal       ---

darling_macro->darling_core                       0.20.3                         0.20.5   0.20.5   Normal       ---

dirs-sys-next->libc                               0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

ed25519-dalek->curve25519-dalek                   4.1.1                          4.1.2    4.1.2    Normal       ---

errno->libc                                       0.2.152                        0.2.153  0.2.153  Normal       cfg(target_os = "hermit")

filetime->libc                                    0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

flate2->miniz_oxide                               0.7.1                          0.7.2    0.7.2    Normal       ---

fs2->libc                                         0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

getrandom->cfg-if                                 1.0.0                          Removed  ---      Normal       ---

getrandom->js-sys                                 0.3.67                         0.3.68   0.3.68   Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

getrandom->js-sys                                 0.3.67                         Removed  0.3.68   Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

getrandom->libc                                   0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

getrandom->libc                                   0.2.152                        Removed  0.2.153  Normal       cfg(unix)

getrandom->wasi                                   0.11.0+wasi-snapshot-preview1  Removed  ---      Normal       cfg(target_os = "wasi")

getrandom->wasm-bindgen                           0.2.90                         0.2.91   0.2.91   Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

getrandom->wasm-bindgen                           0.2.90                         Removed  0.2.91   Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

h2->indexmap                                      2.2.1                          2.2.2    2.2.2    Normal       ---

h2->tokio                                         1.35.1                         1.36.0   1.36.0   Normal       ---

hashbrown->ahash                                  0.7.7                          0.8.7    ---      Normal       ---

hashbrown->ahash                                  0.8.7                          ---      0.7.7    Normal       ---

hashbrown->allocator-api2                         0.2.16                         ---      Removed  Normal       ---

heck->unicode-segmentation                        1.10.1                         1.11.0   1.11.0   Normal       ---

hermit-abi->libc                                  0.2.152                        0.2.153  0.2.153  Normal       ---

hyper->tokio                                      1.35.1                         1.36.0   1.36.0   Normal       ---

hyper-timeout->tokio                              1.35.1                         1.36.0   1.36.0   Normal       ---

hyper-tls->tokio                                  1.35.1                         1.36.0   1.36.0   Normal       ---

iana-time-zone->js-sys                            0.3.67                         0.3.68   0.3.68   Normal       cfg(target_arch = "wasm32")

iana-time-zone->wasm-bindgen                      0.2.90                         0.2.91   0.2.91   Normal       cfg(target_arch = "wasm32")

indexmap->autocfg                                 1.1.0                          Removed  ---      Build        ---

indexmap->equivalent                              1.0.1                          ---      Removed  Normal       ---

indexmap->hashbrown                               0.12.3                         0.14.3   ---      Normal       ---

indexmap->hashbrown                               0.14.3                         ---      0.12.3   Normal       ---

jobserver->libc                                   0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

js-sys->wasm-bindgen                              0.2.90                         0.2.91   0.2.91   Normal       ---

js-sys->wasm-bindgen                              0.2.90                         Removed  0.2.91   Normal       ---

json-patch->treediff                              4.0.2                          4.0.3    4.0.3    Normal       ---

libredox->libc                                    0.2.152                        0.2.153  0.2.153  Normal       ---

memmap2->libc                                     0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

mio->libc                                         0.2.152                        0.2.153  0.2.153  Normal       cfg(target_os = "wasi")

native-tls->libc                                  0.2.152                        0.2.153  0.2.153  Normal       cfg(any(target_os = "macos", target_os = "ios"))

native-tls->tempfile                              3.9.0                          3.10.0   3.10.0   Development  ---

near-crypto->curve25519-dalek                     4.1.1                          4.1.2    4.1.2    Normal       ---

near-crypto->ed25519-dalek                        2.1.0                          2.1.1    2.1.1    Normal       ---

near-jsonrpc-client->reqwest                      0.11.23                        0.11.24  0.11.24  Normal       ---

near-o11y->actix                                  0.13.1                         0.13.3   0.13.3   Normal       ---

near-o11y->clap                                   4.4.18                         4.5.0    4.5.0    Normal       ---

near-o11y->tokio                                  1.35.1                         1.36.0   1.36.0   Normal       ---

near-primitives->serde_with                       3.5.1                          3.6.0    3.6.0    Normal       ---

near-primitives->time                             0.3.31                         0.3.34   0.3.34   Normal       ---

near-primitives-core->serde_with                  3.5.1                          3.6.0    3.6.0    Normal       ---

near-sandbox-utils->tokio                         1.35.1                         1.36.0   1.36.0   Normal       ---

near-vm-runner->ed25519-dalek                     2.1.0                          2.1.1    2.1.1    Normal       ---

near-vm-runner->serde_with                        3.5.1                          3.6.0    3.6.0    Normal       ---

near-workspaces->libc                             0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

near-workspaces->reqwest                          0.11.23                        0.11.24  0.11.24  Normal       ---

near-workspaces->tempfile                         3.9.0                          3.10.0   3.10.0   Normal       ---

near-workspaces->tokio                            1.35.1                         1.36.0   1.36.0   Normal       ---

num-bigint->num-integer                           0.1.45                         0.1.46   0.1.46   Normal       ---

num-bigint->num-traits                            0.2.17                         0.2.18   0.2.18   Normal       ---

num-integer->autocfg                              1.1.0                          Removed  Removed  Build        ---

num-integer->num-traits                           0.2.17                         0.2.18   0.2.18   Normal       ---

num-rational->num-integer                         0.1.45                         0.1.46   0.1.46   Normal       ---

num-rational->num-traits                          0.2.17                         0.2.18   0.2.18   Normal       ---

num_cpus->hermit-abi                              0.3.4                          0.3.5    0.3.5    Normal       cfg(target_os = "hermit")

num_cpus->libc                                    0.2.152                        0.2.153  0.2.153  Normal       cfg(not(windows))

openssl->libc                                     0.2.152                        0.2.153  0.2.153  Normal       ---

openssl-sys->libc                                 0.2.152                        0.2.153  0.2.153  Normal       ---

opentelemetry->js-sys                             0.3.67                         0.3.68   0.3.68   Normal       cfg(target_arch = "wasm32")

opentelemetry->tokio                              1.35.1                         1.36.0   1.36.0   Normal       ---

opentelemetry-otlp->tokio                         1.35.1                         1.36.0   1.36.0   Normal       ---

parking_lot_core->libc                            0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

petgraph->indexmap                                2.2.1                          2.2.2    2.2.2    Normal       ---

proc-macro-crate->toml_edit                       0.21.0                         0.21.1   0.21.1   Normal       ---

proc-macro2->unicode-ident                        1.0.12                         ---      Removed  Normal       ---

proc-macro2->unicode-ident                        1.0.12                         Removed  ---      Normal       ---

prost-build->tempfile                             3.9.0                          3.10.0   3.10.0   Normal       ---

quote->proc-macro2                                1.0.78                         ---      Removed  Normal       ---

quote->proc-macro2                                1.0.78                         Removed  ---      Normal       ---

rand->libc                                        0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

redox_syscall->bitflags                           1.3.2                          Removed  Removed  Normal       ---

reqwest->js-sys                                   0.3.67                         0.3.68   0.3.68   Normal       cfg(target_arch = "wasm32")

reqwest->tokio                                    1.35.1                         1.36.0   1.36.0   Normal       cfg(not(target_arch = "wasm32"))

reqwest->wasm-bindgen                             0.2.90                         0.2.91   0.2.91   Normal       cfg(target_arch = "wasm32")

reqwest->wasm-bindgen-futures                     0.4.40                         0.4.41   0.4.41   Normal       cfg(target_arch = "wasm32")

reqwest->web-sys                                  0.3.67                         0.3.68   0.3.68   Normal       cfg(target_arch = "wasm32")

ring->libc                                        0.2.152                        0.2.153  0.2.153  Normal       cfg(all(any(target_os = "android", target_os = "linux"), any(target_arch = "aarch64", target_arch = "arm")))

rustix->libc                                      0.2.152                        0.2.153  0.2.153  Development  ---

security-framework->libc                          0.2.152                        0.2.153  0.2.153  Normal       ---

security-framework-sys->libc                      0.2.152                        0.2.153  0.2.153  Normal       ---

serde_with->indexmap                              1.9.3                          2.2.2    ---      Normal       ---

serde_with->indexmap                              2.2.1                          2.2.2    1.9.3    Normal       ---

serde_with->serde_with_macros                     3.5.1                          3.6.0    3.6.0    Normal       ---

serde_with->time                                  0.3.31                         0.3.34   0.3.34   Normal       ---

serde_with_macros->darling                        0.20.3                         0.20.5   0.20.5   Normal       ---

serde_yaml->indexmap                              2.2.1                          2.2.2    2.2.2    Normal       ---

signal-hook-registry->libc                        0.2.152                        0.2.153  0.2.153  Normal       ---

socket2->libc                                     0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

syn->proc-macro2                                  1.0.78                         ---      Removed  Normal       ---

syn->proc-macro2                                  1.0.78                         Removed  ---      Normal       ---

syn->quote                                        1.0.35                         ---      Removed  Normal       ---

syn->quote                                        1.0.35                         Removed  ---      Normal       ---

syn->unicode-ident                                1.0.12                         ---      Removed  Normal       ---

syn->unicode-ident                                1.0.12                         Removed  ---      Normal       ---

system-configuration-sys->libc                    0.2.152                        0.2.153  0.2.153  Normal       ---

tar->libc                                         0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

tempfile->redox_syscall                           0.4.1                          Removed  Removed  Normal       cfg(target_os = "redox")

tempfile->rustix                                  0.38.30                        0.38.31  0.38.31  Normal       cfg(any(unix, target_os = "wasi"))

time->time-macros                                 0.2.16                         0.2.17   0.2.17   Normal       ---

tokio                                             1.35.1                         1.36.0   1.36.0   Normal       ---

tokio->libc                                       0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

tokio-io-timeout->tokio                           1.35.1                         1.36.0   1.36.0   Normal       ---

tokio-native-tls->tokio                           1.35.1                         1.36.0   1.36.0   Normal       ---

tokio-retry->tokio                                1.35.1                         1.36.0   1.36.0   Normal       ---

tokio-stream->tokio                               1.35.1                         1.36.0   1.36.0   Normal       ---

tokio-util->tokio                                 1.35.1                         1.36.0   1.36.0   Normal       ---

toml_edit->indexmap                               2.2.1                          2.2.2    2.2.2    Normal       ---

toml_edit->winnow                                 0.5.35                         0.5.39   0.5.39   Normal       ---

tonic->tokio                                      1.35.1                         1.36.0   1.36.0   Normal       ---

tower->tokio                                      1.35.1                         1.36.0   1.36.0   Normal       ---

tracing-appender->time                            0.3.31                         0.3.34   0.3.34   Normal       ---

ureq->webpki-roots                                0.25.3                         0.25.4   0.25.4   Normal       ---

wasm-bindgen->cfg-if                              1.0.0                          Removed  ---      Normal       ---

wasm-bindgen->wasm-bindgen-macro                  0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen->wasm-bindgen-macro                  0.2.90                         Removed  0.2.91   Normal       ---

wasm-bindgen-backend->bumpalo                     3.14.0                         Removed  ---      Normal       ---

wasm-bindgen-backend->log                         0.4.20                         Removed  ---      Normal       ---

wasm-bindgen-backend->once_cell                   1.19.0                         Removed  ---      Normal       ---

wasm-bindgen-backend->proc-macro2                 1.0.78                         Removed  ---      Normal       ---

wasm-bindgen-backend->quote                       1.0.35                         Removed  ---      Normal       ---

wasm-bindgen-backend->syn                         2.0.48                         Removed  ---      Normal       ---

wasm-bindgen-backend->wasm-bindgen-shared         0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen-backend->wasm-bindgen-shared         0.2.90                         Removed  0.2.91   Normal       ---

wasm-bindgen-futures->js-sys                      0.3.67                         0.3.68   0.3.68   Normal       ---

wasm-bindgen-futures->wasm-bindgen                0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen-futures->web-sys                     0.3.67                         0.3.68   0.3.68   Normal       cfg(target_feature = "atomics")

wasm-bindgen-macro->quote                         1.0.35                         Removed  ---      Normal       ---

wasm-bindgen-macro->wasm-bindgen-macro-support    0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen-macro->wasm-bindgen-macro-support    0.2.90                         Removed  0.2.91   Normal       ---

wasm-bindgen-macro-support->proc-macro2           1.0.78                         Removed  ---      Normal       ---

wasm-bindgen-macro-support->quote                 1.0.35                         Removed  ---      Normal       ---

wasm-bindgen-macro-support->syn                   2.0.48                         Removed  ---      Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-backend  0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-backend  0.2.90                         Removed  0.2.91   Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-shared   0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-shared   0.2.90                         Removed  0.2.91   Normal       ---

web-sys->js-sys                                   0.3.67                         0.3.68   0.3.68   Normal       ---

web-sys->wasm-bindgen                             0.2.90                         0.2.91   0.2.91   Normal       ---

which->rustix                                     0.38.30                        0.38.31  0.38.31  Normal       ---

xattr->libc                                       0.2.152                        0.2.153  0.2.153  Normal       cfg(any(target_os = "freebsd", target_os = "netbsd"))

xattr->rustix                                     0.38.30                        0.38.31  0.38.31  Normal       ---

zerocopy->zerocopy-derive                         0.7.32                         ---      Removed  Normal       ---

zerocopy-derive->proc-macro2                      1.0.78                         ---      Removed  Normal       ---

zerocopy-derive->quote                            1.0.35                         ---      Removed  Normal       ---

zerocopy-derive->syn                              2.0.48                         ---      Removed  Normal       ---

zip->time                                         0.3.31                         0.3.34   0.3.34   Normal       ---

zstd-safe->libc                                   0.2.152                        0.2.153  0.2.153  Normal       ---


CheckToml / toml: C:\home\git\polyglot\apps\dice\Cargo.toml

Name                                              Project  Compat   Latest   Kind    Platform

----                                              -------  ------   ------   ----    --------

android_system_properties->libc                   0.2.152  0.2.153  0.2.153  Normal  ---

cc->jobserver                                     0.1.27   0.1.28   0.1.28   Normal  ---

cc->libc                                          0.2.152  0.2.153  0.2.153  Normal  cfg(unix)

chrono->iana-time-zone                            0.1.59   0.1.60   0.1.60   Normal  cfg(unix)

chrono->js-sys                                    0.3.67   0.3.68   0.3.68   Normal  cfg(all(target_arch = "wasm32", not(any(target_os = "emscripten", target_os = "wasi"))))

chrono->num-traits                                0.2.17   0.2.18   0.2.18   Normal  ---

chrono->wasm-bindgen                              0.2.90   0.2.91   0.2.91   Normal  cfg(all(target_arch = "wasm32", not(any(target_os = "emscripten", target_os = "wasi"))))

fable_library_rust->num-integer                   0.1.45   0.1.46   0.1.46   Normal  ---

fable_library_rust->num-traits                    0.2.17   0.2.18   0.2.18   Normal  ---

fable_library_rust->rust_decimal                  1.33.1   1.34.2   1.34.2   Normal  ---

getrandom->js-sys                                 0.3.67   0.3.68   0.3.68   Normal  cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

getrandom->libc                                   0.2.152  0.2.153  0.2.153  Normal  cfg(unix)

getrandom->wasm-bindgen                           0.2.90   0.2.91   0.2.91   Normal  cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

iana-time-zone->js-sys                            0.3.67   0.3.68   0.3.68   Normal  cfg(target_arch = "wasm32")

iana-time-zone->wasm-bindgen                      0.2.90   0.2.91   0.2.91   Normal  cfg(target_arch = "wasm32")

jobserver->libc                                   0.2.152  0.2.153  0.2.153  Normal  cfg(unix)

js-sys->wasm-bindgen                              0.2.90   0.2.91   0.2.91   Normal  ---

num-bigint->num-integer                           0.1.45   0.1.46   0.1.46   Normal  ---

num-bigint->num-traits                            0.2.17   0.2.18   0.2.18   Normal  ---

num-integer->autocfg                              1.1.0    Removed  Removed  Build   ---

num-integer->num-traits                           0.2.17   0.2.18   0.2.18   Normal  ---

num_cpus->hermit-abi                              0.3.4    0.3.5    0.3.5    Normal  cfg(target_os = "hermit")

num_cpus->libc                                    0.2.152  0.2.153  0.2.153  Normal  cfg(not(windows))

rand->libc                                        0.2.152  0.2.153  0.2.153  Normal  cfg(unix)

rust_decimal->num-traits                          0.2.17   0.2.18   0.2.18   Normal  ---

wasm-bindgen->wasm-bindgen-macro                  0.2.90   0.2.91   0.2.91   Normal  ---

wasm-bindgen-backend->wasm-bindgen-shared         0.2.90   0.2.91   0.2.91   Normal  ---

wasm-bindgen-macro->wasm-bindgen-macro-support    0.2.90   0.2.91   0.2.91   Normal  ---

wasm-bindgen-macro-support->wasm-bindgen-backend  0.2.90   0.2.91   0.2.91   Normal  ---

wasm-bindgen-macro-support->wasm-bindgen-shared   0.2.90   0.2.91   0.2.91   Normal  ---


CheckToml / toml: C:\home\git\polyglot\apps\dice\fsharp\Cargo.toml

Name                                              Project  Compat   Latest   Kind    Platform

----                                              -------  ------   ------   ----    --------

android_system_properties->libc                   0.2.152  0.2.153  0.2.153  Normal  ---

cc->jobserver                                     0.1.27   0.1.28   0.1.28   Normal  ---

cc->libc                                          0.2.152  0.2.153  0.2.153  Normal  cfg(unix)

chrono->iana-time-zone                            0.1.59   0.1.60   0.1.60   Normal  cfg(unix)

chrono->js-sys                                    0.3.67   0.3.68   0.3.68   Normal  cfg(all(target_arch = "wasm32", not(any(target_os = "emscripten", target_os = "wasi"))))

chrono->num-traits                                0.2.17   0.2.18   0.2.18   Normal  ---

chrono->wasm-bindgen                              0.2.90   0.2.91   0.2.91   Normal  cfg(all(target_arch = "wasm32", not(any(target_os = "emscripten", target_os = "wasi"))))

fable_library_rust->num-integer                   0.1.45   0.1.46   0.1.46   Normal  ---

fable_library_rust->num-traits                    0.2.17   0.2.18   0.2.18   Normal  ---

fable_library_rust->rust_decimal                  1.33.1   1.34.2   1.34.2   Normal  ---

getrandom->js-sys                                 0.3.67   0.3.68   0.3.68   Normal  cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

getrandom->libc                                   0.2.152  0.2.153  0.2.153  Normal  cfg(unix)

getrandom->wasm-bindgen                           0.2.90   0.2.91   0.2.91   Normal  cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

iana-time-zone->js-sys                            0.3.67   0.3.68   0.3.68   Normal  cfg(target_arch = "wasm32")

iana-time-zone->wasm-bindgen                      0.2.90   0.2.91   0.2.91   Normal  cfg(target_arch = "wasm32")

jobserver->libc                                   0.2.152  0.2.153  0.2.153  Normal  cfg(unix)

js-sys->wasm-bindgen                              0.2.90   0.2.91   0.2.91   Normal  ---

num-bigint->num-integer                           0.1.45   0.1.46   0.1.46   Normal  ---

num-bigint->num-traits                            0.2.17   0.2.18   0.2.18   Normal  ---

num-integer->autocfg                              1.1.0    Removed  Removed  Build   ---

num-integer->num-traits                           0.2.17   0.2.18   0.2.18   Normal  ---

num_cpus->hermit-abi                              0.3.4    0.3.5    0.3.5    Normal  cfg(target_os = "hermit")

num_cpus->libc                                    0.2.152  0.2.153  0.2.153  Normal  cfg(not(windows))

rand->libc                                        0.2.152  0.2.153  0.2.153  Normal  cfg(unix)

rust_decimal->num-traits                          0.2.17   0.2.18   0.2.18   Normal  ---

wasm-bindgen->wasm-bindgen-macro                  0.2.90   0.2.91   0.2.91   Normal  ---

wasm-bindgen-backend->wasm-bindgen-shared         0.2.90   0.2.91   0.2.91   Normal  ---

wasm-bindgen-macro->wasm-bindgen-macro-support    0.2.90   0.2.91   0.2.91   Normal  ---

wasm-bindgen-macro-support->wasm-bindgen-backend  0.2.90   0.2.91   0.2.91   Normal  ---

wasm-bindgen-macro-support->wasm-bindgen-shared   0.2.90   0.2.91   0.2.91   Normal  ---


CheckToml / toml: C:\home\git\polyglot\apps\dice\contract\Cargo.toml

Name                                              Project  Compat   Latest   Kind         Platform

----                                              -------  ------   ------   ----         --------

actix->tokio                                      1.35.1   1.36.0   1.36.0   Normal       ---

actix-rt->tokio                                   1.35.1   1.36.0   1.36.0   Normal       ---

ahash->cfg-if                                     1.0.0    Removed  Removed  Normal       ---

ahash->zerocopy                                   0.7.32   Removed  Removed  Normal       ---

android_system_properties->libc                   0.2.152  0.2.153  0.2.153  Normal       ---

anstream->anstyle                                 1.0.5    1.0.6    1.0.6    Normal       ---

anstyle-wincon->anstyle                           1.0.5    1.0.6    1.0.6    Normal       ---

backtrace->libc                                   0.2.152  0.2.153  0.2.153  Normal       cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))

backtrace->miniz_oxide                            0.7.1    0.7.2    0.7.2    Normal       cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))

cc->jobserver                                     0.1.27   0.1.28   0.1.28   Normal       ---

cc->libc                                          0.2.152  0.2.153  0.2.153  Normal       cfg(unix)

chrono->iana-time-zone                            0.1.59   0.1.60   0.1.60   Normal       cfg(unix)

chrono->js-sys                                    0.3.67   0.3.68   0.3.68   Normal       cfg(all(target_arch = "wasm32", not(any(target_os = "emscripten", target_os = "wasi"))))

chrono->num-traits                                0.2.17   0.2.18   0.2.18   Normal       ---

chrono->wasm-bindgen                              0.2.90   0.2.91   0.2.91   Normal       cfg(all(target_arch = "wasm32", not(any(target_os = "emscripten", target_os = "wasi"))))

clap->clap_builder                                4.4.18   4.5.0    4.5.0    Normal       ---

clap->clap_derive                                 4.4.7    4.5.0    4.5.0    Normal       ---

clap_builder->anstyle                             1.0.5    1.0.6    1.0.6    Normal       ---

clap_builder->clap_lex                            0.6.0    0.7.0    0.7.0    Normal       ---

clap_builder->strsim                              0.10.0   0.11.0   0.11.0   Normal       ---

cpufeatures->libc                                 0.2.152  0.2.153  0.2.153  Normal       aarch64-linux-android

curve25519-dalek->fiat-crypto                     0.2.5    0.2.6    0.2.6    Normal       cfg(curve25519_dalek_backend = "fiat")

darling->darling_core                             0.20.3   0.20.5   0.20.5   Normal       ---

darling->darling_macro                            0.20.3   0.20.5   0.20.5   Normal       ---

darling_macro->darling_core                       0.20.3   0.20.5   0.20.5   Normal       ---

ed25519-dalek->curve25519-dalek                   4.1.1    4.1.2    4.1.2    Normal       ---

errno->libc                                       0.2.152  0.2.153  0.2.153  Normal       cfg(target_os = "hermit")

fable_library_rust->num-integer                   0.1.45   0.1.46   0.1.46   Normal       ---

fable_library_rust->num-traits                    0.2.17   0.2.18   0.2.18   Normal       ---

fable_library_rust->rust_decimal                  1.33.1   1.34.2   1.34.2   Normal       ---

fs2->libc                                         0.2.152  0.2.153  0.2.153  Normal       cfg(unix)

getrandom->js-sys                                 0.3.67   0.3.68   0.3.68   Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

getrandom->libc                                   0.2.152  0.2.153  0.2.153  Normal       cfg(unix)

getrandom->wasm-bindgen                           0.2.90   0.2.91   0.2.91   Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

h2->indexmap                                      2.2.1    2.2.2    2.2.2    Normal       ---

h2->tokio                                         1.35.1   1.36.0   1.36.0   Normal       ---

hashbrown->ahash                                  0.8.7    0.7.7    0.7.7    Normal       ---

hashbrown->allocator-api2                         0.2.16   Removed  Removed  Normal       ---

heck->unicode-segmentation                        1.10.1   1.11.0   1.11.0   Normal       ---

hyper->tokio                                      1.35.1   1.36.0   1.36.0   Normal       ---

hyper-timeout->tokio                              1.35.1   1.36.0   1.36.0   Normal       ---

iana-time-zone->js-sys                            0.3.67   0.3.68   0.3.68   Normal       cfg(target_arch = "wasm32")

iana-time-zone->wasm-bindgen                      0.2.90   0.2.91   0.2.91   Normal       cfg(target_arch = "wasm32")

indexmap->equivalent                              1.0.1    Removed  Removed  Normal       ---

indexmap->hashbrown                               0.14.3   0.12.3   0.12.3   Normal       ---

jobserver->libc                                   0.2.152  0.2.153  0.2.153  Normal       cfg(unix)

js-sys->wasm-bindgen                              0.2.90   0.2.91   0.2.91   Normal       ---

mio->libc                                         0.2.152  0.2.153  0.2.153  Normal       cfg(target_os = "wasi")

near-crypto->curve25519-dalek                     4.1.1    4.1.2    4.1.2    Normal       ---

near-crypto->ed25519-dalek                        2.1.0    2.1.1    2.1.1    Normal       ---

near-o11y->actix                                  0.13.1   0.13.3   0.13.3   Normal       ---

near-o11y->clap                                   4.4.18   4.5.0    4.5.0    Normal       ---

near-o11y->tokio                                  1.35.1   1.36.0   1.36.0   Normal       ---

near-primitives->serde_with                       3.5.1    3.6.0    3.6.0    Normal       ---

near-primitives->time                             0.3.31   0.3.34   0.3.34   Normal       ---

near-primitives-core->serde_with                  3.5.1    3.6.0    3.6.0    Normal       ---

near-sdk-macros->darling                          0.20.3   0.20.5   0.20.5   Normal       ---

near-vm-runner->ed25519-dalek                     2.1.0    2.1.1    2.1.1    Normal       ---

near-vm-runner->serde_with                        3.5.1    3.6.0    3.6.0    Normal       ---

num-bigint->num-integer                           0.1.45   0.1.46   0.1.46   Normal       ---

num-bigint->num-traits                            0.2.17   0.2.18   0.2.18   Normal       ---

num-integer->autocfg                              1.1.0    Removed  Removed  Build        ---

num-integer->num-traits                           0.2.17   0.2.18   0.2.18   Normal       ---

num-rational->num-integer                         0.1.45   0.1.46   0.1.46   Normal       ---

num-rational->num-traits                          0.2.17   0.2.18   0.2.18   Normal       ---

num_cpus->hermit-abi                              0.3.4    0.3.5    0.3.5    Normal       cfg(target_os = "hermit")

num_cpus->libc                                    0.2.152  0.2.153  0.2.153  Normal       cfg(not(windows))

opentelemetry->js-sys                             0.3.67   0.3.68   0.3.68   Normal       cfg(target_arch = "wasm32")

opentelemetry->tokio                              1.35.1   1.36.0   1.36.0   Normal       ---

opentelemetry-otlp->tokio                         1.35.1   1.36.0   1.36.0   Normal       ---

parking_lot_core->libc                            0.2.152  0.2.153  0.2.153  Normal       cfg(unix)

petgraph->indexmap                                2.2.1    2.2.2    2.2.2    Normal       ---

proc-macro-crate->toml_edit                       0.21.0   0.21.1   0.21.1   Normal       ---

proc-macro2->unicode-ident                        1.0.12   Removed  Removed  Normal       ---

prost-build->tempfile                             3.9.0    3.10.0   3.10.0   Normal       ---

quote->proc-macro2                                1.0.78   Removed  Removed  Normal       ---

rand->libc                                        0.2.152  0.2.153  0.2.153  Normal       cfg(unix)

redox_syscall->bitflags                           1.3.2    Removed  Removed  Normal       ---

rust_decimal->num-traits                          0.2.17   0.2.18   0.2.18   Normal       ---

rustix->libc                                      0.2.152  0.2.153  0.2.153  Development  ---

serde_with->indexmap                              2.2.1    1.9.3    1.9.3    Normal       ---

serde_with->serde_with_macros                     3.5.1    3.6.0    3.6.0    Normal       ---

serde_with->time                                  0.3.31   0.3.34   0.3.34   Normal       ---

serde_with_macros->darling                        0.20.3   0.20.5   0.20.5   Normal       ---

serde_yaml->indexmap                              2.2.1    2.2.2    2.2.2    Normal       ---

signal-hook-registry->libc                        0.2.152  0.2.153  0.2.153  Normal       ---

socket2->libc                                     0.2.152  0.2.153  0.2.153  Normal       cfg(unix)

syn->proc-macro2                                  1.0.78   Removed  Removed  Normal       ---

syn->quote                                        1.0.35   Removed  Removed  Normal       ---

syn->unicode-ident                                1.0.12   Removed  Removed  Normal       ---

tempfile->redox_syscall                           0.4.1    Removed  Removed  Normal       cfg(target_os = "redox")

tempfile->rustix                                  0.38.30  0.38.31  0.38.31  Normal       cfg(any(unix, target_os = "wasi"))

time->time-macros                                 0.2.16   0.2.17   0.2.17   Normal       ---

tokio->libc                                       0.2.152  0.2.153  0.2.153  Normal       cfg(unix)

tokio-io-timeout->tokio                           1.35.1   1.36.0   1.36.0   Normal       ---

tokio-stream->tokio                               1.35.1   1.36.0   1.36.0   Normal       ---

tokio-util->tokio                                 1.35.1   1.36.0   1.36.0   Normal       ---

toml_edit->indexmap                               2.2.1    2.2.2    2.2.2    Normal       ---

toml_edit->winnow                                 0.5.35   0.5.39   0.5.39   Normal       ---

tonic->tokio                                      1.35.1   1.36.0   1.36.0   Normal       ---

tower->tokio                                      1.35.1   1.36.0   1.36.0   Normal       ---

tracing-appender->time                            0.3.31   0.3.34   0.3.34   Normal       ---

wasm-bindgen->wasm-bindgen-macro                  0.2.90   0.2.91   0.2.91   Normal       ---

wasm-bindgen-backend->wasm-bindgen-shared         0.2.90   0.2.91   0.2.91   Normal       ---

wasm-bindgen-macro->wasm-bindgen-macro-support    0.2.90   0.2.91   0.2.91   Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-backend  0.2.90   0.2.91   0.2.91   Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-shared   0.2.90   0.2.91   0.2.91   Normal       ---

wee_alloc->libc                                   0.2.152  0.2.153  0.2.153  Normal       cfg(all(unix, not(target_arch = "wasm32")))

which->rustix                                     0.38.30  0.38.31  0.38.31  Normal       ---

zerocopy->zerocopy-derive                         0.7.32   Removed  Removed  Normal       ---

zerocopy-derive->proc-macro2                      1.0.78   Removed  Removed  Normal       ---

zerocopy-derive->quote                            1.0.35   Removed  Removed  Normal       ---

zerocopy-derive->syn                              2.0.48   Removed  Removed  Normal       ---


CheckToml / toml: C:\home\git\polyglot\apps\dice\contract\tests\Cargo.toml

Name                                              Project                        Compat   Latest   Kind         Platform

----                                              -------                        ------   ------   ----         --------

actix->tokio                                      1.35.1                         1.36.0   1.36.0   Normal       ---

actix-rt->tokio                                   1.35.1                         1.36.0   1.36.0   Normal       ---

ahash->getrandom                                  0.2.12                         Removed  Removed  Normal       cfg(any(target_os = "linux", target_os = "android", target_os = "windows", target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "dragonfly", target_os = "solaris", target_os = "illumos", target_os = "fuchsia", target_os = "redox", target_os = "cloudabi", target_os = "haiku", target_os = "vxworks", target_os = "emscripten", target_os = "wasi"))

android_system_properties->libc                   0.2.152                        0.2.153  0.2.153  Normal       ---

anstream->anstyle                                 1.0.5                          1.0.6    1.0.6    Normal       ---

anstyle-wincon->anstyle                           1.0.5                          1.0.6    1.0.6    Normal       ---

atty->libc                                        0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

backtrace->libc                                   0.2.152                        0.2.153  0.2.153  Normal       cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))

backtrace->miniz_oxide                            0.7.1                          0.7.2    0.7.2    Normal       cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))

bzip2->libc                                       0.2.152                        0.2.153  0.2.153  Normal       ---

bzip2-sys->libc                                   0.2.152                        0.2.153  0.2.153  Normal       ---

cc->jobserver                                     0.1.27                         0.1.28   0.1.28   Normal       ---

cc->libc                                          0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

chrono->iana-time-zone                            0.1.59                         0.1.60   0.1.60   Normal       cfg(unix)

chrono->js-sys                                    0.3.67                         0.3.68   0.3.68   Normal       cfg(all(target_arch = "wasm32", not(any(target_os = "emscripten", target_os = "wasi"))))

chrono->num-traits                                0.2.17                         0.2.18   0.2.18   Normal       ---

chrono->wasm-bindgen                              0.2.90                         0.2.91   0.2.91   Normal       cfg(all(target_arch = "wasm32", not(any(target_os = "emscripten", target_os = "wasi"))))

clap->clap_builder                                4.4.18                         4.5.0    4.5.0    Normal       ---

clap->clap_derive                                 4.4.7                          4.5.0    4.5.0    Normal       ---

clap_builder->anstyle                             1.0.5                          1.0.6    1.0.6    Normal       ---

clap_builder->clap_lex                            0.6.0                          0.7.0    0.7.0    Normal       ---

clap_builder->strsim                              0.10.0                         0.11.0   0.11.0   Normal       ---

core-foundation->libc                             0.2.152                        0.2.153  0.2.153  Normal       ---

cpufeatures->libc                                 0.2.152                        0.2.153  0.2.153  Normal       aarch64-linux-android

curve25519-dalek->fiat-crypto                     0.2.5                          0.2.6    0.2.6    Normal       cfg(curve25519_dalek_backend = "fiat")

darling->darling_core                             0.20.3                         0.20.5   0.20.5   Normal       ---

darling->darling_macro                            0.20.3                         0.20.5   0.20.5   Normal       ---

darling_macro->darling_core                       0.20.3                         0.20.5   0.20.5   Normal       ---

dirs-sys-next->libc                               0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

ed25519-dalek->curve25519-dalek                   4.1.1                          4.1.2    4.1.2    Normal       ---

errno->libc                                       0.2.152                        0.2.153  0.2.153  Normal       cfg(target_os = "hermit")

filetime->libc                                    0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

flate2->miniz_oxide                               0.7.1                          0.7.2    0.7.2    Normal       ---

fs2->libc                                         0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

getrandom->cfg-if                                 1.0.0                          Removed  Removed  Normal       ---

getrandom->js-sys                                 0.3.67                         0.3.68   0.3.68   Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

getrandom->js-sys                                 0.3.67                         Removed  Removed  Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

getrandom->libc                                   0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

getrandom->libc                                   0.2.152                        Removed  Removed  Normal       cfg(unix)

getrandom->wasi                                   0.11.0+wasi-snapshot-preview1  Removed  Removed  Normal       cfg(target_os = "wasi")

getrandom->wasm-bindgen                           0.2.90                         0.2.91   0.2.91   Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

getrandom->wasm-bindgen                           0.2.90                         Removed  Removed  Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

h2->indexmap                                      2.2.1                          2.2.2    2.2.2    Normal       ---

h2->tokio                                         1.35.1                         1.36.0   1.36.0   Normal       ---

hashbrown->ahash                                  0.7.7                          0.8.7    0.8.7    Normal       ---

heck->unicode-segmentation                        1.10.1                         1.11.0   1.11.0   Normal       ---

hermit-abi->libc                                  0.2.152                        0.2.153  0.2.153  Normal       ---

hyper->tokio                                      1.35.1                         1.36.0   1.36.0   Normal       ---

hyper-timeout->tokio                              1.35.1                         1.36.0   1.36.0   Normal       ---

hyper-tls->tokio                                  1.35.1                         1.36.0   1.36.0   Normal       ---

iana-time-zone->js-sys                            0.3.67                         0.3.68   0.3.68   Normal       cfg(target_arch = "wasm32")

iana-time-zone->wasm-bindgen                      0.2.90                         0.2.91   0.2.91   Normal       cfg(target_arch = "wasm32")

indexmap->autocfg                                 1.1.0                          Removed  Removed  Build        ---

indexmap->hashbrown                               0.12.3                         0.14.3   0.14.3   Normal       ---

jobserver->libc                                   0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

js-sys->wasm-bindgen                              0.2.90                         0.2.91   0.2.91   Normal       ---

js-sys->wasm-bindgen                              0.2.90                         Removed  Removed  Normal       ---

json-patch->treediff                              4.0.2                          4.0.3    4.0.3    Normal       ---

libredox->libc                                    0.2.152                        0.2.153  0.2.153  Normal       ---

memmap2->libc                                     0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

mio->libc                                         0.2.152                        0.2.153  0.2.153  Normal       cfg(target_os = "wasi")

native-tls->libc                                  0.2.152                        0.2.153  0.2.153  Normal       cfg(any(target_os = "macos", target_os = "ios"))

native-tls->tempfile                              3.9.0                          3.10.0   3.10.0   Development  ---

near-crypto->curve25519-dalek                     4.1.1                          4.1.2    4.1.2    Normal       ---

near-crypto->ed25519-dalek                        2.1.0                          2.1.1    2.1.1    Normal       ---

near-jsonrpc-client->reqwest                      0.11.23                        0.11.24  0.11.24  Normal       ---

near-o11y->actix                                  0.13.1                         0.13.3   0.13.3   Normal       ---

near-o11y->clap                                   4.4.18                         4.5.0    4.5.0    Normal       ---

near-o11y->tokio                                  1.35.1                         1.36.0   1.36.0   Normal       ---

near-primitives->serde_with                       3.5.1                          3.6.0    3.6.0    Normal       ---

near-primitives->time                             0.3.31                         0.3.34   0.3.34   Normal       ---

near-primitives-core->serde_with                  3.5.1                          3.6.0    3.6.0    Normal       ---

near-sandbox-utils->tokio                         1.35.1                         1.36.0   1.36.0   Normal       ---

near-vm-runner->ed25519-dalek                     2.1.0                          2.1.1    2.1.1    Normal       ---

near-vm-runner->serde_with                        3.5.1                          3.6.0    3.6.0    Normal       ---

near-workspaces->libc                             0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

near-workspaces->reqwest                          0.11.23                        0.11.24  0.11.24  Normal       ---

near-workspaces->tempfile                         3.9.0                          3.10.0   3.10.0   Normal       ---

near-workspaces->tokio                            1.35.1                         1.36.0   1.36.0   Normal       ---

num-bigint->num-integer                           0.1.45                         0.1.46   0.1.46   Normal       ---

num-bigint->num-traits                            0.2.17                         0.2.18   0.2.18   Normal       ---

num-integer->autocfg                              1.1.0                          Removed  Removed  Build        ---

num-integer->num-traits                           0.2.17                         0.2.18   0.2.18   Normal       ---

num-rational->num-integer                         0.1.45                         0.1.46   0.1.46   Normal       ---

num-rational->num-traits                          0.2.17                         0.2.18   0.2.18   Normal       ---

num_cpus->hermit-abi                              0.3.4                          0.3.5    0.3.5    Normal       cfg(target_os = "hermit")

num_cpus->libc                                    0.2.152                        0.2.153  0.2.153  Normal       cfg(not(windows))

openssl->libc                                     0.2.152                        0.2.153  0.2.153  Normal       ---

openssl-sys->libc                                 0.2.152                        0.2.153  0.2.153  Normal       ---

opentelemetry->js-sys                             0.3.67                         0.3.68   0.3.68   Normal       cfg(target_arch = "wasm32")

opentelemetry->tokio                              1.35.1                         1.36.0   1.36.0   Normal       ---

opentelemetry-otlp->tokio                         1.35.1                         1.36.0   1.36.0   Normal       ---

parking_lot_core->libc                            0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

petgraph->indexmap                                2.2.1                          2.2.2    2.2.2    Normal       ---

proc-macro-crate->toml_edit                       0.21.0                         0.21.1   0.21.1   Normal       ---

proc-macro2->unicode-ident                        1.0.12                         Removed  Removed  Normal       ---

prost-build->tempfile                             3.9.0                          3.10.0   3.10.0   Normal       ---

quote->proc-macro2                                1.0.78                         Removed  Removed  Normal       ---

rand->libc                                        0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

redox_syscall->bitflags                           1.3.2                          Removed  Removed  Normal       ---

reqwest->js-sys                                   0.3.67                         0.3.68   0.3.68   Normal       cfg(target_arch = "wasm32")

reqwest->tokio                                    1.35.1                         1.36.0   1.36.0   Normal       cfg(not(target_arch = "wasm32"))

reqwest->wasm-bindgen                             0.2.90                         0.2.91   0.2.91   Normal       cfg(target_arch = "wasm32")

reqwest->wasm-bindgen-futures                     0.4.40                         0.4.41   0.4.41   Normal       cfg(target_arch = "wasm32")

reqwest->web-sys                                  0.3.67                         0.3.68   0.3.68   Normal       cfg(target_arch = "wasm32")

ring->libc                                        0.2.152                        0.2.153  0.2.153  Normal       cfg(all(any(target_os = "android", target_os = "linux"), any(target_arch = "aarch64", target_arch = "arm")))

rustix->libc                                      0.2.152                        0.2.153  0.2.153  Development  ---

security-framework->libc                          0.2.152                        0.2.153  0.2.153  Normal       ---

security-framework-sys->libc                      0.2.152                        0.2.153  0.2.153  Normal       ---

serde_with->indexmap                              1.9.3                          2.2.2    2.2.2    Normal       ---

serde_with->indexmap                              2.2.1                          2.2.2    2.2.2    Normal       ---

serde_with->serde_with_macros                     3.5.1                          3.6.0    3.6.0    Normal       ---

serde_with->time                                  0.3.31                         0.3.34   0.3.34   Normal       ---

serde_with_macros->darling                        0.20.3                         0.20.5   0.20.5   Normal       ---

serde_yaml->indexmap                              2.2.1                          2.2.2    2.2.2    Normal       ---

signal-hook-registry->libc                        0.2.152                        0.2.153  0.2.153  Normal       ---

socket2->libc                                     0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

syn->proc-macro2                                  1.0.78                         Removed  Removed  Normal       ---

syn->quote                                        1.0.35                         Removed  Removed  Normal       ---

syn->unicode-ident                                1.0.12                         Removed  Removed  Normal       ---

system-configuration-sys->libc                    0.2.152                        0.2.153  0.2.153  Normal       ---

tar->libc                                         0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

tempfile->redox_syscall                           0.4.1                          Removed  Removed  Normal       cfg(target_os = "redox")

tempfile->rustix                                  0.38.30                        0.38.31  0.38.31  Normal       cfg(any(unix, target_os = "wasi"))

time->time-macros                                 0.2.16                         0.2.17   0.2.17   Normal       ---

tokio                                             1.35.1                         1.36.0   1.36.0   Normal       ---

tokio->libc                                       0.2.152                        0.2.153  0.2.153  Normal       cfg(unix)

tokio-io-timeout->tokio                           1.35.1                         1.36.0   1.36.0   Normal       ---

tokio-native-tls->tokio                           1.35.1                         1.36.0   1.36.0   Normal       ---

tokio-retry->tokio                                1.35.1                         1.36.0   1.36.0   Normal       ---

tokio-stream->tokio                               1.35.1                         1.36.0   1.36.0   Normal       ---

tokio-util->tokio                                 1.35.1                         1.36.0   1.36.0   Normal       ---

toml_edit->indexmap                               2.2.1                          2.2.2    2.2.2    Normal       ---

toml_edit->winnow                                 0.5.35                         0.5.39   0.5.39   Normal       ---

tonic->tokio                                      1.35.1                         1.36.0   1.36.0   Normal       ---

tower->tokio                                      1.35.1                         1.36.0   1.36.0   Normal       ---

tracing-appender->time                            0.3.31                         0.3.34   0.3.34   Normal       ---

ureq->webpki-roots                                0.25.3                         0.25.4   0.25.4   Normal       ---

wasm-bindgen->cfg-if                              1.0.0                          Removed  Removed  Normal       ---

wasm-bindgen->wasm-bindgen-macro                  0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen->wasm-bindgen-macro                  0.2.90                         Removed  Removed  Normal       ---

wasm-bindgen-backend->bumpalo                     3.14.0                         Removed  Removed  Normal       ---

wasm-bindgen-backend->log                         0.4.20                         Removed  Removed  Normal       ---

wasm-bindgen-backend->once_cell                   1.19.0                         Removed  Removed  Normal       ---

wasm-bindgen-backend->proc-macro2                 1.0.78                         Removed  Removed  Normal       ---

wasm-bindgen-backend->quote                       1.0.35                         Removed  Removed  Normal       ---

wasm-bindgen-backend->syn                         2.0.48                         Removed  Removed  Normal       ---

wasm-bindgen-backend->wasm-bindgen-shared         0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen-backend->wasm-bindgen-shared         0.2.90                         Removed  Removed  Normal       ---

wasm-bindgen-futures->js-sys                      0.3.67                         0.3.68   0.3.68   Normal       ---

wasm-bindgen-futures->wasm-bindgen                0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen-futures->web-sys                     0.3.67                         0.3.68   0.3.68   Normal       cfg(target_feature = "atomics")

wasm-bindgen-macro->quote                         1.0.35                         Removed  Removed  Normal       ---

wasm-bindgen-macro->wasm-bindgen-macro-support    0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen-macro->wasm-bindgen-macro-support    0.2.90                         Removed  Removed  Normal       ---

wasm-bindgen-macro-support->proc-macro2           1.0.78                         Removed  Removed  Normal       ---

wasm-bindgen-macro-support->quote                 1.0.35                         Removed  Removed  Normal       ---

wasm-bindgen-macro-support->syn                   2.0.48                         Removed  Removed  Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-backend  0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-backend  0.2.90                         Removed  Removed  Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-shared   0.2.90                         0.2.91   0.2.91   Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-shared   0.2.90                         Removed  Removed  Normal       ---

web-sys->js-sys                                   0.3.67                         0.3.68   0.3.68   Normal       ---

web-sys->wasm-bindgen                             0.2.90                         0.2.91   0.2.91   Normal       ---

which->rustix                                     0.38.30                        0.38.31  0.38.31  Normal       ---

xattr->libc                                       0.2.152                        0.2.153  0.2.153  Normal       cfg(any(target_os = "freebsd", target_os = "netbsd"))

xattr->rustix                                     0.38.30                        0.38.31  0.38.31  Normal       ---

zip->time                                         0.3.31                         0.3.34   0.3.34   Normal       ---

zstd-safe->libc                                   0.2.152                        0.2.153  0.2.153  Normal       ---


CheckToml / toml: C:\home\git\polyglot\apps\dice\ui\Cargo.toml

Name                                              Project  Compat   Latest   Kind         Platform

----                                              -------  ------   ------   ----         --------

android_system_properties->libc                   0.2.152  0.2.153  0.2.153  Normal       ---

backtrace->libc                                   0.2.152  0.2.153  0.2.153  Normal       cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))

backtrace->miniz_oxide                            0.7.1    0.7.2    0.7.2    Normal       cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))

bytecheck->bytecheck_derive                       0.6.11   0.6.12   0.6.12   Normal       ---

cc->jobserver                                     0.1.27   0.1.28   0.1.28   Normal       ---

cc->libc                                          0.2.152  0.2.153  0.2.153  Normal       cfg(unix)

chrono->iana-time-zone                            0.1.59   0.1.60   0.1.60   Normal       cfg(unix)

chrono->js-sys                                    0.3.67   0.3.68   0.3.68   Normal       cfg(all(target_arch = "wasm32", not(any(target_os = "emscripten", target_os = "wasi"))))

chrono->num-traits                                0.2.17   0.2.18   0.2.18   Normal       ---

chrono->wasm-bindgen                              0.2.90   0.2.91   0.2.91   Normal       cfg(all(target_arch = "wasm32", not(any(target_os = "emscripten", target_os = "wasi"))))

console_error_panic_hook->wasm-bindgen            0.2.90   0.2.91   0.2.91   Normal       ---

console_log->web-sys                              0.3.67   0.3.68   0.3.68   Normal       ---

convert_case->unicode-segmentation                1.10.1   1.11.0   1.11.0   Normal       ---

core-foundation->libc                             0.2.152  0.2.153  0.2.153  Normal       ---

errno->libc                                       0.2.152  0.2.153  0.2.153  Normal       cfg(target_os = "hermit")

fable_library_rust->num-integer                   0.1.45   0.1.46   0.1.46   Normal       ---

fable_library_rust->num-traits                    0.2.17   0.2.18   0.2.18   Normal       ---

fable_library_rust->rust_decimal                  1.33.1   1.34.2   1.34.2   Normal       ---

getrandom->js-sys                                 0.3.67   0.3.68   0.3.68   Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

getrandom->libc                                   0.2.152  0.2.153  0.2.153  Normal       cfg(unix)

getrandom->wasm-bindgen                           0.2.90   0.2.91   0.2.91   Normal       cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))

gloo-net->js-sys                                  0.3.67   0.3.68   0.3.68   Normal       ---

gloo-net->wasm-bindgen                            0.2.90   0.2.91   0.2.91   Normal       ---

gloo-net->wasm-bindgen-futures                    0.4.40   0.4.41   0.4.41   Normal       ---

gloo-net->web-sys                                 0.3.67   0.3.68   0.3.68   Normal       ---

gloo-utils->js-sys                                0.3.67   0.3.68   0.3.68   Normal       ---

gloo-utils->wasm-bindgen                          0.2.90   0.2.91   0.2.91   Normal       ---

gloo-utils->web-sys                               0.3.67   0.3.68   0.3.68   Normal       ---

h2->indexmap                                      2.2.1    2.2.2    2.2.2    Normal       ---

h2->tokio                                         1.35.1   1.36.0   1.36.0   Normal       ---

hyper->tokio                                      1.35.1   1.36.0   1.36.0   Normal       ---

hyper-tls->tokio                                  1.35.1   1.36.0   1.36.0   Normal       ---

iana-time-zone->js-sys                            0.3.67   0.3.68   0.3.68   Normal       cfg(target_arch = "wasm32")

iana-time-zone->wasm-bindgen                      0.2.90   0.2.91   0.2.91   Normal       cfg(target_arch = "wasm32")

jobserver->libc                                   0.2.152  0.2.153  0.2.153  Normal       cfg(unix)

js-sys                                            0.3.67   0.3.68   0.3.68   Normal       ---

js-sys->wasm-bindgen                              0.2.90   0.2.91   0.2.91   Normal       ---

leptos                                            0.6.3    0.6.5    0.6.5    Normal       ---

leptos->leptos_config                             0.6.3    0.6.5    0.6.5    Normal       ---

leptos->leptos_dom                                0.6.3    0.6.5    0.6.5    Normal       ---

leptos->leptos_macro                              0.6.3    0.6.5    0.6.5    Normal       ---

leptos->leptos_reactive                           0.6.3    0.6.5    0.6.5    Normal       ---

leptos->leptos_server                             0.6.3    0.6.5    0.6.5    Normal       ---

leptos->server_fn                                 0.6.3    0.6.5    0.6.5    Normal       ---

leptos->wasm-bindgen                              0.2.90   0.2.91   0.2.91   Normal       ---

leptos->web-sys                                   0.3.67   0.3.68   0.3.68   Normal       ---

leptos_dom->indexmap                              2.2.1    2.2.2    2.2.2    Normal       ---

leptos_dom->js-sys                                0.3.67   0.3.68   0.3.68   Normal       ---

leptos_dom->leptos_reactive                       0.6.3    0.6.5    0.6.5    Normal       ---

leptos_dom->server_fn                             0.6.3    0.6.5    0.6.5    Normal       ---

leptos_dom->wasm-bindgen                          0.2.90   0.2.91   0.2.91   Normal       ---

leptos_dom->wasm-bindgen-futures                  0.4.40   0.4.41   0.4.41   Normal       ---

leptos_dom->web-sys                               0.3.67   0.3.68   0.3.68   Normal       ---

leptos_hot_reload->indexmap                       2.2.1    2.2.2    2.2.2    Normal       ---

leptos_macro->leptos_hot_reload                   0.6.3    0.6.5    0.6.5    Normal       ---

leptos_macro->server_fn_macro                     0.6.3    0.6.5    0.6.5    Normal       ---

leptos_meta                                       0.6.3    0.6.5    0.6.5    Normal       ---

leptos_meta->indexmap                             2.2.1    2.2.2    2.2.2    Normal       ---

leptos_meta->leptos                               0.6.3    0.6.5    0.6.5    Normal       ---

leptos_meta->wasm-bindgen                         0.2.90   0.2.91   0.2.91   Normal       ---

leptos_meta->web-sys                              0.3.67   0.3.68   0.3.68   Normal       ---

leptos_reactive->indexmap                         2.2.1    2.2.2    2.2.2    Normal       ---

leptos_reactive->js-sys                           0.3.67   0.3.68   0.3.68   Normal       ---

leptos_reactive->rkyv                             0.7.43   0.7.44   0.7.44   Normal       ---

leptos_reactive->wasm-bindgen                     0.2.90   0.2.91   0.2.91   Normal       ---

leptos_reactive->wasm-bindgen-futures             0.4.40   0.4.41   0.4.41   Normal       ---

leptos_reactive->web-sys                          0.3.67   0.3.68   0.3.68   Normal       ---

leptos_router                                     0.6.3    0.6.5    0.6.5    Normal       ---

leptos_router->js-sys                             0.3.67   0.3.68   0.3.68   Normal       ---

leptos_router->leptos                             0.6.3    0.6.5    0.6.5    Normal       ---

leptos_router->wasm-bindgen                       0.2.90   0.2.91   0.2.91   Normal       ---

leptos_router->wasm-bindgen-futures               0.4.40   0.4.41   0.4.41   Normal       ---

leptos_router->web-sys                            0.3.67   0.3.68   0.3.68   Normal       ---

leptos_server->leptos_macro                       0.6.3    0.6.5    0.6.5    Normal       ---

leptos_server->leptos_reactive                    0.6.3    0.6.5    0.6.5    Normal       ---

leptos_server->server_fn                          0.6.3    0.6.5    0.6.5    Normal       ---

mio->libc                                         0.2.152  0.2.153  0.2.153  Normal       cfg(target_os = "wasi")

native-tls->libc                                  0.2.152  0.2.153  0.2.153  Normal       cfg(any(target_os = "macos", target_os = "ios"))

native-tls->tempfile                              3.9.0    3.10.0   3.10.0   Development  ---

num-bigint->num-integer                           0.1.45   0.1.46   0.1.46   Normal       ---

num-bigint->num-traits                            0.2.17   0.2.18   0.2.18   Normal       ---

num-integer->autocfg                              1.1.0    Removed  Removed  Build        ---

num-integer->num-traits                           0.2.17   0.2.18   0.2.18   Normal       ---

num_cpus->hermit-abi                              0.3.4    0.3.5    0.3.5    Normal       cfg(target_os = "hermit")

num_cpus->libc                                    0.2.152  0.2.153  0.2.153  Normal       cfg(not(windows))

openssl->libc                                     0.2.152  0.2.153  0.2.153  Normal       ---

openssl-sys->libc                                 0.2.152  0.2.153  0.2.153  Normal       ---

parking_lot_core->libc                            0.2.152  0.2.153  0.2.153  Normal       cfg(unix)

proc-macro-crate->toml_edit                       0.21.0   0.21.1   0.21.1   Normal       ---

redox_syscall->bitflags                           1.3.2    Removed  Removed  Normal       ---

rend->bytecheck                                   0.6.11   0.6.12   0.6.12   Normal       ---

reqwest-wasm->js-sys                              0.3.67   0.3.68   0.3.68   Normal       cfg(target_arch = "wasm32")

reqwest-wasm->tokio                               1.35.1   1.36.0   1.36.0   Normal       cfg(not(target_arch = "wasm32"))

reqwest-wasm->wasm-bindgen                        0.2.90   0.2.91   0.2.91   Normal       cfg(target_arch = "wasm32")

reqwest-wasm->wasm-bindgen-futures                0.4.40   0.4.41   0.4.41   Normal       cfg(target_arch = "wasm32")

reqwest-wasm->web-sys                             0.3.67   0.3.68   0.3.68   Normal       cfg(target_arch = "wasm32")

rexie->js-sys                                     0.3.67   0.3.68   0.3.68   Normal       ---

rexie->num-traits                                 0.2.17   0.2.18   0.2.18   Normal       ---

rexie->tokio                                      1.35.1   1.36.0   1.36.0   Normal       ---

rexie->wasm-bindgen                               0.2.90   0.2.91   0.2.91   Normal       ---

rexie->wasm-bindgen-futures                       0.4.40   0.4.41   0.4.41   Normal       ---

rexie->web-sys                                    0.3.67   0.3.68   0.3.68   Normal       ---

rkyv->bytecheck                                   0.6.11   0.6.12   0.6.12   Normal       ---

rkyv->rend                                        0.4.1    0.4.2    0.4.2    Normal       ---

rkyv->rkyv_derive                                 0.7.43   0.7.44   0.7.44   Normal       ---

rust_decimal->num-traits                          0.2.17   0.2.18   0.2.18   Normal       ---

rustix->libc                                      0.2.152  0.2.153  0.2.153  Development  ---

security-framework->libc                          0.2.152  0.2.153  0.2.153  Normal       ---

security-framework-sys->libc                      0.2.152  0.2.153  0.2.153  Normal       ---

serde-wasm-bindgen->js-sys                        0.3.67   0.3.68   0.3.68   Normal       ---

serde-wasm-bindgen->wasm-bindgen                  0.2.90   0.2.91   0.2.91   Normal       ---

server_fn->js-sys                                 0.3.67   0.3.68   0.3.68   Normal       ---

server_fn->server_fn_macro_default                0.6.3    0.6.5    0.6.5    Normal       ---

server_fn->wasm-bindgen                           0.2.90   0.2.91   0.2.91   Normal       ---

server_fn->wasm-bindgen-futures                   0.4.40   0.4.41   0.4.41   Normal       ---

server_fn->web-sys                                0.3.67   0.3.68   0.3.68   Normal       ---

server_fn_macro_default->server_fn_macro          0.6.3    0.6.5    0.6.5    Normal       ---

signal-hook-registry->libc                        0.2.152  0.2.153  0.2.153  Normal       ---

socket2->libc                                     0.2.152  0.2.153  0.2.153  Normal       cfg(unix)

tempfile->redox_syscall                           0.4.1    Removed  Removed  Normal       cfg(target_os = "redox")

tempfile->rustix                                  0.38.30  0.38.31  0.38.31  Normal       cfg(any(unix, target_os = "wasi"))

tokio->libc                                       0.2.152  0.2.153  0.2.153  Normal       cfg(unix)

tokio-native-tls->tokio                           1.35.1   1.36.0   1.36.0   Normal       ---

tokio-util->tokio                                 1.35.1   1.36.0   1.36.0   Normal       ---

toml_edit->indexmap                               2.2.1    2.2.2    2.2.2    Normal       ---

toml_edit->winnow                                 0.5.35   0.5.39   0.5.39   Normal       ---

wasm-bindgen                                      0.2.90   0.2.91   0.2.91   Normal       ---

wasm-bindgen->wasm-bindgen-macro                  0.2.90   0.2.91   0.2.91   Normal       ---

wasm-bindgen-backend->wasm-bindgen-shared         0.2.90   0.2.91   0.2.91   Normal       ---

wasm-bindgen-futures                              0.4.40   0.4.41   0.4.41   Normal       ---

wasm-bindgen-futures->js-sys                      0.3.67   0.3.68   0.3.68   Normal       ---

wasm-bindgen-futures->wasm-bindgen                0.2.90   0.2.91   0.2.91   Normal       ---

wasm-bindgen-futures->web-sys                     0.3.67   0.3.68   0.3.68   Normal       cfg(target_feature = "atomics")

wasm-bindgen-macro->wasm-bindgen-macro-support    0.2.90   0.2.91   0.2.91   Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-backend  0.2.90   0.2.91   0.2.91   Normal       ---

wasm-bindgen-macro-support->wasm-bindgen-shared   0.2.90   0.2.91   0.2.91   Normal       ---

wasm-streams->js-sys                              0.3.67   0.3.68   0.3.68   Normal       ---

wasm-streams->wasm-bindgen                        0.2.90   0.2.91   0.2.91   Normal       ---

wasm-streams->wasm-bindgen-futures                0.4.40   0.4.41   0.4.41   Normal       ---

wasm-streams->web-sys                             0.3.67   0.3.68   0.3.68   Normal       ---

web-sys                                           0.3.67   0.3.68   0.3.68   Normal       ---

web-sys->js-sys                                   0.3.67   0.3.68   0.3.68   Normal       ---

web-sys->wasm-bindgen                             0.2.90   0.2.91   0.2.91   Normal       ---


CheckToml / toml: C:\home\git\polyglot\apps\plot\Cargo.toml

Name                                              Project  Compat  Latest  Kind    Platform

----                                              -------  ------  ------  ----    --------

js-sys->wasm-bindgen                              0.2.90   0.2.91  0.2.91  Normal  ---

plotters->num-traits                              0.2.17   0.2.18  0.2.18  Normal  ---

plotters->wasm-bindgen                            0.2.90   0.2.91  0.2.91  Normal  cfg(all(target_arch = "wasm32", not(target_os = "wasi")))

plotters->web-sys                                 0.3.67   0.3.68  0.3.68  Normal  cfg(all(target_arch = "wasm32", not(target_os = "wasi")))

wasm-bindgen->wasm-bindgen-macro                  0.2.90   0.2.91  0.2.91  Normal  ---

wasm-bindgen-backend->wasm-bindgen-shared         0.2.90   0.2.91  0.2.91  Normal  ---

wasm-bindgen-macro->wasm-bindgen-macro-support    0.2.90   0.2.91  0.2.91  Normal  ---

wasm-bindgen-macro-support->wasm-bindgen-backend  0.2.90   0.2.91  0.2.91  Normal  ---

wasm-bindgen-macro-support->wasm-bindgen-shared   0.2.90   0.2.91  0.2.91  Normal  ---

web-sys->js-sys                                   0.3.67   0.3.68  0.3.68  Normal  ---

web-sys->wasm-bindgen                             0.2.90   0.2.91  0.2.91  Normal  ---


C:\home\git\polyglot



> polyglot@ outdated-pre C:\home\git\polyglot

> npm-check-updates --target greatest



Using pnpm

Checking C:\home\git\polyglot\package.json





 @types/node  ~20.10  →  ~20.11



Run ncu --target greatest -u to upgrade package.json


C:\home\git\polyglot\apps\dice\ui



> dice_ui@ outdated-pre C:\home\git\polyglot\apps\dice\ui

> npm-check-updates --target greatest



Using pnpm

Checking C:\home\git\polyglot\apps\dice\ui\package.json





All dependencies match the greatest package versions :)


C:\home\git\polyglot\apps\dice\ui\e2e



> e2e@ outdated-pre C:\home\git\polyglot\apps\dice\ui\e2e

> npm-check-updates --target greatest



Using pnpm

Checking C:\home\git\polyglot\apps\dice\ui\e2e\package.json





 @playwright/test  1.40.0  →  1.42.0-alpha-jan-18-2024



Run ncu --target greatest -u to upgrade package.json


C:\home\git\polyglot\apps\ipfs



> ipfs@ outdated-pre C:\home\git\polyglot\apps\ipfs

> npm-check-updates --target greatest



Using pnpm

Checking C:\home\git\polyglot\apps\ipfs\package.json





All dependencies match the greatest package versions :)


C:\home\git\polyglot\apps\spiral\temp\extension



> polyglot@ outdated-pre C:\home\git\polyglot\apps\spiral\temp\extension

> npm-check-updates --target greatest



Using pnpm

Checking C:\home\git\polyglot\apps\spiral\temp\extension\package.json





 @playwright/test    1.40.0  →  1.42.0-alpha-jan-18-2024

 @types/chrome     ~0.0.259  →                  ~0.0.260



Run ncu --target greatest -u to upgrade package.json